မဝ်ဂျူ:languages/data/3/a

နူ ဝိက်ရှေန်နရဳ

This module contains definitions and metadata for three-letter language codes starting with "a". See Wiktionary:Languages for more information.

This module must not be used directly in other modules or templates. The data should be accessed through Module:languages. For the corresponding extra data, see မဝ်ဂျူ:languages/data/3/a/extra.

Errors[ပလေဝ်ဒါန်]

The following errors were detected by Module:data consistency check: Lua ဗၠေတ်: not enough memory.

Required values[ပလေဝ်ဒါန်]

Every entry in the table must contain the following indexed fields:

1
The "canonical" name of the language. This is the name that is used in Wiktionary entries and category names.
2
The Wikidata item id (Q number) for the language. Can be specified as a number (a positive integer) or a string that starts with Q and ends with decimal digits. Set to nil if not known/present. This replaces the older wikipedia_article property, which can still be used to link to specific sections or language editions.

Optional values[ပလေဝ်ဒါန်]

3
The code for the family that the language belongs to. See Wiktionary:Families.
4
A list of script codes. See Wiktionary:Scripts. These represent all the scripts (writing systems) that this language uses in the real world, as well as the ones that Wiktionary uses. The scripts that are used most often on Wiktionary should be first in the list, as this will speed up script detection.
Many templates and modules detect the script of text in a particular language using the findBestScript function in Module:scripts. This function goes down the list of scripts and counts how many characters in the text belong to each script. If all the characters belong to one script, that script will be returned; otherwise, the script with the most characters will be returned. Thus, script detection will be faster if the most frequently used scripts are first in the list. If none of the characters match any of the listed scripts, then the None script is returned (even if the characters would match a script not listed). Translingual (mul) and Undetermined (und) have the special value "All", which means they are treated as having every script. This value should not be set for any other language codes.
Due to the ongoing problems with Lua memory limits, this should be given as a comma-separated list in a string (and not a table). This is then converted into a table when returned. For example: "Latn, Brai, Shaw, Dsrt".
type
The type of language (which affects how it is handled on Wiktionary). Possible values are:
  • regular - This value is the default, so it doesn't need to be specified. It indicates that the is attested according to WT:CFI and therefore permitted in the main namespace. There may also be reconstructed terms for the language, which are placed in the Reconstruction namespace and must be prefixed with * to indicate a reconstruction.
  • reconstructed - This language is not attested according to CFI, and therefore is allowed only in the Reconstruction namespace. All terms in this language are reconstructed, and must be prefixed with *.
  • appendix-constructed - This language is attested but does not meet the additional requirements set out for constructed languages (WT:CFI#Constructed languages). Its entries must therefore be in the Appendix namespace, but they are not reconstructed and therefore should not have * prefixed in links.
ancestors
A list of the language codes of the direct ancestors of this language. For example, the ancestor of English is listed as enm (Middle English); ang (Old English, the ancestor of Middle English), gem-pro (Proto-Germanic, the ancestor of Old English), and ine-pro (Proto-Indo-European, the ancestor of Proto-Germanic) are not listed.
For most languages, only one ancestor code should be given, but multiple ancestors can be listed for pidgins, creoles and mixed languages.
The ancestor language list should not be included if the language's direct ancestor is the proto-language of the family to which the language belongs. In such a case, if the family code has been provided, Module:languages will automatically add the proto-language as the language's ancestor. For example, Proto-Germanic (gem-pro) belongs to the Indo-European (ine) family, and its direct ancestor is Proto-Indo-European (ine-pro). Because Proto-Indo-European is the proto-language of the Indo-European languages, Proto-Germanic does not need an ancestors table; Proto-Indo-European will be automatically returned as its ancestor by the getAncestors function.
Due to the ongoing problems with Lua memory limits, this should be given as a comma-separated list in a string (and not a table). This is then converted into a table when returned. For example: "cr, fr".
wikimedia_codes
A list of the Wikimedia language codes that this language maps to. This is used to translate Wiktionary codes to Wikimedia codes, which are usually the same but there are a few languages where it is different. The language codes must be valid Wikimedia codes (as determined by the wiki software), and if they are not defined in one of the language data modules, they must be defined in Module:wikimedia languages/data.
Due to the ongoing problems with Lua memory limits, this should be given as a comma-separated list in a string (and not a table). This is then converted into a table when returned. For example: "en, simple".
wikipedia_article
The name of the Wikipedia article for the language. Should normally only be supplied if the Wikidata id cannot be used.
translit
See the Substitutions section for instructions on syntax.
Defines how a language should be transliterated, which will be automatically applied to any terms in scripts that do not have their isTransliterated value set to false in Module:scripts/data. This is used by transliterate in Module:languages.
link_tr
Set this to true to link the language's transliteration. For instance, Gothic has entries in Gothic script and entries for transliterations: 𐌷𐌻𐌰𐌹𐌱𐍃 (hlaibs).
display_text
See the Substitutions section for instructions on syntax.
Defines replacements to create the display form of the text, which is the form actually displayed on the page. This is occasionally necessary if there is a recurring issue of editors adding the wrong character, which is sometimes an issue when two or more characters are easy to confuse. For example, the palochka ӏ, used in Cyrillic in many Caucasian languages, is frequently entered as I, or even Latin l or I. As this is an ongoing issue (even among native speakers), the easiest way to solve the problem is to automatically correct the display form for those languages. This is used by makeDisplayText in Module:languages.
entry_name
See the Substitutions section for instructions on syntax.
Defines replacements to create the entry name from the displayed form of a term. This can be used to remove certain diacritical marks according to the customs or standard practice of the language. For example, it is used to remove accent marks from Russian words (ру́сскийрусский), or macrons from Latin or Old English words (ōsos), as these are not used in the normal written form of these languages. This is used by makeEntryName in Module:languages.
sort_key
See the Substitutions section for instructions on syntax.
Defines replacements to create a category sort key from the page name. The purpose is to:
  1. Remove any characters that should be ignored in sorting.
  2. Replace characters with other characters, if the sorting rules for that language do not distinguish them. For example, in German, the characters "ä" and "a" are considered equivalent for sorting, and are both treated as "a".
  3. Replace characters that should be sorted in different places with special characters that mimic that behaviour, (which is necessary due to MediaWiki software using the Unicode codepoint to determine sort order, which is often arbitrary). For instance, in Mongolian, the letter "ү" should be sorted after "у", but due to its codepoint it is sorted after the final letter "я" by default. As such, we can replace "ү" with "у" plus a character with a very high codepoint, which ensures that it is always sorted straight after. The data modules contain an in-built way to do this for the sake of convenience: with the above example, this would be done by using "у" .. p[1]. Another character could be inserted straight after by using "у" .. p[2] (and so on).
Note: the term is converted to lowercase before applying any substitutions, so you should not try to process capital letters (as it will not work). This is used by makeSortKey in Module:languages.
dotted_dotless_i
Set this to true for languages that distinguish between the dotted and dotless I (such as some Turkic languages).

Substitutions[ပလေဝ်ဒါန်]

translit, display_text, entry_name and sort_key all use the same syntax, which is designed to be as flexible as possible:
  • If they are a string, then this is treated as the name of a dedicated module which will be used to generate the output. For example, "sa-translit" refers to Module:sa-translit.
  • If they are a table, then it can contain two kinds of keys:
    1. The keys from, to, remove_diacritics and remove_exceptions relate to text substitution (see below).
    2. Script code keys are used to specify script-specific behaviour. These, in turn, can be strings (for dedicated modules) or tables (for text substitution). In addition, a value with the key 1 can be used as a fallback, which will be used if no specific behaviour is defined for that script.
Note: if script keys and text substitution keys are given in the same table, then the text substitution will be applied after the script-specific behaviour has completed. Ensure any fallback text substitutions are given as a subtable with key 1 if you want to avoid this. It is not possible to process the output of a script-specific module with another module, however: this should be done (for example) with a tail call in the first module.
Dedicated modules must take the arguments text, lang, sc, where text is the input text (usually the page name or input by the user), lang is the language code (not the language object), and sc is the script code (not the script object). For performance reasons, they should only be used when it is not possible to achieve the desired result via text substitution.
Text substitution replaces or removes certain characters (or sets of characters) for particular contexts. There are three ways to do this:
  1. Using the from and to keys.
  2. remove_diacritics (and optionally remove_exceptions).
  3. Both of the above (in that order).
from is paired with to, and both of them must be tables that are organised pairwise: each element in from is a pattern to identify which characters in the term to replace, while the corresponding element in to defines what to replace them with (as arguments to mw.ustring.gsub).
If the replacement is not present (or if it is false or nil), then any matching characters are removed altogether. This means that the from list can be longer than the to list, and an empty replacement will be assumed for any elements in from that have no counterpart in to.
The tables can contain literal characters, or the patterns (a simplified form regular expressions) that are used by the standard Scribunto mw.ustring.gsub function. See the Scribunto reference manual for more information. Note that patterns make double substitutions a viable way to achieve more complex results. See the Latin sortkey for Mandarin (cmn) as an example of this.
remove_diacritics is a string which contains characters that will be removed after the text is decomposed. For instance, if remove_diacritics is a combining acute accent, all acute accents will be stripped, even if they are part of precomposed characters (such as á or ά). Despite the name, the characters to be stripped need not be diacritics: for instance, including an apostrophe would remove all apostrophes (though be careful with hyphens, which must be be escaped as %-).
Furthermore, if remove_diacritics is given, then it is possible to specify a remove_exceptions table, which prevents specific characters from having their diacritics stripped. For instance, if remove_diacritics is a combining diaeresis, but remove_exceptions contains "ё", then any instances of ё will remain unchanged. On the other hand, an instance of ӱ would still become у (unless "ӱ" is also added to remove_exceptions).

Formerly supported values[ပလေဝ်ဒါန်]

aliases, varieties, otherNames
This data is now located in the extra data modules; see Module:languages and Template:language extradata documentation.
family
Now 3.
scripts
Now 4.

local u = mw.ustring.char

-- Private use characters for sortkey placement.
local a, b, c, d, e, f, g, h, i, j, k, l, n, o, p = u(0xF000), u(0xF001), u(0xF002), u(0xF003), u(0xF004), u(0xF005), u(0xF006), u(0xF007), u(0xF008), u(0xF009), u(0xF00A), u(0xF00B), u(0xF00C), u(0xF00D), u(0xF00E) -- No "m" due to variable name conflict.

-- UTF-8 encoded strings for some	commonly-used diacritics
local ACUTE     = u(0x0301)
local MACRON    = u(0x0304)
local DOTABOVE  = u(0x0307)
local DIAER     = u(0x0308)
local MACRONBELOW = u(0x0331)
local VS01      = u(0xFE00)

-- Punctuation to be used for standardChars field
local PUNCTUATION = ' !#%&*+,-./:;<=>?@^_`|~\'()'

-- Use these in "scripts" to save a little memory.
local Arab = {"Arab"}
local ArabLatn = {"Arab", "Latn"}
local Cyrl = {"Cyrl"}
local Deva = {"Deva"}
local Ethi = {"Ethi"}
local Latn = {"Latn"}
local LatnArab = {"Latn", "Arab"}
local LatnBeng = {"Latn", "Beng"}
local Mlym = {"Mlym"}

local m = {}

m["aaa"] = {
	canonicalName = "Ghotuo",
	scripts = {"Latn"},
	family = "alv-edo",
}

m["aab"] = {
	canonicalName = "Alumu-Tesu",
	otherNames = {"Alumu", "Tesu"},
	scripts = {"Latn"},
	family = "nic-bco",
}

m["aac"] = {
	canonicalName = "Ari",
	scripts = {"Latn"},
	family = "ngf",
}

m["aad"] = {
	canonicalName = "Amal",
	scripts = {"Latn"},
	family = "paa-iwm",
}

m["aae"] = {
	canonicalName = "Arbëreshë Albanian",
	scripts = {"Latn"},
	family = "sqj",
}

m["aaf"] = {
	canonicalName = "Aranadan",
	otherNames = {"Eranadan"},
	scripts = {"Mlym"},
	family = "dra",
}

m["aag"] = {
	canonicalName = "Ambrak",
	scripts = {"Latn"},
	family = "qfa-tor",
}

m["aah"] = {
	canonicalName = "Abu' Arapesh",
	otherNames = {"Abu'", "Ua"},
	scripts = {"Latn"},
	family = "qfa-tor",
}

m["aai"] = {
	canonicalName = "Arifama-Miniafia",
	otherNames = {"Arifama", "Miniafia"},
	scripts = {"Latn"},
	family = "poz-ocw",
}

m["aak"] = {
	canonicalName = "Ankave",
	otherNames = {"Angave"},
	scripts = {"Latn"},
	family = "ngf",
}

m["aal"] = {
	canonicalName = "Afade",
	scripts = {"Latn"},
	family = "cdc-cbm",
}

m["aan"] = {
	canonicalName = "Anambé",
	otherNames = {"Anambe"},
	scripts = {"Latn"},
	family = "tup-gua",
}

m["aao"] = {
	canonicalName = "Algerian Saharan Arabic",
	scripts = {"Arab"},
	family = "sem-arb",
	entry_name = {
		from = {u(0x0671), u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652), u(0x0670), u(0x0640)},
		to   = {u(0x0627)}},
}

m["aap"] = {
	canonicalName = "ဘာရာ အဝ်ရာအ်ရာ",
	otherNames = {"Arára"},
	scripts = {"Latn"},
	family = "sai-car",
}

m["aaq"] = {
	canonicalName = "Penobscot",
	otherNames = {"Eastern Abenaki", "Eastern Abnaki"},
	scripts = {"Latn"},
	family = "alg",
}

m["aas"] = {
	canonicalName = "Aasax",
	otherNames = {"Aasáx", "Asa", "Aramanik", "Laramanik"},
	scripts = {"Latn"},
	family = "sdv",
}

m["aat"] = {
	canonicalName = "Arvanitika Albanian",
	scripts = {"Latn", "Grek"},
	family = "sqj",
}

m["aau"] = {
	canonicalName = "Abau",
	scripts = {"Latn"},
	family = "paa",
}

m["aaw"] = {
	canonicalName = "Solong",
	scripts = {"Latn"},
	family = "poz-ocw",
}

m["aax"] = {
	canonicalName = "Mandobo Atas",
	scripts = {"Latn"},
	family = "ngf",
}

m["aaz"] = {
	canonicalName = "Amarasi",
	scripts = {"Latn"},
	family = "plf",
}

m["aba"] = {
	canonicalName = "Abé",
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["abb"] = {
	canonicalName = "Bankon",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["abc"] = {
	canonicalName = "Ambala Ayta",
	scripts = {"Latn"},
	family = "phi",
}

m["abd"] = {
	canonicalName = "Camarines Norte Agta",
	otherNames = {"Manide"},
	scripts = {"Latn"},
	family = "phi",
}

m["abe"] = {
	canonicalName = "Abenaki",
	otherNames = {"Western Abenaki", "Abnaki", "Western Abnaki"},
	scripts = {"Latn"},
	family = "alg",
}

m["abf"] = {
	canonicalName = "Abai Sungai",
	scripts = {"Latn"},
	family = "poz",
}

m["abg"] = {
	canonicalName = "Abaga",
	scripts = {"Latn"},
	family = "ngf",
}

m["abh"] = {
	"အာရဗဳ တဇေတ်ကဳ",
	56833,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["abi"] = {
	canonicalName = "Abidji",
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["abj"] = {
	canonicalName = "အကာ-ဗဳအ်",
	otherNames = {"Bea", "Aka-Bea-da", "Akabeada", "Aka-Bia", "Bia", "Aka-Bia-da", "Akabiada", "Bojingiji"},
	scripts = {"Latn"},
	family = "qfa-adm",
}

m["abl"] = {
	canonicalName = "Abung",
	otherNames = {"Pepadun", "Lampung Nyo"},
	scripts = {"Latn"},
	family = "poz",
}

m["abm"] = {
	canonicalName = "Abanyom",
	scripts = {"Latn"},
	family = "nic-bod",
}

m["abn"] = {
	canonicalName = "Abua",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["abo"] = {
	canonicalName = "Abon",
	otherNames = {"Abɔ̃"},
	scripts = {"Latn"},
	family = "nic-bod",
}

m["abp"] = {
	canonicalName = "Abenlen Ayta",
	scripts = {"Latn"},
	family = "phi",
}

m["abq"] = {
	canonicalName = "အဗါတ်သာ",
	scripts = {"Cyrl"},
	family = "cau-abz",
	translit_module = "abq-translit",
	override_translit = true,
}

m["abr"] = {
	canonicalName = "Abron",
	otherNames = {"Brong"},
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["abs"] = {
	canonicalName = "မလေဝ် အာန်ဗဝ်နေတ်",
	scripts = {"Latn"},
	family = "crp",
}

m["abt"] = {
	canonicalName = "Ambulas",
	scripts = {"Latn"},
	family = "paa",
}

m["abu"] = {
	canonicalName = "Abure",
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["abv"] = {
	"အာရဗဳ ဗာဟာနာ",
	56576,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["abw"] = {
	canonicalName = "Pal",
	scripts = {"Latn"},
	family = "ngf",
}

m["abx"] = {
	canonicalName = "Inabaknon",
	scripts = {"Latn"},
	family = "poz-sbj",
}

m["aby"] = {
	canonicalName = "Aneme Wake",
	scripts = {"Latn"},
	family = "ngf",
}

m["abz"] = {
	canonicalName = "Abui",
	scripts = {"Latn"},
	family = "ngf",
}

m["aca"] = {
	canonicalName = "Achagua",
	otherNames = {"Achawa", "Ajagua"},
	scripts = {"Latn"},
	family = "awd",
}

m["acb"] = {
	canonicalName = "Áncá",
	scripts = {"Latn"},
	family = "nic-bod",
}

m["acd"] = {
	canonicalName = "Gikyode",
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["ace"] = {
	canonicalName = "အာသံနဳစ်",
	otherNames = {"Achinese", "Atjehnese"},
	scripts = {"Latn", "Arab"},
	family = "cmc",
}

m["ach"] = {
	canonicalName = "Acholi",
	otherNames = {"Acoli", "Shuli", "Acooli"},
	scripts = {"Latn"},
	family = "sdv",
}

m["aci"] = {
	canonicalName = "အကာ-ကာရဳ",
	otherNames = {"Cari", "Aka-Kari", "Kari", "Chariar"},
	scripts = {"Latn"},
	family = "qfa-adm",
}

m["ack"] = {
	canonicalName = "အကာ-ကိုဝ်ရာ",
	otherNames = {"Kora"},
	scripts = {"Latn"},
	family = "qfa-adm",
}

m["acl"] = {
	canonicalName = "အာပ်-ဗေလ်",
	otherNames = {"Bale", "Bele", "Akar-Bele", "Balawa", "Balwa", "Bojingiji"},
	scripts = {"Latn"},
	family = "qfa-adm",
}

m["acm"] = {
	"အာရဗဳ  အဳရတ်",
	56232,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["acn"] = {
	canonicalName = "Achang",
	otherNames = {"Xiandao", "Ngochang", "Ngachang"},
	scripts = {"Latn"},
	family = "tbq-brm",
}

m["acp"] = {
	canonicalName = "Eastern Acipa",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["acq"] = {
	canonicalName = "Ta'izzi-Adeni Arabic",
	otherNames = {"Southern Yemeni Arabic"},
	scripts = {"Arab"},
	family = "sem-arb",
	entry_name = {
		from = {u(0x0671), u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652), u(0x0670), u(0x0640)},
		to   = {u(0x0627)}},
}

m["acr"] = {
	canonicalName = "Achi",
	otherNames = {"Achí", "Achi Maya", "Cubulco Achi", "Cubulco Achí", "Cubulco Achi'"},
	scripts = {"Latn"},
	family = "myn",
}

m["acs"] = {
	canonicalName = "Acroá",
	otherNames = {"Akroá", "Coroá", "Acroa"},
	scripts = {"Latn"},
	family = "sai-jee",
}

m["acu"] = {
	canonicalName = "Achuar",
	otherNames = {"Achuar-Shiwiar"},
	scripts = {"Latn"},
	family = "sai-jiv",
}

m["acv"] = {
	canonicalName = "Achumawi",
	scripts = {"Latn"},
	family = "nai-pal",
}

m["acw"] = {
	"အာရဗဳဟဳဂျာဇြဳ",
	56608,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["acx"] = {
	"အာရဗဳ  အဝ်မာန်နဳ",
	56630,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["acy"] = {
	"အာရဗဳ  သာဲပရေက်",
	56416,
	"sem-arb",
	{"Latn", "Arab"},
	entry_name = "ar-entryname",
	ancestors = {"acm"},
}

m["acz"] = {
	canonicalName = "Acheron",
	otherNames = {"Asheron"},
	scripts = {"Latn"},
	family = "nic",
}

m["ada"] = {
	canonicalName = "Adangme",
	otherNames = {"Dangme"},
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["adb"] = {
	canonicalName = "Adabe",
	scripts = {"Latn"},
	family = "ngf",
}

m["add"] = {
	canonicalName = "Dzodinka",
	scripts = {"Latn"},
	family = "nic-bod",
}

m["ade"] = {
	canonicalName = "Adele",
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["adf"] = {
	"အာရဗဳ  ဒဝ်ဖာရဳ",
	56565,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["adg"] = {
	canonicalName = "Andegerebinha",
	scripts = {"Latn"},
	family = "aus-pam",
}

m["adh"] = {
	canonicalName = "Adhola",
	scripts = {"Latn"},
	family = "sdv",
}

m["adi"] = {
	canonicalName = "Adi",
	scripts = {"Latn"},
	family = "tbq",
}

m["adj"] = {
	canonicalName = "Adioukrou",
	otherNames = {"Adjukru", "Adyoukrou", "Adyukru", "Ajukru"},
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["adl"] = {
	canonicalName = "Galo",
	otherNames = {"Gallong"},
	scripts = {"Latn"},
	family = "tbq",
}

m["adn"] = {
	canonicalName = "Adang",
	scripts = {"Latn"},
	family = "ngf",
}

m["ado"] = {
	canonicalName = "Abu",
	scripts = {"Latn"},
	family = "paa",
}

m["adp"] = {
	canonicalName = "Adap",
	scripts = {"Tibt"},
	family = "tbq",
	ancestors = {"dz"},
}

m["adq"] = {
	canonicalName = "Adangbe",
	otherNames = {"Agotime"},
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["adr"] = {
	canonicalName = "Adonara",
	scripts = {"Latn"},
	family = "plf",
}

m["ads"] = {
	canonicalName = "Adamorobe Sign Language",
	family = "sgn",
}

m["adt"] = {
	canonicalName = "Adnyamathanha",
	scripts = {"Latn"},
	family = "aus-psw",
}

m["adu"] = {
	canonicalName = "Aduge",
	scripts = {"Latn"},
	family = "alv-edo",
}

m["adw"] = {
	canonicalName = "Amondawa",
	otherNames = {"Amundava"},
	scripts = {"Latn"},
	family = "tup-gua",
}

m["ady"] = {
	"အာအ်ဒေါတ်ကာယ်",
	"Q27776",
	"cau-cir",
	otherNames = {"Adyghe", "West Circassian"},
	scripts = Cyrl,
	translit_module = "cau-cir-translit",
	override_translit = true,	
}


m["adz"] = {
	canonicalName = "Adzera",
	scripts = {"Latn"},
	family = "poz-ocw",
}

m["aea"] = {
	canonicalName = "Areba",
	scripts = {"Latn"},
	family = "aus-pam",
}

m["aeb"] = {
	"အာရဗဳ တူနဳယှေန်",
	56240,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["aec"] = {
	canonicalName = "အာရဗဳ သာဲဒဳ",
	otherNames = {"Sa'idi Arabic", "Upper Egyptian Arabic", "Upper Egypt Arabic"},
	scripts = {"Arab"},
	family = "sem-arb",
	entry_name = {
		from = {u(0x0671), u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652), u(0x0670), u(0x0640)},
		to   = {u(0x0627)}},
}
m["aed"] = {
	canonicalName = "Argentine Sign Language",
	family = "sgn",
}

m["aee"] = {
	canonicalName = "Northeast Pashayi",
	family = "inc-dar",
}

m["aek"] = {
	canonicalName = "Haeke",
	scripts = {"Latn"},
	family = "poz-cln",
}

m["ael"] = {
	canonicalName = "Ambele",
	scripts = {"Latn"},
	family = "nic-bod",
}

m["aem"] = {
	canonicalName = "အါန်",
	scripts = {"Latn"},
	family = "mkh-vie",
}

m["aen"] = {
	canonicalName = "Armenian Sign Language",
	family = "sgn",
}

m["aeq"] = {
	canonicalName = "Aer",
	family = "inc",
	ancestors = {"psu"},
}

m["aer"] = {
	canonicalName = "Eastern Arrernte",
	scripts = {"Latn"},
	family = "aus-pam",
}

m["aes"] = {
	canonicalName = "Alsea",
	otherNames = {"Yaquina", "Yakwina", "Alseya", "Yakona"}, -- names of the two dialects that make up the language
	scripts = {"Latn"},
}

m["aeu"] = {
	canonicalName = "Akeu",
	otherNames = {"Chepya"},
	family = "tbq-lol",
}

m["aew"] = {
	canonicalName = "Ambakich",
	otherNames = {"Aion", "Porapora"},
	scripts = {"Latn"},
	family = "paa",
}

m["aey"] = {
	canonicalName = "Amele",
	scripts = {"Latn"},
	family = "ngf",
}

m["aez"] = {
	canonicalName = "Aeka",
	scripts = {"Latn"},
	family = "ngf",
}

m["afb"] = {
	"အာရဗဳအထံက်ဂင်",
	56385,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["afd"] = {
	canonicalName = "Andai",
	scripts = {"Latn"},
	family = "paa",
}

m["afe"] = {
	canonicalName = "Putukwam",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["afg"] = {
	canonicalName = "Afghan Sign Language",
	family = "sgn",
}

m["afh"] = {
	canonicalName = "Afrihili",
	type = "appendix-constructed",
	family = "art",
}

m["afi"] = {
	canonicalName = "Akrukay",
	scripts = {"Latn"},
	family = "paa",
}

m["afk"] = {
	canonicalName = "Nanubae",
	scripts = {"Latn"},
	family = "paa",
}

m["afn"] = {
	canonicalName = "Defaka",
	scripts = {"Latn"},
	family = "nic",
}

m["afo"] = {
	canonicalName = "Eloyi",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["afp"] = {
	canonicalName = "Tapei",
	scripts = {"Latn"},
	family = "paa",
}

m["afs"] = {
	canonicalName = "Afro-Seminole Creole",
	scripts = {"Latn"},
	family = "crp",
}

m["aft"] = {
	canonicalName = "Afitti",
	otherNames = {"Affiti", "Ditti"},
	scripts = {"Latn"},
	family = "sdv",
}

m["afu"] = {
	canonicalName = "Awutu",
	otherNames = {"Efutu"},
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["afz"] = {
	canonicalName = "Obokuitai",
	scripts = {"Latn"},
	family = "paa",
}

m["aga"] = {
	canonicalName = "Aguano",
	scripts = {"Latn"},
}

m["agb"] = {
	canonicalName = "Legbo",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["agc"] = {
	canonicalName = "Agatu",
	scripts = {"Latn"},
	family = "alv",
}

m["agd"] = {
	canonicalName = "Agarabi",
	scripts = {"Latn"},
	family = "paa-kag",
}

m["age"] = {
	canonicalName = "Angal",
	scripts = {"Latn"},
	family = "ngf",
}

m["agf"] = {
	canonicalName = "Arguni",
	scripts = {"Latn"},
	family = "plf",
}

m["agg"] = {
	canonicalName = "Angor",
	scripts = {"Latn"},
	family = "ngf",
}

m["agh"] = {
	canonicalName = "Ngelima",
	scripts = {"Latn"},
	family = "bnt",
}

m["agi"] = { -- spurious?
	canonicalName = "Agariya",
	family = "mun",
}

m["agj"] = {
	canonicalName = "Argobba",
	scripts = {"Ethi"},
	family = "sem-eth",
}

m["agk"] = {
	canonicalName = "Isarog Agta",
	scripts = {"Latn"},
	family = "phi",
}

m["agl"] = {
	canonicalName = "Fembe",
	otherNames = {"Agala"},
	scripts = {"Latn"},
	family = "ngf",
}

m["agm"] = {
	canonicalName = "Angaataha",
	scripts = {"Latn"},
	family = "ngf",
}

m["agn"] = {
	canonicalName = "Agutaynen",
	scripts = {"Latn"},
	family = "phi",
}

m["ago"] = {
	canonicalName = "Tainae",
	scripts = {"Latn"},
	family = "ngf",
}

m["agq"] = {
	canonicalName = "Aghem",
	scripts = {"Latn"},
	family = "alv",
}

m["agr"] = {
	canonicalName = "Aguaruna",
	scripts = {"Latn"},
	family = "sai-jiv",
}

m["ags"] = {
	canonicalName = "Esimbi",
	otherNames = {"Isimbi"},
	scripts = {"Latn"},
	family = "nic-bod",
}

m["agt"] = {
	"ကာဂါယာန် အာက်ထာ ဗဟဵု",
	5017296,
	"phi",
	Latn,
}

m["agu"] = {
	canonicalName = "Aguacateca",
	otherNames = {"Aguacatec", "Aguacateco", "Awakatek", "Awakateko", "Awakateka"},
	scripts = {"Latn"},
	family = "myn",
}

m["agv"] = {
	canonicalName = "ရောမါန်ဒါဒဝ် အာက်ဂါ",
	otherNames = {"Remontado Dumagat", "Sinauna", "Hatang Kayey"},
	scripts = {"Latn"},
	family = "phi",
}

m["agw"] = {
	canonicalName = "Kahua",
	scripts = {"Latn"},
	family = "poz-sls",
}

m["agx"] = {
	canonicalName = "Aghul",
	otherNames = {"Agul"},
	scripts = {"Cyrl"},
	family = "cau-lzg",
}

m["agy"] = {
	canonicalName = "Southern Alta",
	scripts = {"Latn"},
	family = "phi",
}

m["agz"] = {
	canonicalName = "Mt. Iriga Agta",
	scripts = {"Latn"},
	family = "phi",
}

m["aha"] = {
	canonicalName = "Ahanta",
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["ahb"] = {
	canonicalName = "Axamb",
	scripts = {"Latn"},
	family = "poz-vnc",
}

m["ahg"] = {
	canonicalName = "Qimant",
	scripts = {"Latn"},
	family = "cus",
}

m["ahh"] = {
	canonicalName = "Aghu",
	scripts = {"Latn"},
	family = "ngf",
}

m["ahi"] = {
	canonicalName = "Tiagbamrin Aizi",
	scripts = {"Latn"},
	family = "kro",
}

m["ahk"] = {
	canonicalName = "Akha",
	family = "tbq-lol",
}

m["ahl"] = {
	canonicalName = "Igo",
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["ahm"] = {
	canonicalName = "Mobumrin Aizi",
	scripts = {"Latn"},
	family = "kro",
}

m["ahn"] = {
	canonicalName = "အ'ဟာန်",
	otherNames = {"Ahan", "Ahaan"},
	scripts = {"Latn"},
	family = "nic-bco",
}

m["aho"] = {
	"အဟုမ်",
	34778,
	scripts = {"Ahom"},
	family = "tai-swe",
	translit_module = "Ahom-translit",
	ancestors = {"tai-pro"},
}


m["ahp"] = {
	canonicalName = "Aproumu Aizi",
	scripts = {"Latn"},
	family = "kro",
}

m["ahr"] = {
	canonicalName = "အဟိရာန်နဳ",
	scripts = {"Deva"},
	family = "inc-wes",
	ancestors = {"inc-pra"},
	translit_module = "mr-translit",
}


m["ahs"] = {
	canonicalName = "Ashe",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["aht"] = {
	canonicalName = "Ahtna",
	scripts = {"Latn"},
	family = "ath-nor",
}

m["aia"] = {
	canonicalName = "Arosi",
	scripts = {"Latn"},
	family = "poz-sls",
}

m["aib"] = {
	canonicalName = "Aynu",
	otherNames = {"Ainu", "Ainu (China)"},
	family = "trk",
}

m["aic"] = {
	canonicalName = "Ainbai",
	scripts = {"Latn"},
	family = "paa",
}

m["aid"] = {
	"အာန်ကဝ်ရေဝ်ထေန်",
	3279409,
	"aus-pmn",
	Latn,
}

m["aie"] = {
	canonicalName = "Amara",
	scripts = {"Latn"},
	family = "poz-ocw",
}

m["aif"] = {
	canonicalName = "Agi",
	scripts = {"Latn"},
	family = "qfa-tor",
}

m["aig"] = {
	"Antigua and Barbuda Creole English",
	3244184,
	"crp",
	Latn,
	ancestors = {"en"},
}

m["aih"] = {
	"အာဲ-ချာန်",
	2827749,
	"qfa-kms",
	{"Latn", "Hani"},
}


m["aii"] = {
	canonicalName = "အာက်သဳရိ နဳအဝ်-အာရာမေဣ",
	scripts = {"Syrc"},
	family = "sem-nna",
	ancestors = {"afa-pro", "sem-pro", "sem-wes-pro", "arc"},
	translit_module = "aii-translit",
	entry_name = "Syrc-entryname",
}

m["aij"] = {
	"Lishanid Noshan",
	3436467,
	"sem-nna",
	{"Hebr"},
}

m["aik"] = {
	canonicalName = "Ake",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["ail"] = {
	canonicalName = "Aimele",
	scripts = {"Latn"},
	family = "ngf",
}

m["aim"] = {
	canonicalName = "Aimol",
	family = "tbq-kuk",
}

m["ain"] = {
	"အာဲနု",
	27969,
	"qfa-iso",
	{"Kana", "Latn", "Cyrl"},
}

m["aio"] = {
	"အာဲတောန်",
	3399725,
	"tai-swe",
	{"Mymr"},
	translit_module = "aio-phk-translit",
	entry_name = {
		from = {u(0xFE00)}, --VS01
		to = {""}},
}

m["aip"] = {
	canonicalName = "Burumakok",
	scripts = {"Latn"},
	family = "ngf",
}

m["air"] = {
	canonicalName = "Airoran",
	scripts = {"Latn"},
	family = "paa",
}

m["ais"] = {
	canonicalName = "Nataoran Amis",
	scripts = {"Latn"},
	family = "map",
}

m["ait"] = {
	"အာရေဝ်ခေန်",
	3446679,
	"tup",
	Latn,
}

m["aiw"] = {
	canonicalName = "Aari",
	scripts = {"Latn"},
	family = "omv",
}

m["aix"] = {
	canonicalName = "Aighon",
	scripts = {"Latn"},
	family = "poz-ocw",
}

m["aiy"] = {
	canonicalName = "Ali",
	scripts = {"Latn"},
	family = "alv",
}

m["aja"] = {
	canonicalName = "Aja",
	otherNames = {"Adja", "Aja (Sudan)"},
	family = "csu",
}

m["ajg"] = {
	canonicalName = "Adja",
	otherNames = {"Aja", "Aja (Benin)", "Aja (Togo)", "Ajagbe"},
	family = "alv-kwa",
}

m["aji"] = {
	"အဂျဳ",
	2828867,
	"poz-cln",
	Latn,
}

m["ajn"] = {
	canonicalName = "Andajin", -- sometimes considered a dialect of 'ung'
	scripts = {"Latn"},
}

m["ajp"] = {
	"အာရဗဳလပ်ဗေန်ထေန်သမၠုင်ကျာ",
	nil,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["ajt"] = {
	canonicalName = "Judeo-Tunisian Arabic",
	scripts = {"Hebr"},
	family = "sem-arb",
	ancestors = {"aeb"},
}

m["aju"] = {
	canonicalName = "Judeo-Moroccan Arabic",
	scripts = {"Hebr"},
	family = "sem-arb",
}

m["ajw"] = {
	canonicalName = "Ajawa",
	family = "cdc-wst",
}

m["ajz"] = {
	canonicalName = "Amri Karbi",
	family = "tbq",
}

m["akb"] = {
	canonicalName = "Angkola Batak",
	otherNames = {"Batak Angkola"},
	scripts = {"Latn", "Batk"},
	family = "btk",
}

m["akc"] = {
	canonicalName = "Mpur",
	scripts = {"Latn"},
	family = "paa",
}

m["akd"] = {
	canonicalName = "Ukpet-Ehom",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["ake"] = {
	canonicalName = "Akawaio",
	otherNames = {"Acauayo", "Acaguayo", "Akawai", "Acawai", "Accawai"},
	scripts = {"Latn"},
	family = "sai-car",
}

m["akf"] = {
	canonicalName = "Akpa",
	scripts = {"Latn"},
	family = "alv-von",
}

m["akg"] = {
	canonicalName = "အနှတ်ခါလာန်ဂူ",
	scripts = {"Latn"},
	family = "plf",
}

m["akh"] = {
	canonicalName = "Angal Heneng",
	scripts = {"Latn"},
	family = "ngf",
}

m["aki"] = {
	canonicalName = "Aiome",
	otherNames = {"Aiom", "Ayom"},
	scripts = {"Latn"},
	family = "paa",
}

m["akj"] = {
	canonicalName = "ဇေရု",
	otherNames = {"Aka-Jeru"},
	scripts = {"Latn"},
	family = "qfa-adm",
}

m["akk"] = {
	"အခါဒဳယာန်",
	35518,
	family = "sem-eas",
	scripts = {"Xsux", "Latn"},
	ancestors = {"afa-pro", "sem-pro"},
}


m["akl"] = {
	canonicalName = "အာက်ခလာန်",
	otherNames = {"Aklan", "Akeanon"},
	scripts = {"Latn"},
	family = "phi",
}

m["akm"] = {
	canonicalName = "Aka-Bo",
	otherNames = {"Ba", "Bo"},
	scripts = {"Latn"},
	family = "qfa-adm",
}

m["ako"] = {
	canonicalName = "Akurio",
	scripts = {"Latn"},
	family = "sai-car",
}

m["akp"] = {
	canonicalName = "Siwu",
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["akq"] = {
	canonicalName = "Ak",
	scripts = {"Latn"},
	family = "paa",
}

m["akr"] = {
	canonicalName = "Araki",
	scripts = {"Latn"},
	family = "poz-vnc",
}

m["aks"] = {
	canonicalName = "Akaselem",
	otherNames = {"Tchamba", "Akasele", "Tsamba"},
	scripts = {"Latn"},
	family = "nic-gur",
}

m["akt"] = {
	canonicalName = "Akolet",
	scripts = {"Latn"},
	family = "poz-ocw",
}

m["aku"] = {
	canonicalName = "Akum",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["akv"] = {
	canonicalName = "Akhvakh",
	scripts = {"Cyrl"},
	family = "cau-ava",
}

m["akw"] = {
	canonicalName = "Akwa",
	scripts = {"Latn"},
	family = "bnt",
}

m["akx"] = {
	canonicalName = "အကာ-ကေဒဵု",
	otherNames = {"Kede"},
	scripts = {"Latn"},
	family = "qfa-adm",
}

m["aky"] = {
	canonicalName = "အကာ-ကောန်",
	otherNames = {"Kol", "Kawl", "Aka-Kawl", "Bojingiji"},
	scripts = {"Latn"},
	family = "qfa-adm",
}

m["akz"] = {
	canonicalName = "အာလာဗာမာ",
	scripts = {"Latn"},
	family = "nai-mus",
}

m["ala"] = {
	canonicalName = "Alago",
	scripts = {"Latn"},
	family = "alv",
}

m["alc"] = {
	canonicalName = "ခါဝေတ်သကာ",
	otherNames = {"Qawasqar", "Alacaluf"},
	scripts = {"Latn"},
	family = "aqa",
}

m["ald"] = {
	canonicalName = "Alladian",
	otherNames = {"Alladyan", "Allagian", "Alaguian"},
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["ale"] = {
	canonicalName = "Aleut",
	otherNames = {"Aleutian"},
	scripts = {"Latn"},
	family = "esx",
}

m["alf"] = {
	canonicalName = "Alege",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["alh"] = {
	canonicalName = "Alawa",
	scripts = {"Latn"},
}

m["ali"] = {
	canonicalName = "Amaimon",
	scripts = {"Latn"},
	family = "ngf",
}

m["alj"] = {
	canonicalName = "အလံင်ဂံင်",
	scripts = {"Latn"},
	family = "phi",
}

m["alk"] = {
	canonicalName = "Alak",
	family = "mkh",
}

m["all"] = {
	canonicalName = "Allar",
	otherNames = {"Chatan"},
	family = "dra",
}

m["alm"] = {
	canonicalName = "Amblong",
	scripts = {"Latn"},
	family = "poz-vnc",
}

m["aln"] = {
	canonicalName = "Gheg Albanian",
	scripts = {"Latn"},
	family = "sqj",
}

m["alo"] = {
	canonicalName = "Larike-Wakasihu",
	scripts = {"Latn"},
	family = "plf",
}

m["alp"] = {
	canonicalName = "Alune",
	scripts = {"Latn"},
	family = "plf",
}

m["alq"] = {
	canonicalName = "Algonquin",
	scripts = {"Latn"},
	family = "alg",
}

m["alr"] = {
	canonicalName = "Alutor",
	scripts = {"Cyrl"},
	family = "qfa-cka",
}

m["alt"] = {
	canonicalName = "အာန်တာဲ ဒိုဟ်သမၠုင်ကျာ",
	otherNames = {"Southern Altay", "Altai", "Altay"},
	scripts = {"Cyrl"},
	translit_module = "Altai-translit",
	family = "trk",
}

m["alu"] = {
	canonicalName = "'အာရေဝ်'အာရာ",
	otherNames = {"Areare"},
	scripts = {"Latn"},
	family = "poz-sls",
}

m["alw"] = {
	canonicalName = "Alaba",
	otherNames = {"Alaba-K'abeena", "Alaaba", "K'abeena"},
	scripts = {"Latn"},
	family = "cus",
}

m["alx"] = {
	canonicalName = "Amol",
	scripts = {"Latn"},
	family = "qfa-tor",
}

m["aly"] = {
	canonicalName = "Alyawarr",
	scripts = {"Latn"},
	family = "aus-pam",
}

m["alz"] = {
	canonicalName = "Alur",
	scripts = {"Latn"},
	family = "sdv",
}

m["ama"] = {
	canonicalName = "Amanayé",
	scripts = {"Latn"},
	family = "tup-gua",
}

m["amb"] = {
	canonicalName = "Ambo",
	scripts = {"Latn"},
	family = "nic-bod",
}

m["amc"] = {
	canonicalName = "Amahuaca",
	scripts = {"Latn"},
	family = "sai-pan",
}

m["ame"] = {
	canonicalName = "Yanesha'",
	otherNames = {"Amuesha"},
	scripts = {"Latn"},
	family = "awd",
}

m["amf"] = {
	canonicalName = "Hamer-Banna",
	scripts = {"Latn"},
	family = "omv",
}

m["amg"] = {
	canonicalName = "Amurdag",
	otherNames = {"Amarag"},
	scripts = {"Latn"},
	family = "aus-wdj",
}

m["ami"] = {
	canonicalName = "ဨမေတ်",
	scripts = {"Latn"},
	family = "map",
	ancestors = {"map-pro"},
}

m["amj"] = {
	canonicalName = "Amdang",
	otherNames = {"Biltine", "Mimi"},
	scripts = {"Latn"},
	family = "ssa-fur",
}

m["amk"] = {
	canonicalName = "Ambai",
	otherNames = {"Wadapi-Laut"},
	scripts = {"Latn"},
	family = "poz-hce",
}

m["aml"] = {
	canonicalName = "War-Jaintia",
	scripts = {"Latn"},
	family = "aav",
}

m["amm"] = {
	canonicalName = "အာမာ",
	otherNames = {"Ama (New Guinea)", "Ama (Papua New Guinea)"},
	scripts = {"Latn"},
	family = "qfa-mal",
}

m["amn"] = {
	canonicalName = "အာမနှာတ်",
	scripts = {"Latn"},
	family = "ngf",
}

m["amo"] = {
	canonicalName = "Amo",
	otherNames = {"Timap", "Map", "Among", "Amap", "Amon"},
	scripts = {"Latn"},
	family = "nic-bco",
}

m["amp"] = {
	canonicalName = "Alamblak",
	scripts = {"Latn"},
	family = "paa",
}

m["amq"] = {
	canonicalName = "Amahai",
	scripts = {"Latn"},
	family = "plf",
}

m["amr"] = {
	canonicalName = "Amarakaeri",
}

m["ams"] = {
	canonicalName = "အမာမဳ-အဝ်ဃှဳမာ လ္ပာ်ဒိုဟ်သမၠုင်ကျာ",
	family = "jpx-ryu",
	scripts = {"Jpan", "Hani", "Hrkt", "Hira", "Kana"},
	ancestors = {"jpx-pro", "jpx-ryu-pro"},
	translit_module = "translit-redirect",
}

m["amt"] = {
	canonicalName = "Amto",
	scripts = {"Latn"},
	family = "paa",
}

m["amu"] = {
	canonicalName = "ဂေရေရဝ် အာမတ်သဂဝ်",
	otherNames = {"Amuzgo", "Xochistlahuaca Amuzgo", "Northern Amuzgo", "Southern Amuzgo"},
	scripts = {"Latn"},
	family = "omq",
}

m["amv"] = {
	canonicalName = "Ambelau",
	scripts = {"Latn"},
	family = "poz",
}

m["amw"] = {
	canonicalName = "နဳအဝ်-အာရမေအဳ လ္ပာ်ပလိုတ်",
	scripts = {"Latn", "Armi", "Syrc"},
	family = "sem-ara",
	ancestors = {"afa-pro", "sem-pro", "sem-wes-pro", "arc"},
}

m["amx"] = {
	canonicalName = "Anmatyerre",
	otherNames = {"Namfau"},
	scripts = {"Latn"},
	family = "aus-pam",
}

m["amy"] = {
	canonicalName = "Ami",
	otherNames = {"Ame", "Amijangal"},
}

m["amz"] = {
	canonicalName = "Atampaya",
	scripts = {"Latn"},
	family = "aus-pam",
}

m["ana"] = {
	canonicalName = "Andaqui",
	otherNames = {"Andaquí", "Andakí", "Andaki"},
	scripts = {"Latn"},
}

m["anb"] = {
	canonicalName = "Andoa",
	otherNames = {"Shimigae", "Semigae", "Gae", "Gay", "Gaye", "Siaviri", "Katsakáti"},
	scripts = {"Latn"},
	family = "sai-zap",
}

m["anc"] = {
	canonicalName = "Angas",
	family = "cdc-wst",
}

m["and"] = {
	canonicalName = "Ansus",
	scripts = {"Latn"},
	family = "poz-hce",
}

m["ane"] = {
	"သာရခူ",
	3571097,
	"poz-cln",
	Latn,
}

m["anf"] = {
	canonicalName = "Animere",
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["ang"] = {
	canonicalName = "အင်္ဂလိက်တြေံ",
	otherNames = {"Anglo-Saxon"},
	scripts = {"Latinx"},
	family = "gmw",
	entry_name = {
		from = {"[ĀÁ]", "[āá]", "[ǢǼ]", "[ǣǽ]", "Ċ", "ċ", "[ĒÉ]", "[ēé]", "Ġ", "ġ", "[ĪÍ]", "[īí]", "[ŌÓ]", "[ōó]", "[ŪÚ]", "[ūú]", "[ȲÝ]", "[ȳý]", MACRON, ACUTE, DOTABOVE},
		to   = {"A", "a", "Æ", "æ", "C", "c", "E", "e", "G", "g", "I", "i", "O", "o", "U", "u", "Y", "y"}},
	ancestors = {"ine-pro", "gem-pro", "gmw-pro"},
}

m["anh"] = {
	canonicalName = "Nend",
	scripts = {"Latn"},
	family = "ngf",
}

m["ani"] = {
	canonicalName = "Andi",
	scripts = {"Cyrl"},
	family = "cau-ava",
}

m["anj"] = {
	canonicalName = "Anor",
	scripts = {"Latn"},
	family = "paa",
}

m["ank"] = {
	canonicalName = "Goemai",
	family = "cdc-wst",
}

m["anl"] = {
	canonicalName = "Anu",
	otherNames = {"Khaungtso", "Anu-Hkongso Chin"}, -- the last is the ISO's unattested blend of the names of its two dialects and half of the name of the place where it's spoken
	family = "tbq",
}

m["anm"] = {
	canonicalName = "Anal",
	otherNames = {"Anaal", "Namfau"}, -- Namfau is actually a placename
	scripts = {"Latn"},
	family = "tbq-kuk",
}

m["ann"] = {
	canonicalName = "Obolo",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["ano"] = {
	canonicalName = "Andoque",
	scripts = {"Latn"},
	family = "qfa-iso",
}

m["anp"] = {
	canonicalName = "အာန်ဂဳကာ",
	family = "inc",
	ancestors = {"bh"},
}

m["anq"] = {
	canonicalName = "ဂျရာဝါ",
	otherNames = {"Jarawa (India)"},
	scripts = {"Latn"},
	family = "qfa-adm",
}

m["anr"] = {
	canonicalName = "Andh",
	family = "inc",
}

m["ans"] = {
	canonicalName = "Anserma",
}

m["ant"] = {
	canonicalName = "Antakarinya",
	scripts = {"Latn"},
	family = "aus-psw",
}

m["anu"] = {
	canonicalName = "Anuak",
	scripts = {"Latn"},
	family = "sdv",
}

m["anv"] = {
	canonicalName = "Denya",
	scripts = {"Latn"},
	family = "nic-bod",
}

m["anw"] = {
	canonicalName = "Anaang",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["anx"] = {
	canonicalName = "Andra-Hus",
	scripts = {"Latn"},
	family = "poz-aay",
}

m["any"] = {
	canonicalName = "Anyi",
	otherNames = {"Anyin"},
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["anz"] = {
	canonicalName = "Anem",
}

m["aoa"] = {
	canonicalName = "Angolar",
	scripts = {"Latn"},
	family = "crp",
	ancestors = {"pt"},
}

m["aob"] = {
	canonicalName = "Abom",
	scripts = {"Latn"},
	family = "ngf",
}

m["aoc"] = {
	canonicalName = "Pemon",
	otherNames = {"Arekuna", "Arecuna"},
	scripts = {"Latn"},
	family = "sai-car",
}

m["aod"] = {
	canonicalName = "Andarum",
	scripts = {"Latn"},
	family = "paa",
}

m["aoe"] = {
	canonicalName = "Angal Enen",
	scripts = {"Latn"},
	family = "ngf",
}

m["aof"] = {
	canonicalName = "Bragat",
	scripts = {"Latn"},
	family = "qfa-tor",
}

m["aog"] = {
	canonicalName = "Angoram",
}

m["aoh"] = {
	canonicalName = "Arma",
}

m["aoi"] = {
	canonicalName = "Anindilyakwa",
	otherNames = {"Enindhilyagwa"},
	scripts = {"Latn"},
	family = "aus-arn",
}

m["aoj"] = {
	canonicalName = "Mufian",
	scripts = {"Latn"},
	family = "qfa-tor",
}

m["aok"] = {
	canonicalName = "Arhö",
	scripts = {"Latn"},
	family = "poz-cln",
}

m["aol"] = {
	canonicalName = "Alor",
	otherNames = {"Alorese"},
	family = "poz",
}

m["aom"] = {
	canonicalName = "Ömie",
	scripts = {"Latn"},
	family = "ngf",
}

m["aon"] = {
	canonicalName = "Bumbita Arapesh",
	scripts = {"Latn"},
	family = "qfa-tor",
}

m["aor"] = {
	canonicalName = "Aore",
	scripts = {"Latn"},
	family = "poz-vnc",
}

m["aos"] = {
	canonicalName = "Taikat",
	scripts = {"Latn"},
	family = "paa",
}

m["aot"] = {
	canonicalName = "အိန္ဒိ အာတုံ",
	otherNames = {"Atong", "A'tong"},
	scripts = {"Latn", "Beng"},
	family = "tbq-bdg",
	translit_module = "bn-translit",
	override_translit = true,
}

m["aou"] = {
	canonicalName = "အအ်ဥူ",
	otherNames = {"Ayo", "A'ou Gelao"},
	family = "qfa-tak",
}

m["aox"] = {
	canonicalName = "Atorada",
	family = "awd",
}

m["aoz"] = {
	canonicalName = "Uab Meto",
	scripts = {"Latn"},
	family = "plf",
}

m["apb"] = {
	canonicalName = "Sa'a",
	otherNames = {"South Malaita", "Apae'aa"},
	family = "poz-sls",
}

m["apc"] = {
	"အာရဗဳလပ်ဗေန်ထေန်သၟဝ်ကျာ",
	22809485,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["apd"] = {
	"အာရဗဳ သုဒါန်နဳ",
	56573,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["ape"] = {
	canonicalName = "Bukiyip",
	scripts = {"Latn"},
	family = "qfa-tor",
}

m["apf"] = {
	canonicalName = "Pahanan Agta",
	scripts = {"Latn"},
	family = "phi",
}

m["apg"] = {
	canonicalName = "Ampanang",
	scripts = {"Latn"},
	family = "poz",
}

m["aph"] = {
	canonicalName = "Athpare",
	otherNames = {"Athpariya"},
	family = "tbq",
}

m["api"] = {
	canonicalName = "Apiaká",
	otherNames = {"Apiacá"},
	family = "tup-gua",
}

m["apj"] = {
	canonicalName = "Jicarilla",
	otherNames = {"Jicarilla Apache"},
	scripts = {"Latn"},
	family = "apa",
}

m["apk"] = {
	canonicalName = "Plains Apache",
	otherNames = {"Kiowa Apache"},
	scripts = {"Latn"},
	family = "apa",
}

m["apl"] = {
	canonicalName = "Lipan",
	otherNames = {"Lipan Apache"},
	scripts = {"Latn"},
	family = "apa",
}

m["apm"] = {
	canonicalName = "Chiricahua",
	otherNames = {"Mescalero", "Mescalero-Chiricahua Apache"}, -- two dialects combined by Ethnologue
	scripts = {"Latn"},
	family = "apa",
}

m["apn"] = {
	"အဖဳနာရဲ",
	2858311,
	"sai-nje",
	Latn,
}

m["apo"] = {
	canonicalName = "Ambul",
	scripts = {"Latn"},
	family = "poz-ocw",
}

m["app"] = {
	canonicalName = "Apma",
	scripts = {"Latn"},
	family = "poz-vnc",
}

m["apq"] = {
	canonicalName = "အ-ၜေအ်သိခွါ",
	otherNames = {"Pucikwar", "Puchikwar", "Aka-Pucikwar", "Pujjukar", "Bójigiáb", "Bojigiab", "Bojigyab"}, -- last three may apply also to other languages
	scripts = {"Latn"},
	family = "qfa-adm",
}

m["apr"] = {
	canonicalName = "Arop-Lokep",
}

m["aps"] = {
	canonicalName = "Arop-Sissano",
	scripts = {"Latn"},
	family = "poz-ocw",
}

m["apt"] = {
	canonicalName = "Apatani",
	family = "tbq",
}

m["apu"] = {
	canonicalName = "Apurinã",
	scripts = {"Latn"},
	family = "awd",
}

m["apv"] = {
	canonicalName = "Alapmunte",
	scripts = {"Latn"},
	family = "sai-nmk",
}

m["apw"] = {
	"အာဖေန်ချဳ လ္ပာ်ပလိုတ်",
	28060,
	"apa",
	Latn,
}

m["apx"] = {
	canonicalName = "Aputai",
}

m["apy"] = {
	canonicalName = "အာက်ပါလာဲန်",
	otherNames = {"Apalai"},
	scripts = {"Latn"},
	family = "sai-gui",
}

m["apz"] = {
	canonicalName = "သာပဵုယဝ်ကာ",
	scripts = {"Latn"},
	family = "ngf",
}

m["aqc"] = {
	canonicalName = "အာဆိ",
	scripts = {"Cyrl"},
	family = "cau-lzg",
	translit_module = "cau-nec-translit",
}


m["aqd"] = {
	canonicalName = "Ampari Dogon",
	scripts = {"Latn"},
	family = "qfa-dgn",
}

m["aqg"] = {
	canonicalName = "Arigidi",
	family = "alv-von",
}

m["aqm"] = {
	canonicalName = "Atohwaim",
}

m["aqn"] = {
	canonicalName = "Northern Alta",
}

m["aqp"] = {
	canonicalName = "Atakapa",
	otherNames = {"Akokisa", "Orcoquiza", "Eastern Atakapa", "Western Atakapa"},
	scripts = {"Latn"},
}

m["aqr"] = {
	canonicalName = "Arhâ",
	family = "poz-cln",
}

m["aqt"] = {
	canonicalName = "Angaité",
}

m["aqz"] = {
	canonicalName = "Akuntsu",
	family = "tup",
}

m["arc"] = {
	canonicalName = "အာရမေအဳ",
	otherNames = {"Imperial Aramaic", "Official Aramaic", "Biblical Aramaic"},
	scripts = {"Hebr", "Armi", "Syrc", "Palm", "Nbat", "Phnx", "Mand", "Samr"},
	family = "sem-ara",
	translit_module = "translit-redirect",
	ancestors = {"afa-pro", "sem-pro", "sem-wes-pro"},
	entry_name = {
		from = {"[" .. u(0x0591) .. "-" .. u(0x05BD) .. u(0x05BF) .. "-" .. u(0x05C5) .. u(0x05C7) .. "]", "[" .. u(0x0304) .. u(0x0308) .. u(0x0331) .. u(0x0730) .. "-" .. u(0x0748) .. "]" },
		to   = {}} ,
}

m["ard"] = {
	canonicalName = "Arabana",
	family = "aus-kar",
}

m["are"] = {
	canonicalName = "Western Arrernte",
	scripts = {"Latn"},
	family = "aus-pam",
}

m["arh"] = {
	canonicalName = "Arhuaco",
	otherNames = {"Ika"},
	scripts = {"Latn"},
	family = "cba",
}

m["ari"] = {
	canonicalName = "Arikara",
	family = "cdd",
}

m["arj"] = {
	canonicalName = "Arapaso",
}

m["ark"] = {
	canonicalName = "Arikapú",
}

m["arl"] = {
	canonicalName = "Arabela",
	scripts = {"Latn"},
	family = "sai-zap",
}

m["arn"] = {
	canonicalName = "မာၜေအ်ဓုန်ကာန်",
	scripts = {"Latn"},
	family = "sai-ara",
	otherNames = {"Mapuche", "Mapudungün", "Mapuzugün", "Mapudungu", "Araucanian"}
}

m["aro"] = {
	canonicalName = "Araona",
	scripts = {"Latn"},
	family = "sai-tac",
}

m["arp"] = {
	canonicalName = "Arapaho",
	scripts = {"Latn"},
	family = "alg",
}

m["arq"] = {
	"အာရဗဳ အာန်လ်ဂျဳရဳယျာ",
	56499,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["arr"] = {
	canonicalName = "Arara-Karo",
	otherNames = {"Karo", "Karo (Brazil)", "Ramarama", "Itanga", "Itogapuc", "Itogapúk", "Ntogapid", "Ntogapig", "Arára", "Arára de Rondonia", "Arára do Jiparaná", "Arara-Karo", "Uruku", "Urukú"},
	family = "tup",
}

m["ars"] = {
	canonicalName = "အာရဗဳ  နေတ်ဒဳ",
	scripts = {"Arab"},
	family = "sem-arb",
	entry_name = {
		from = {u(0x0671), u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652), u(0x0670), u(0x0640)},
		to   = {u(0x0627)}},
}

m["aru"] = {
	canonicalName = "အာသူ",
	otherNames = {"Aruá", "Arawa", "Arawá"}, -- extinct, spoken in northern Brazil, cf. 'arx'
	scripts = {"Latn"},
	family = "auf",
}

m["arv"] = {
	canonicalName = "Arbore",
	scripts = {"Latn"},
	family = "cus",
}

m["arw"] = {
	canonicalName = "အာရတ်ဝါတ်",
	scripts = {"Latn"},
	family = "awd",
}

m["arx"] = {
	canonicalName = "Aruá",
	otherNames = {"Arua", "Aruashi", "Aruáshi", "Aruachi"}, -- moribund, spoken in central Brazil, cf. 'aru'
	family = "tup",
}

m["ary"] = {
	"အာရဗဳ မဝ်ရဝ်ကာန်",
	56426,
	"sem-arb",
	{"Arab"},
	entry_name = "ar-entryname",
	sort_key = {
		from = {"^%f[" .. u(0x5D0) .. "-" .. u(0x5EA) .. "]"},
		to   = {u(0xFB21)},
	},
}

m["arz"] = {
	"အာရဗဳ အဳဇေတ်",
	29919,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["asa"] = {
	canonicalName = "Pare",
	otherNames = {"Asu", "Asu (Tanzania)", "Chasu", "Kipare", "Southern Pare", "South Pare"},
	scripts = {"Latn"},
	family = "bnt",
}

m["asb"] = {
	canonicalName = "Assiniboine",
	family = "sio",
}

m["asc"] = {
	canonicalName = "Casuarina Coast Asmat",
}

m["asd"] = {
	canonicalName = "Asas",
}

m["ase"] = {
	canonicalName = "အရေဝ်ဘာသာကွတ်တဲအမေရိကာန်",
	otherNames = {"Ameslan", "ASL"},
	scripts = {"Sgnw"},
	family = "sgn",
}

m["asf"] = {
	canonicalName = "Auslan",
	otherNames = {"Australian Sign Language"},
}

m["asg"] = {
	canonicalName = "Cishingini",
}

m["ash"] = {
	canonicalName = "Abishira",
	otherNames = {"Tequiraca", "Tekiráka", "Abishira", "Avishiri", "Auishiri", "Agouisiri", "Avirxiri", "Abiquira", "Abigira", "Aiwa", "Aewa"},
	family = "qfa-iso",
}

m["asi"] = {
	canonicalName = "Buruwai",
}

m["asj"] = {
	canonicalName = "Nsari",
	otherNames = {"Sari", "Saari"},
	family = "nic-bod",
}

m["ask"] = {
	canonicalName = "အာပ်သကေန်",
	family = "iir-nur",
	ancestors = {"ine-pro", "iir-pro", "iir-nur-pro"},
}

m["asl"] = {
	canonicalName = "Asilulu",
	scripts = {"Latn"},
	family = "plf",
}

m["asn"] = {
	canonicalName = "Xingú Asuriní",
	family = "tup-gua",
}

m["aso"] = {
	canonicalName = "Dano",
	family = "ngf",
}

m["asp"] = {
	canonicalName = "Algerian Sign Language",
	family = "sgn",
}

m["asq"] = {
	canonicalName = "Austrian Sign Language",
	family = "sgn",
}

m["asr"] = {
	canonicalName = "Asuri",
	family = "mun",
}

m["ass"] = {
	canonicalName = "Ipulo",
	scripts = {"Latn"},
	family = "nic-bod",
}

m["ast"] = {
	"အေက်သတဝ်ရေန်",
	29507,
	"roa-ibe",
	Latn,
	ancestors = {"roa-ole"},
}

m["asu"] = {
	canonicalName = "Tocantins Asurini",
	family = "tup-gua",
}

m["asv"] = {
	canonicalName = "Asoa",
}

m["asw"] = {
	canonicalName = "Australian Aboriginal Sign Language",
	otherNames = {"Australian Aborigines Sign Language"},
	family = "sgn",
}

m["asx"] = {
	canonicalName = "Muratayak",
	family = "ngf-fin",
}

m["asy"] = {
	canonicalName = "Yaosakor Asmat",
}

m["asz"] = {
	canonicalName = "As",
	family = "poz-hce",
}

m["ata"] = {
	canonicalName = "Pele-Ata",
}

m["atb"] = {
	canonicalName = "Zaiwa",
}

m["atc"] = {
	canonicalName = "Atsahuaca",
	family = "sai-pan",
}

m["atd"] = {
	canonicalName = "Ata Manobo",
	family = "phi",
}

m["ate"] = {
	canonicalName = "Atemble",
}

m["atg"] = {
	canonicalName = "Okpela",
	otherNames = {"Ivbie North", "Arhe", "Ivbie North-Okpela-Arhe"},
	scripts = {"Latn"},
	family = "alv-edo",
}

m["ati"] = {
	canonicalName = "Attié",
}

m["atj"] = {
	canonicalName = "Atikamekw",
	scripts = {"Latn"},
	family = "alg",
	ancestors = {"cr"},
}

m["atk"] = {
	canonicalName = "Ati",
}

m["atl"] = {
	canonicalName = "Mt. Iraya Agta",
	family = "phi",
}

m["atm"] = {
	canonicalName = "Ata",
}

m["atn"] = {
	canonicalName = "Ashtiani",
	family = "ira",
}

m["ato"] = {
	canonicalName = "Atong (Cameroon)",
	otherNames = {"Atoŋ", "Atong"},
	family = "nic-grf",
}

m["atp"] = {
	canonicalName = "Pudtol Atta",
	family = "phi",
}

m["atq"] = {
	canonicalName = "Aralle-Tabulahan",
}

m["atr"] = {
	canonicalName = "Waimiri-Atroari",
	family = "sai-car",
}

m["ats"] = {
	canonicalName = "Gros Ventre",
	otherNames = {"Atsina"},
	scripts = {"Latn"},
	family = "alg",
}

m["att"] = {
	canonicalName = "Pamplona Atta",
	family = "phi",
}

m["atu"] = {
	canonicalName = "Reel",
}

m["atv"] = {
	canonicalName = "Northern Altai",
	otherNames = {"Northern Altay", "Altai", "Altay"},
	scripts = {"Cyrl"},
	translit_module = "Altai-translit",
	family = "trk",
}

m["atw"] = {
	canonicalName = "Atsugewi",
	otherNames = {"Atsugé"},
	scripts = {"Latn"},
	family = "nai-pal",
}

m["atx"] = {
	canonicalName = "Arutani",
	scripts = {"Latn"},
}

m["aty"] = {
	canonicalName = "Aneityum",
	family = "poz-oce",
}

m["atz"] = {
	canonicalName = "Arta",
}

m["aua"] = {
	canonicalName = "Asumboa",
	family = "poz-oce",
}

m["aub"] = {
	canonicalName = "Alugu",
	family = "tbq-lol",
}

m["auc"] = {
	canonicalName = "Huaorani",
	otherNames = {"Waorani", "Sabela", "Wao", "Huao", "Aushiri", "Ssabela", "Wao Terero", "Auka", "Auca"},
	scripts = {"Latn"},
	family = "qfa-iso",
}

m["aud"] = {
	canonicalName = "Anuta",
	scripts = {"Latn"},
	family = "poz-pol",
}

m["aug"] = {
	canonicalName = "Aguna",
}

m["auh"] = {
	canonicalName = "Aushi",
}

m["aui"] = {
	canonicalName = "Anuki",
	family = "poz-ocw",
}

m["auj"] = {
	canonicalName = "Augila",
	otherNames = {"Awjilah", "Awjila"},
	family = "ber",
}

m["auk"] = {
	canonicalName = "Heyo",
	family = "qfa-tor",
}

m["aul"] = {
	canonicalName = "Aulua",
	family = "poz-vnc",
}

m["aum"] = {
	canonicalName = "အာသူ",
	otherNames = {"Abewa", "Asu (Nigeria)"},
	family = "alv-ngb",
	scripts = {"Latn"},
}

m["aun"] = {
	canonicalName = "Molmo One",
	family = "qfa-tor",
}

m["auo"] = {
	canonicalName = "Auyokawa",
}

m["aup"] = {
	canonicalName = "Makayam",
}

m["auq"] = {
	canonicalName = "Anus",
	otherNames = {"A", "Korur", "Korurnus"}, -- no name seems to be attested; lect may be the same as 'pdn'
	family = "poz-ocw",
}

m["aur"] = {
	canonicalName = "Aruek",
	family = "qfa-tor",
}

m["aut"] = {
	canonicalName = "Austral",
	family = "poz-pol",
}

m["auu"] = {
	canonicalName = "Auye",
}

m["auw"] = {
	canonicalName = "Awyi",
}

m["aux"] = {
	canonicalName = "Aurá",
	family = "tup-gua",
}

m["auy"] = {
	canonicalName = "Auyana",
}

m["auz"] = {
	"အာရဗဳ ဥူသဗက်ကဳ",
	3399507,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["avb"] = {
	canonicalName = "Avau",
	family = "poz-ocw",
}

m["avd"] = {
	canonicalName = "အာယ်ဝဳရဳ-ဝဳဒါရဳ",
	otherNames = {"Alviri", "Vidari"},
	scripts = {"fa-Arab"},
	family = "xme",
	ancestors = {"xme-mid"},
}

m["avi"] = {
	canonicalName = "Avikam",
	family = "alv-kwa",
}

m["avk"] = {
	canonicalName = "Kotava",
	type = "appendix-constructed",
	family = "art",
}

m["avl"] = {
	canonicalName = "Eastern Egyptian Bedawi Arabic",
	otherNames = {"Bedawi Arabic", "Levantine Bedawi Arabic"},
	scripts = {"Arab"},
	family = "sem-arb",
	entry_name = {
		from = {u(0x0671), u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652), u(0x0670), u(0x0640)},
		to   = {u(0x0627)}},
}

m["avm"] = {
	canonicalName = "Angkamuthi", -- sometimes considered a dialect of 'urf'
	scripts = {"Latn"},
	family = "aus-pmn",
}

m["avn"] = {
	canonicalName = "Avatime",
	family = "alv-kwa",
}

m["avo"] = {
	canonicalName = "Agavotaguerra",
	family = "awd",
}

m["avs"] = {
	canonicalName = "Aushiri",
	family = "sai-zap",
}

m["avt"] = {
	canonicalName = "Au",
	family = "qfa-tor",
}

m["avu"] = {
	canonicalName = "အာတ်ဝါဝ်ခါယျ",
	family = "csu-mma",
	scripts = {"Latn"},
}

m["avv"] = {
	canonicalName = "Avá-Canoeiro",
	otherNames = {"Avá", "Canoe"},
	family = "tup-gua",
}

m["awa"] = {
	canonicalName = "အဝါဒဳ",
	scripts = {"Deva", "Kthi", "fa-Arab"},
	family = "inc",
	ancestors = {"psu"},
	translit_module = "hi-translit",
}

m["awb"] = {
	canonicalName = "Awa (New Guinea)",
	otherNames = {"Awa", "Awa (Papua New Guinea)"},
	family = "paa-kag",
}

m["awc"] = {
	canonicalName = "Cicipu",
	otherNames = {"Cipu"},
	family = "nic-knj",
}

m["awe"] = {
	canonicalName = "Awetí",
	family = "tup",
}

m["awg"] = {
	"အာန်ဂူတဳမဳရဳ",
	4764288,
	"aus-pam",
	Latn,
}

m["awh"] = {
	canonicalName = "Awbono",
}

m["awi"] = {
	canonicalName = "Aekyom",
	otherNames = {"Awin"},
}

m["awk"] = {
	canonicalName = "အဝါဗာကဴ",
	scripts = {"Latn"},
	family = "aus-pam",
}

m["awm"] = {
	canonicalName = "Arawum",
	family = "ngf",
}

m["awn"] = {
	canonicalName = "Awngi",
	family = "cus",
}

m["awo"] = {
	canonicalName = "Awak",
	family = "alv",
}

m["awr"] = {
	canonicalName = "Awera",
	family = "paa-lkp",
}

m["aws"] = {
	canonicalName = "South Awyu",
	family = "ngf",
}

m["awt"] = {
	canonicalName = "Araweté",
	family = "tup-gua",
}

m["awu"] = {
	canonicalName = "Central Awyu",
}

m["awv"] = {
	canonicalName = "Jair Awyu",
}

m["aww"] = {
	canonicalName = "Awun",
}

m["awx"] = {
	canonicalName = "Awara",
	family = "ngf-fin",
}

m["awy"] = {
	canonicalName = "Edera Awyu",
	family = "ngf",
}

m["axb"] = {
	canonicalName = "Abipon",
	otherNames = {"Abipón", "Callaga", "Kalyaga"},
	family = "sai-guc",
}

m["axe"] = {
	canonicalName = "Ayerrerenge", -- a variety of Arrernte
	family = "aus-pam",
}

m["axg"] = {
	canonicalName = "Mato Grosso Arára",
}

m["axk"] = {
	canonicalName = "Aka (Central Africa)",
	otherNames = {"Yaka", "Yaka (Central African Republic)", "Aka", "Beka"}, -- distinguish from 'iyx' and 'yaf'
	scripts = {"Latn"},
	family = "bnt",
}

m["axl"] = {
	canonicalName = "Lower Southern Aranda",
}

m["axm"] = {
	canonicalName = "အာမေနဳယျာအဒေါဝ်",
	scripts = {"Armn"},
	family = "hyx",
	ancestors = {"xcl"},
	translit_module = "Armn-translit",
	override_translit = true,
	entry_name = {
		from = {"՞", "՜", "՛", "՟", "և"},
		to   = {"", "", "", "", "եւ"}} ,
}

m["axx"] = {
	canonicalName = "Xaragure",
	otherNames = {"Xârâgurè"},
	family = "poz-cln",
}

m["aya"] = {
	canonicalName = "Awar",
	family = "paa",
}

m["ayb"] = {
	canonicalName = "Ayizo Gbe",
}

m["ayd"] = {
	canonicalName = "Ayabadhu",
}

m["aye"] = {
	canonicalName = "Ayere",
	scripts = {"Latn"},
	family = "alv-von",
}

m["ayg"] = {
	canonicalName = "Nyanga (Togo)",
	otherNames = {"Nyanga", "Ginyanga"},
	scripts = {"Latn"},
	family = "alv-kwa",
}

m["ayh"] = {
	canonicalName = "Hadrami Arabic",
	otherNames = {"Hadhrami Arabic"},
	scripts = {"Arab"},
	family = "sem-arb",
	entry_name = {
		from = {u(0x0671), u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652), u(0x0670), u(0x0640)},
		to   = {u(0x0627)}},
}

m["ayi"] = {
	canonicalName = "Leyigha",
	scripts = {"Latn"},
	family = "nic-bco",
}

m["ayk"] = {
	canonicalName = "Akuku",
	scripts = {"Latn"},
	family = "alv-edo",
}

m["ayl"] = {
	"အာရဗဳလေတ်ဗျာ",
	56503,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["ayn"] = {
	"အာရဗဳ ယာက်မနဳ",
	1686766,
	"sem-arb",
	Arab,
	entry_name = "ar-entryname",
}

m["ayo"] = {
	canonicalName = "Ayoreo",
	otherNames = {"Morotoco", "Moro", "Ayoweo", "Ayoré", "Pyeta Yovai"},
	scripts = {"Latn"},
	family = "sai-zam",
}

m["ayp"] = {
	"အာရဗဳ မာက်သဝ်ပဝ်တေမဳယာန် သၟဝ်ကျာ",
	56577,
	"sem-arb",
	Arab,
	ancestors = {"acm"},
	entry_name = "ar-entryname",
}

m["ayq"] = {
	canonicalName = "Ayi",
	otherNames = {"Ayi (New Guinea)", "Ayi (Papua New Guinea)"},
	scripts = {"Latn"},
	family = "paa-spk",
}

m["ays"] = {
	canonicalName = "Sorsogon Ayta",
	scripts = {"Latn"},
	family = "phi",
}

m["ayt"] = {
	canonicalName = "Bataan Ayta",
	otherNames = {"Magbukun Ayta", "Mariveleño"},
	scripts = {"Latn"},
	family = "phi",
}

m["ayu"] = {
	canonicalName = "Ayu",
	scripts = {"Latn"},
	family = "alv",
}

m["ayy"] = {
	canonicalName = "Tayabas Ayta",
	scripts = {"Latn"},
	family = "phi",
}

m["ayz"] = {
	canonicalName = "Maybrat",
	otherNames = {"Mai Brat", "Ajamaru", "Ayamaru"},
	scripts = {"Latn"},
}

m["aza"] = {
	canonicalName = "Azha",
	scripts = {"Latn"},
	family = "tbq-lol",
}

m["azd"] = {
	canonicalName = "Eastern Durango Nahuatl",
	scripts = {"Latn"},
	family = "azc-nah",
	ancestors = {"nah"},
}

m["azg"] = {
	canonicalName = "San Pedro Amuzgos Amuzgo",
	otherNames = {"Upper Eastern Amuzgo", "Oaxaca Amuzgo"},
	scripts = {"Latn"},
	family = "omq",
}

m["azm"] = {
	canonicalName = "Ipalapa Amuzgo",
	otherNames = {"Lower Eastern Amuzgo"},
	scripts = {"Latn"},
	family = "omq",
}

m["azn"] = {
	canonicalName = "Western Durango Nahuatl",
	scripts = {"Latn"},
	family = "azc-nah",
	ancestors = {"nah"},
}

m["azo"] = {
	canonicalName = "Awing",
	scripts = {"Latn"},
	family = "nic-bod",
}

m["azt"] = {
	canonicalName = "Faire Atta",
	scripts = {"Latn"},
	family = "phi",
}

m["azz"] = {
	canonicalName = "Highland Puebla Nahuatl",
	scripts = {"Latn"},
	family = "azc-nah",
	ancestors = {"nah"},
}

return m