Knowledge (XXG)

:AutoWikiBrowser/Typos - Knowledge (XXG)

Source 📝

List of typo-fixing rules used by Knowledge (XXG) tools
"WP:AWB/T" redirects here. For the page to request tasks for users with AWB rights to do, see WP:AutoWikiBrowser/Tasks.
AutoWikiBrowser 6.3.1.1
RegExTypoFix
Developer(s)RegExTypoFix Team
(see below for RETF Developers)
Written inRegular expressions
Operating systemPlatform independent
Available inEnglish
TypeSpell checkers
LicenseGFDL/CC BY-SA
RegExTypoFix Developers
Top contributors (200+ edits, as of February 2024)
  1. BillFlis 3,260+
  2. Smasongarrison 1,180+
  3. GoingBatty 1,000+
  4. Rjwilmsi 970+
  5. Chris the speller 750+
  6. Colonies Chris 560+
  7. Sun Creator 440+
  8. Tom.Reding 410+
  9. JHunterJ 340+
  10. StefenTower 210+
  11. ThaddeusB 210+
  12. Euchiasmus 200+

Also notable (100+ kb, as of February 2024)

Original creator

These are the typo regular expressions for RegExTypoFix (Regular Expression Typographical error Fixer, or RETF). Development has been open to the public since 2006.

Please add to or improve these regular expressions!

Description

These regular expressions find and fix common misspellings and grammatical errors. The primary advantage of RegExTypoFix over other possible spellchecking engines and approaches is accuracy and the return of only one possible replacement. The rules below are developed to give as few false positives as possible. Errors should be encountered only in extremely rare usages or when parsing other languages (though even then if there are too many false positives the expression will be modified). On everyday English, accuracy should hit 100%.

RegExTypoFix is used across diverse sources of text from many languages, in the English Knowledge (XXG). RegExTypoFix is also used on other MediaWiki-based wikis, and derivatives can be leveraged in other software. This leads to a massively tested, well-vetted set of automatic corrections. Even so, due to the great variability of text, RegExTypoFix is not accurate enough to be run without a human checking every proposed correction when running against an encyclopedia such as Knowledge (XXG).

Syntax of the expressions is described in full on the MSDN website, though for the purposes of this page the Well House summary is likely easier to use.

Usage

Everyone using RegExTypoFix should use it responsibly. Check every edit before you make it. If in doubt, SKIP. This typo list is used by the in-browser editor and multiple Knowledge (XXG) tools.

AutoWikiBrowser (AWB)

AWB purposely avoids fixing typos in certain areas of the wiki-text. Typo fixing is prevented within: image names, template names and parameters, wikilink targets, text in quotations and italics, and any text that follows a colon or asterisk. If a typo rule matches a wikilink target, this rule will be ignored on the whole page.

When using AWB, you can refresh the typo list by selecting "File → Refresh status/typos" (CTRL-R). This is useful when you are modifying the typo list on Knowledge (XXG) while using AWB to test/process the modification (but basic testing should first be done offline—e.g. by using AWB's Regex Tester or "Find and replace").

JavaScript Wiki Browser (JWB)

The JavaScript Wiki Browser uses the same rules for ignoring typo fixing as the downloadable AWB does. Additionally, JWB will ignore any typo that occurs on the same line of text as {{sic in order to avoid fixing intentional or transcribed typos. Other than that, the typo rules will not be applied to image names, template names and parameters, quotes, and any text following a colon or asterisk, as well as skipping any rule that also matches a wikilink target on that page. Due to some browsers not supporting lookbehinds, any replacement rules containing lookbehinds (?<= and ?<!) will be ignored on those specific browsers. Any browser that does support these rules will apply them as normal.

To refresh the typo list, simply click the right next to the checkbox for enabling the Typo Fixing.

WPCleaner

WPCleaner also purposely avoids fixing typos in certain areas of the wiki-text. Since Java supports lookbehinds a bit differently than C#, any replacement rules containing lookbehinds (?<= and ?<!) will be rejected if the lookbehind expression doesn't have an obvious maximum length (for example, if the lookbehind expression is using quantifiers like * or +, it will probably be rejected) . Rules starting with \{\{ are only applied on the beginning of templates, rules starting with \[\[ are only applied on the beginning of internal links. For other rules, typo fixing is prevented within:

  • comments,
  • internal links, except for the text description when the link is in the form ],
  • images, except for the text description or the alternate text description,
  • templates,
  • categories,
  • interwiki links, except for the text description when the link is in the form ],
  • language links,
  • external links, except for the text description when the link is in the form ,
  • defaultsort,
  • tags,
  • between <gallery>...</gallery>, <math>...</math>, <code>...</code> or <timeline>...</timeline> tags,
  • if the text is surrounded by dots, themselves surrounded by letters or digits.

When using WPCleaner, you can refresh the typo list by clicking on the button in the main window.

wikEd

On Knowledge (XXG) gadget wikEd, the rules are applied everywhere.

Adding/changing a misspelling

The syntax for each rule is the following (according to AWB and WikEd source code):

<Typoword="Optional name for this rule"find="Regex code to detect the error"replace="Replacement for the error"/>

The "word" parameter is optional and any additional spaces between the parameters are ignored.

Before editing this page

  • Note that all typo rules are case-sensitive. This affects how they are written and tested.
  • Test your proposed change by using an ordinary Knowledge (XXG) search or an AWB Google Search with a "Find and Replace" configured. This may reveal that your rule will sometimes damage correct text, or may sometimes make the wrong correction. In these cases do not add the rule here; instead, consider adding it to the Lists of common misspellings.
  • If you do not know how to make a change, suggest it here, where a knowledgeable user will add it for you.
  • Keep in mind that every addition/possibility of a word uses more CPU and slows scanning.
  • Note that only words outside wikimarkup and URLs are fixed, so a rule to fix, say, a wiki template will not work on AWB.

Writing typo rules

  • Aim to have a single rule for each root word, prefix, and suffix.
  • Avoid having a rule detect a spelling outside its intended scope (for example, a rule that fixes housa to house must not detect thousand or house). Add word boundaries (\b) to both ends of the regex unless you are matching errors in parts of words or multiple words.
  • Do not expect rules to be applied in the order they appear.
  • Write fast rules:
    • Beginnings are expensive, so be specific in the matching of the first few characters to eliminate possibilities quickly.
    • If possible don't use the quantifiers * and + with anything but a single character. Avoid them entirely if possible, as they put extra strain on CPU and are apt to do other than what you expect.
  • Each rule must be completely independent.
  • Update the rule name if you change something that affects it.
  • Lookbehind constructs ?<= and ?<! are not supported by wikEd, and JavaScript Wiki Browser in some web browsers (notably Firefox & Safari as of October 2019), and could cause these rules to be skipped.
  • Because the typo rules are case-sensitive, be sure to handle all reasonable case possibilities.

Testing typo rules

  • Use the AWB Regular Expression tester, AWB's "Find and replace", or something similar before adding here. If you use AWB's "Find and replace", make sure "CaseSensitive", "Regex" and "Enabled" in Normal settings (or "Case sensitive", "Regular expression" and "Enabled" in Advanced settings) are checked for each rule tested.
  • Verify with AWB or WikEd immediately after you add them. If they do not work, remove them first, and analyze later.

To do

Typo list

All changes to this list are live. AWB loads directly from this list whenever someone invokes the RETF option.


New additions

For ease of correcting errors in newly added rules, please add new rules at the top of this section or its appropriate sub-section.
Old, stable rules (>1 year since last edit) can be sorted into their appropriate sections.
<Typoword="activities"find="\b()ct?(?:ivti|itivi?ti?|ivit|vitit?i?)es\b"replace="$1ctivities"/><!--20240901-->
<Typoword="Lao People's Democratic Republic"find="\bao\s+peoples\s+democratic\s+epublic\b"replace="Lao People's Democratic Republic"/><!--20240613-->
<Typoword="cubed"find="\b(ft|in|m|mi?|yd)³"replace="$1<sup>3</sup>"/><!--20240411-->
<Typoword="flat (musical note)"find="\b()b(| (?:ltos?|a(?:ritones?|ss(?:es)?)|(?:larinets?|o(?:ntrabass|rnets?))|instruments?|(?:aj|in)or|iccolo|seventh|(?:enors?|rumpets?)))\b"replace="$1♭$2"/><!--20240213-->
<Typoword="sharp (musical note)"find="\b()#(| (?:aj|in)or)\b"replace="$1♯$2"/><!--20240213-->
<Typoword="days later"find="\b()ays\s+latter\b"replace="$1ays later"/><!--20231204-->
<Typoword="if present"find="\b()f\s+precent\b"replace="$1f present"/><!--20231027-->
<Typoword="motorcycle"find="\b()oto(?:cy|r(?:cy|yc))l(es?|i(?:ng|st))\b"replace="$1otorcycl$2"/><!--20231023-->
<Typoword="is based on"find="\bis\s+base\s+on\b"replace="is based on"/><!--20230819-->
<Typoword="at the"find="\b()t\s+the\s+at\s+the\b"replace="$1t the"/><!--20230703-->
<Typoword="fewer"find="\bless\s+(people|votes)\b"replace="fewer $1"/><!--20230515-->
<Typoword="peer-reviewed"find="()eer+()eviewed"replace="$1eer-$2eviewed"/>
<Typoword="general election"find="\bGeneral(?<=(?:|\s+)\s+\w+)\s+lection(?=|\s+)"replace="general election"/>
<Typoword="Principal"find="\b()rinciple\s+(cinematography|photography)\b"replace="$1rincipal $2"/>
<Typoword="Fianna Fáil"find="\bianna\s+ail\b"replace="Fianna Fáil"/>
<Typoword="Offer(s/ed/ing)"find="\b()ff+er(?:er?|r)(ed|ing|s)\b"replace="$1ffer$2"/><!--20230123-->
<Typoword="Fiancée"find="\b()ianc\u00E9"replace="$1iancée"/><!--20221225-->
<Typoword="Reference"find="\b()erefence(s?)\b"replace="$1eference$2"/>
<Typoword="Full-page"find="\b()ull+page(?=\s+(?:a(?:d(?:vert(?:isement)?)?s?|rticle)|colou?r|feature|illustration|newspaper|p(?:hotograph|icture)|review|s(?:pread|tory))\b)"replace="$1ull-page"/>
<Typoword="Maritime"find="\b()ar(?:it|ti)me\b"replace="$1aritime"/><!--20220908-->
<Typoword="premiere"find="\bpremier\b(?<=(?:film|movie)\s+\w+)"replace="premiere"/>
<Typoword="premiere"find="\bpremier(?=\s{1,99}(?:episode|screening))"replace="premiere"/>
<Typoword="of all time"find="\balltime(?<=\sof\s+alltime)(?=(?:|\s+(?:by|in)\s))"replace="all time"/>
<Typoword="U.S."find="\bU\.S(?=)(?<=\sU\.S)"replace="U.S."/>
<Typodisabled="hidden non-breaking space"find=" "replace="&nbsp;"/><!--per ]-->
<Typoword="space after ref"find="</ref>()"replace="</ref> $1"/>
<Typoword="space before ref"find="(?<=) \<ref"replace="<ref"/>
<Typoword="uncredited/unaccredited"find="\b(n(?:acc|c))red(?:it{2,}|t)ed\b"replace="$1redited"/>
<Typoword="such as"find="\bsuch\s+us\b"replace="such as"/>
<Typoword="deputy/department chairman"find="\bDep(artment|uty)\b(?<=(?:(?:\bAs|The|\s+|)\s+|\()\w+)\s+hair(mn|persons?|womn)?\b(?=(?:\s+of\s+the(?:\s+dvisory)?\s+oard\b|\s+(?:a(?:fter|nd|t)|b(?:etween|y)|during|f(?:or|rom)|i|on|since|to|until|w(?:as|ith))\s|)|\s++|\s+n\s|\s+of\s+the\s+|(?:\s++){3,}|s\s+)"replace="dep$1 chair$2"/>
<Typoword="mixed fraction"find="\b(\d+)+and+a+half(?<=\s\d++and+a+half)+(?=(?:centuries|d(?:ays|ecades)|feet|hours|m(?:i(?:l(?:es|lennia)|nutes)|onths)|s(?:e(?:asons|conds|mesters)|tars)|points|weeks|years)\b)"replace="{{frac|$1|1|2}} "/>
<Typoword="sic"find="\bsic\)]\b"replace="{{sic}}"/>
<Typodisabled="MOS:APOSTROPHE_header"find="(?:<nowiki>(?:s</nowiki>|</nowiki>s)|(''+)(?:<nowiki/>)?s|\{\{(-)'\}\}s)\b"replace="$1{{$2's}}"/>
<Typoword="Dummy edit comment"find="<!--*ummy(?:|-(?!->))*-->"replace=""/>
<Typoword="purpose-built"find="\bpurpose\s+built(?=\s+(?:arenas?|buildings?|c(?:ampus|lubhouse|om(?:munity|plex))|depot|f(?:ac(?:ilit(?:ies|y)|tor(?:ies|y))|o(?:otball|r))|g(?:a(?:llery|rage)|round)|location|m(?:osques?|useum)|new|offices?|premises|road|s(?:chool|et|ite|t(?:a(?:dium|ge)|ore|rip|udios?))|t(?:heatre|raining)|unit)\b)|purpose(?<=(?:,|\b(?:|first|its|new|he))\s+\w+)\s+built\b"replace="purpose-built"/>
<Typoword="lengthy"find="\b()engthly\b"replace="$1engthy"/>
<Typoword="n-yard"find="\b(\d\d?|e(?:ight(?:een|y?)|leven)|f(?:i(?:ft(?:een|y)|ve)|o(?:rty|ur(?:teen)?))|nine(?:t(?:een|y))?|one|s(?:even|ix)(?:t(?:een|y))?|t(?:en|h(?:irt(?:een|y)|ree)|w(?:e(?:lve|nty)|o)))\s*yard\s*(drive|field\s+goal|FG|interception|kick|pass|run|touchdown|TD)\b"replace="$1-yard $2"/>
<Typoword="in front"find="\binfront\b(?!\.\w)"replace="in front"/>
<Typoword="Triptych"find="\b()r(?:ipti|ypt)ch(s)?\b(?!\.\w)"replace="$1riptych$2"/>
<Typoword="-ionally"find="ionaly\b(?!\.\w)"replace="ionally"/>
<Typoword="-ional"find="ioanl(ly)?\b(?!\.\w)"replace="ional$1"/>
<Typoword="dean of students"find="\bDean(?<=\s{1,99}\w{1,99}|\s{1,99}\s{1,99}\w{1,99}|\bThe\s+\w+|\(\w+)(?<!Office\s+\w+)\s+f\s+(ciences?|tud(?:ents|ies))(?=(?:|\s+(?:a(?:nd|t)|{4,20}|for|in)))"replace="dean of s$1"/>
<Typoword="professor emeritus"find="\bP(rofessors?)(?<=(?:|\s+)\s+\w+)\s+(merit(?:|us))\b"replace="p$1 e$2"/><!--20231029-->
<Typoword="director emeritus"find="\bD(irectors?)(?<=(?:|\s+)\s+\w+)\s+(merit(?:|us))\b"replace="d$1 e$2"/><!--20231029-->
<Typoword="emeritus"find="\bE(merit(?:|us))(?<=(?:|\s+)\s+\w+)(?<!Augusta\s+Emerita)(?!\s+(?:Augusta|Park))\b"replace="e$1"/><!--avoid Emerita Augusta/Augusta Emerita, Emeriti Park (Ohio)--><!--20231029-->
<Typoword="government_"find="\bgovt\.(?=\s)"replace="government"/><!--replace lowercase govt. only when followed by a space another lowercase word-->
<Typoword="great-grandmother/grandfather (sp)"find="+grand\b(?<=\bgreat+\w+)+(aunts?|child(?:ren)?|daughters?|fathers?|kids?|mothers?|n(?:ephews?|i(?:blings?|eces?))|parents?|sons?|uncles?)\b"replace="-grand$1"/>
<Typoword="great-grandmother/grandfather"find="\b()reat\s+(?=(?:great+){0,5}grand(?:aunts?|child(?:ren)?|daughters?|fathers?|kids?|mothers?|n(?:ephews?|i(?:blings?|eces?))|parents?|sons?|uncles?)\b)"replace="$1reat-"/>
<Typoword="board member(s)"find="\bBoard(?<=\s{1,99}\w{1,99}|\s{1,99}\s{1,99}\w{1,99}|The\s+\w+)\s+ember(s)?(?=|\s{1,99})"replace="board member$1"/>
<Typoword="board chair/chairman/chairperson"find="\bBoard(?<=(?:|\s+)\s+\w+)\s+(hair(?:man|person|woman)?|ommissioner)(?=(?:|\s+))"replace="board c$1"/>
<Typoword="board president"find="\bBoard(?<=(?:|\s+)\s+\w+)\s+resident(?=|\s+)"replace="board president"/>
<Typodisabled="MOS:BADDATE slash"find="(\|\d{2,4})\/(\d{2,4}\]{2})"replace="$1–$2"/>
<Typoword="mid-###0s"find="\bmid\b(?<=\bhe\s+\w+)+(20\d0|1\d0)?s\b"replace="mid-$1s"/>
<Typoword="Predecessor"find="\b()redess+or(s)?\b"replace="$1redecessor$2"/>
<Typoword="allott(ed/ing)"find="\b()ll+ot(ed|ing)\b"replace="$1llott$2"/><!--20211230-->
<Typoword="Decision-making"find="\b()ecision\s+making(?=\s+(?:a(?:bilit(?:ies|y)|ctivit(?:ies|y))|bod(?:ies|y)|p(?:o(?:sitions?|wers?)|rocess(?:es)?)|s(?:kills?|ystems?)|tools?)\b)"replace="$1ecision-making"/>
<Typoword="Precipitate"find="\b()recptiat(e?|i(?:ng|on))\b"replace="$1recipitat$2"/>
<Typoword="-ency"find="\b(g|onstitu|eni|end)anc(ies|y)\b"replace="$1enc$2"/>
<Typoword="Partner-"find="\b()artern?(ing|ships?)\b"replace="$1artner$2"/>
<Typoword="has/d/ve run"find="\bha(|v(?:e|ing))\s+ran\b"replace="ha$1 run"/>
<Typoword="Rugby league"find="\bRugby\s+lae?gue\b"replace="Rugby league"/>
<Typoword="skier"find="\b()kii+er(s)?\b"replace="$1kier$2"/>
<Typoword="academy"find="\bAcademy\b(?<=\b(?:n?|ts|new|of|same|h(?:e|is)|\w+,)\s+\w+)(?!(?:\s+(?:for|o)(?:\s+the)?)?\s+)(?<!Triple\s+A\s+\w+|\s+An\s+\w+)"replace="academy"/>
<Typoword="near/far eastern"find="\beaster\b(?<=\b(?:ar|ear)+easter\b)"replace="eastern"/><!--complements "Easter" rule-->
<Typoword="deputy director"find="\bD(e(?:puty|sign|velopment)|istrict)(?<=(?:\(|(?:|(?:+|A|Current|Former|Its|The))\s+)\w+)\s+irector(s)?(?=\s+|)(?<!\b+\s+of\s+\w+\s+\w+)"replace="d$1 director$2"/>
<Typoword="assistant director"find="\bA(cting|dministrative|rtistic|ss(?:istant|ociate)|thletic)(?<=(?:\(|(?:|(?:+|A|Current|Former|Its|The))\s+)\w+)\s+irector(s)?(?=\s+|)(?<!\b+\s+of\s+\w+\s+\w+)"replace="a$1 director$2"/>
<Typoword="managing director"find="\bM(a(?:naging|rketing)|edical|usic(?:al)?)(?<=(?:\(|(?:|(?:+|A?|Current|Former|Its|The))\s+)\w+)\s+irector(s)?(?=\s+|)(?<!\b+\s+of\s+\w+\s+\w+)"replace="m$1 director$2"/>
<Typoword="executive director"find="\bE(d(?:itorial|ucation)|ngineering|xecutive)(?<=(?:\(|(?:|(?:+|A|Current|Former|Its|The))\s+)\w+)\s+irector(s)?(?=\s+|)(?<!\b+\s+of\s+\w+\s+\w+)"replace="e$1 director$2"/>
<Typoword="department"find="\bD(epartment(?:s)?)(?<=(?:\bThe|\s+)\s++)(?=\s++\s+|)(?!\s+of\s)"replace="d$1"/>
<Typoword="co-director"find="\bCo\b(?<=(?:\b(?:+|Its|The|\w+s)\s+|,\s+|\()\w+)-irector(s)?\b(?=(?:|\s+))"replace="co-director$1"/>
<Typoword="vice-director(2)"find="\bVice\b(?<=(?:\b(?:+|Its|The|\w+s)\s+|,\s+|\()\w+)-irector(s)?\b(?=(?:|\s+))"replace="vice-director$1"/>
<Typoword="Vice-director(1)"find="\bDirector(s)?\b(?<=\b(?:o|ice)-\w+)"replace="director$1"/>
<Typoword="vice-president(2)"find="\bVice\b(?<=(?:\b(?:+|Its|The|\w+s)\s+|,\s+|\()\w+)-resident(s)?\b(?=(?:|\s+))"replace="vice-president$1"/>
<Typoword="Vice-president(1)"find="\bPresident(s)?\b(?<=\b(?:o|ice)-\w+)"replace="president$1"/>
<Typoword="co-president"find="\bCo\b(?<=(?:\b(?:+|Its|The|\w+s)\s+|,\s+|\()\w+)-resident(s)?\b(?=(?:|\s+))"replace="co-president$1"/>
<Typoword="co-founder(2)"find="\bCo\b(?<=(?:\b(?:+|Its|The|\w+s)\s+|,\s+|\()\w+)-ounder(s)?\b(?=(?:|\s+))"replace="co-founder$1"/>
<Typoword="Co-founder(1)"find="\bFounder(s)?\b(?<=\bo-\w+)"replace="founder$1"/>
<Typoword="vice-chairman(2)"find="\bVice\b(?<=\b(?:+|Its|The|\w+s)\s+\w+)-hair(mn|persons?|womn)?(?=(?:|\s+))"replace="vice-chair$1"/>
<Typoword="Vice-chairman(1)"find="\bChair(mn|persons?|womn)?\b(?<=\b(?:o|ice)-\w+)"replace="chair$1"/>
<Typoword="co-chairman"find="\bCo\b(?<=\b(?:+|Its|The|\w+s)\s+\w+)-hair(mn|persons?|womn)?(?=(?:|\s+))"replace="co-chair$1"/>
<Typoword="AM"find="\b(\d\d?(?:\s|&nbsp;)?\.?\.?)\s+in the mornings?\b"replace="$1"/>
<Typoword="PM"find="\b(\d\d?(?:\s|&nbsp;)?\.?\.?)\s+(?:at night|in the (?:afternoons?|evenings?|nights?))\b"replace="$1"/>
<Typoword="during_"find="\bdu(?:ing|r(?:i|ring)|ting)\b"replace="during"/><!--avoid uppercase Durin or Durig-->
<Typoword="During_"find="\bDu(?:ing|rring|ting)\b"replace="During"/><!--avoid surname Durig -->
<Typoword="year contract"find="\byearcontact(s)?\b"replace="year contract$1"/>
<Typoword="advisory board"find="\bAdvisory\b(?<=\b(?:+|Its|The|\w+s)\s+\w+)\s+oard(?=(?:|\s+))"replace="advisory board"/>
<Typoword="supervisory board"find="\bSupervisory\b(?<=\b(?:+|Its|The|\w+s)\s+\w+)\s+oard(?=(?:|\s+))"replace="supervisory board"/>
<Typoword="management board"find="\bManagement\b(?<=\b(?:+|Its|The|\w+s)\s+\w+)\s+oard(?=(?:|\s+))(?!\s+of\s+Cabinet)"replace="management board"/>
<Typoword="editorial board"find="\bE(ditorial|xecutive)\b(?<=\b(?:+|Its|The|\w+s)\s+\w+)\s+oard(?=(?:|\s+))"replace="e$1 board"/>
<Typoword="foreword"find="\bForeword(?<=\b(?:A|a(?:nd)?|(?:er|is)|new|he|ith|\w+)\s+\w+)(?=(?:|\s+(?:by|of|to|\w+,)\s))"replace="foreword"/>
<Typoword="executive committee"find="\bExecutive(?<=(?:\b(?:An|and?|ts|member|person|he(?:ir)?|\w+s)\s*|\()\w+)\s+ommittee(?=(?:|\s+))"replace="executive committee"/>
<Typoword="college"find="\bCollege\b(?<=\b(?:n?|ts|new|of|same|h(?:e|is)|\w+,)\s+\w+)(?!(?:\s+(?:de|for|o)(?:\s+the)?)?\s+)(?<!\s+A\s+\w+)"replace="college"/><!--avoid College de France-->
<Typoword="university"find="\bUniversity\b(?<=\b(?:n?|ts|new|of|same|h(?:e|is)|\w+,)\s+\w+)(?!(?:\s+(?:at|for|o)(?:\s+the)?)?\s+)(?<!\s+A\s+\w+)"replace="university"/>
<Typoword="captain"find="\bCaptain(?<=\s(?:as?\s+\w+|its\s+\w+|to\s+\w+))(?=(?:)|\s+(?:and\s|in\s|–\s))"replace="captain"/>
<Typoword="chair of the board"find="\bhair(mn|persons?|womn)?(?<=(?:(?:\b+|\b\w+s|)\s+|\()\w+)\s+f\s+he\s+oard(?=(?:|\s+(?:a(?:nd|t)|by|during|f(?:or|rom)|n|since|until|with)\s))"replace="chair$1 of the board"/>
<Typoword="chief executive/experimental officer"find="\bChief(?<=(?:\s+|)\s+\w+)\s+(ntertainment|quipment|thics|x(?:ecutive|perimental))\s+fficer\b"replace="chief e$1 officer"/>
<Typoword="chairman"find="\bChair(mn|persons?|womn)?\b(?<=(?:(?:\bAs|The|\s+|)\s+|\()\w+)(?=(?:\s+of\s+the(?:\s+dvisory)?\s+oard\b|\s+(?:a(?:fter|nd|t)|b(?:etween|y)|during|f(?:or|rom)|i|on|since|to|until|w(?:as|ith))\s|)|\s++|\s+n\s|\s+of\s+the\s+|(?:\s++){3,}|s\s+)"replace="chair$1"/>
<Typoword="board of trustees"find="\bBoard(?<=\b(?:|ts|new|he|\w+s)\s+\w+)\s+of\s+rustees(?=(?:|\s+(?:a(?:nd|t)|c(?:haired|o(?:mposed|nsisting))|elected|for|i|made|t(?:hat|o)|w(?:as|h(?:ich|o))|with|–)\s))"replace="board of trustees"/>
<Typoword="board of directors"find="\bBoard(?<=\b(?:|ts|new|he|\w+s)\s+\w+)\s+of\s+(e(?:acons|legates)|irectors)(?=(?:|\s+(?:a(?:nd|t)|c(?:haired|o(?:mposed|nsisting))|elected|for|i|made|t(?:hat|o)|w(?:as|h(?:ich|o)|ith)|–)\s))"replace="board of d$1"/>
<Typoword="bias"find="\b()iais\b"replace="$1ias"/>
<Typoword="omit"find="\b()mmi(?=t)t?(s|t(?:ed|ing))\b"replace="$1mit$2"/>
<Typoword="Publishers Weekly"find="\bPublisher(?:s|s)? Weekly\b"replace="Publishers Weekly"/>
<Typoword="km²"find="\b(+)(?:\s*|\&nbsp;)km\^2\b"replace="$1&nbsp;km<sup>2</sup>"/>
<Typoword="mixed fractions with hyphen"find="\b(\d)+1/()+(?=(?:d(?:ay|ecade)|hour|inch|m(?:i(?:le|nute)|onth)|pound|store?y|ton|week|year)\b)"replace="{{frac|$1|1|$2}}-"/>
<Typoword="mixed fractions, no hyphen"find="\b(\d)+1/()+(?=(?:d(?:ays|ecades)|hours|inche?s|m(?:i(?:l(?:es|lennia)|nutes)|onths)|pounds|stor(?:ey|ie)s|tons|weeks|years)\b)"replace="{{frac|$1|1|$2}} "/>
<Typoword="wood-frame"find="\b(imber|ood)+frame(d)?(?=\s+(?:a(?:ddition|ircraft)|buildings?|c(?:abins?|hurche?s?|o(?:nstruction|ttages?|urthouse))|ell|factory|ga(?:bled|rage)|ho(?:mes?|tels?|uses?)|metal|s(?:chool(?:houses?|s?)|heds?|tructures?)|tower|vernacular)\b)"replace="$1-frame$2"/>
<Typoword="Ciudad"find="\b()uidad\b(?<!Fabrice\s+Cuidad)"replace="$1iudad"/>
<Typoword="United States"find="\bn(?:i(?:e|te?)|te)\s*t(?:a(?:e|te?)|te)\b(?<!United States)"replace="United States"/>
<Typoword="-ality"find="\b(*)aili?t(?<!railt)(ies|y)\b"replace="$1alit$2"/>
<Typoword="Between YYYY-YY"find="\b(etween)\s+(\d\d)(\d\d)(\d\d)\b(?!\s+and\b)(?!\s+to\b)(?!,\d)(?!-)"replace="$1 $2$3 and $2$4"/>
<Typoword="Between YYYY-Y"find="\b(etween)\s+(\d\d\d)(\d)(\d)\b(?!\s+and\b)(?!\s+to\b)(?!,\d)(?!-)"replace="$1 $2$3 and $2$4"/>
<Typoword="From YYYY-YY"find="\b(rom)(?<!ompilation\s+from)\s+(\d\d)(\d\d)(\d\d)\b(?!\s+(?:onwards?|t(?:hrough|il|o)|until)\b)(?!,\d)(?!-)"replace="$1 $2$3 to $2$4"/>
<Typoword="From YYYY-Y"find="\b(rom)\s+(\d\d\d)(\d)(\d)\b(?!\s+(?:onwards?|t(?:hrough|il|o)|until)\b)(?!,\d)(?!-)"replace="$1 $2$3 to $2$4"/>
<Typoword="Between 0 and 1"find="\b(etween)\s+(\d+*\d)(\d+*\d)\b(?!\s+and\b)(?!\s+to\b)(?!-)"replace="$1 $2 and $3"/>
<Typoword="From 0 to 1"find="\b(rom)(?<!ompilation\s+from)\s+(\d+*\d)(\d+*\d)\b(?!\s+(?:onwards?|t(?:hrough|il|o)|until)\b)(?!-)"replace="$1 $2 to $3"/>
<Typoword="Ad hoc"find="\b()dhoc\b"replace="$1d hoc"/>
<Typoword="lower-case h"find="\bH(o(?:spital|tel))(?<=\b(?:ts|h(?:e|is))\s+\w+)(?=(?:|s\s|\s+|\s+(?:a(?:fter|lso|n(?:d\s++\s++)?|re|)|b(?:ecame|u(?:ilding|rned)|y)|c(?:an|losed|omplex)|f(?:or|rom)|grounds|ha|n\s++|i(?:ncluding|s)|manager|o(?:ffers|n|pened)|provides|receive|site|to|until|w(?:as|ere|he(?:n|re))|w(?:hi(?:ch|le)|i(?:ll|th)))\b))(?!\s+for(?:\s(?:an?\b|the\b))?\s+)"replace="h$1"/>
<Typoword="squared"find="\b(ft|in|m|mi?|yd)²"replace="$1<sup>2</sup>"/>
<Typoword="cellar"find="\bceller(s)?\b"replace="cellar$1"/>
<Typoword="Qualified"find="\b(isq||eq|nq)ual(?:fie|ife)(|rs?)\b"replace="$1ualifie$2"/>
<Typoword="Possibilities"find="\b()os+ibilites\b"replace="$1ossibilities"/>
<Typoword="Born"find="\b()orned\b"replace="$1orn"/>
<Typoword="lower-case c"find="\bC(athedral|ent(?:er|re)|hapel|ity|lub|o(?:llege|m(?:mi(?:ssion|ttee)|pany)|n(?:sulate|vention)|rporation|un(?:cil|ty)))(?<=\b(?:ts|h(?:e|is))\s+\w+)(?=(?:|s\s|\s+|\s+(?:a(?:cquired|fter|lso|n(?:d\s++\s++|nounced)?|re|s?)|b(?:e(?:fore|gan)|ut|y)|c(?:an|o(?:nducts|uld)|urrently)|during|established|f(?:or|rom)|h(?:a|osts)|is?|launched|ma(?:de|intains)|now|o(?:ffers|n\s++|perates|r)|receive|s(?:hould|upports)|t(?:he|o)|until|w(?:as|ere|hile|i(?:ll|th)|o(?:rks|uld)))\b))(?!\s+(?:for|o)(?:\s(?:an?\b|the\b))?\s+)"replace="c$1"/>
<Typoword="the institute"find="\bInstitute(?<=\bhe\s+\w+)(?=(?:|'s\s|\s+\(|\s+(?:a(?:fter|lso)|before|c(?:onducts|urrently)|during|from|h(?:as|osts)|is?|maintains|o(?:ffers|n\s++|perates)|supports|to|w(?:as|i(?:ll|th)|orks))\b))"replace="institute"/>><!--removed unused capture-->
<Typoword="COVID-19"find="\b(?:ovid?|OVID)19\b"replace="COVID-19"/>
<Typoword="TikTok"find="\bTik(?:t|\s+)ok\b"replace="TikTok"/>
<Typoword="Cutting-edge"find="\b()utting+edge\b(?=\s+(?:art(?:ists)?|contemporary|de(?:sign|velopments)|e(?:lectronic|quipment)|features|lifestyle|m(?:aterials|edical|ilitary|usic)|pro(?:duction|grams)|research|scien(?:ce|tific)|techn(?:iques|olog(?:i(?:cal|es)|y))|w(?:eapons|ork))\b)"replace="$1utting-edge"/>
<Typoword="full-length"find="\bfull(?<=\b(?:|f(?:i(?:fth|rst)|ourth)|only|second|third)\s+\w+)\s+length\b"replace="full-length"/>
<Typoword="Cruiserweight"find="\b()rusi?erw(?:ei|ie)ght(s)?\b"replace="$1ruiserweight$2"/>
<Typoword="Véhicule Press"find="\bVehicule\s+Press\b"replace="Véhicule Press"/>
<Typoword="vice president"find="\bV(ice)\b(?<=\s+(?:a(?:cting|ppointed|s?)|be(?:en|c(?:ame|om(?:e|ing)))?|Democratic|elected|for(?:mer)?|h(?:er|i)|i(?:ncumbent|s|ts)|n(?:amed|ew)|Republican|s(?:erving|itting)|t(?:heir|o)|U\.?S\.?|was|\w+'s)\s+\w+)(?<!+\s+for\s+\w+)(+)(residen(?:cy|t(?:ial|sial)?))(?=(?:|\s++))(?!\s+of\s)"replace="v$1$2p$3"/>
<Typoword="president"find="\bP(residen(?:cy|t(?:ial|sial)?))(?<=\s(?:a(?:cting|ppointed|s)|be(?:en|c(?:ame|om(?:e|ing)))?|Democratic|elected|for(?:mer)?|h(?:er|i)|i(?:ncumbent|s|ts)|n(?:amed|ew)|Republican|s(?:erving|itting)|t(?:heir|o)|U\.?S\.?|was|\w+'s)\s+\w+)(?<!+\s+for\s+\w+)(?=(?:|\s++))(?!\s+of\s)(?!\s+and\s+Vice+President\s+of\s)"replace="p$1"/>
<Typoword="case-by-case"find="\bcase+by+case(?=\s+(?:basis\b|analysis\b))"replace="case-by-case"/>
<Typoword="Upper-level"find="\b(igher|ower|iddle|econd|(?:hird|op)|pper)\s+(level|tier)(?=\s+(?:c(?:irculation|lass(?:es)?)|c(?:lubs?|o(?:mpetition|nditions?|urses?))|directors?|e(?:ducation|nvironment)|f(?:loors?|ootball)|houses?|jet|l(?:eagues?|ows?)|manage(?:ment|rs?)|outflow|platforms?|r(?:idges?|ooms?)|s(?:chools?|eat(?:ing|s?)|hear)|s(?:ide|tudents?)|t(?:eams?|ours?|roughs?)|verandahs?|wind(?:ows?|s?))\b)"replace="$1-$2"/>
<Typoword="Long-distance"find="\b(ong|iddle|hort)\s+distance(?=\s+(?:a(?:ccess|ir|(?:pplications?|t(?:hletes?|tacks?)))|b(?:ackpacking|ird|us(?:es)?)|business(?:es)?|ca(?:ll(?:ing|s?)|r(?:ds?|riers?))|cha(?:mpionship|rges?)|c(?:ircuits?|o(?:ach(?:es)?|llaborations?))|comm(?:erc(?:e|ial)|u(?:nications?|ters?))|co(?:mp(?:an(?:ies|y)|etition)|nnections?)|c(?:ontacts?|r(?:oss|uising)|ustomers?)|cycl(?:es?|i(?:ng|st))|d(?:ata|estinations?|i(?:al|spersal))|d(?:ivision|riving|uathlon)|e(?:ffects?|lectric|ndurance|quipment)|e(?:vents?|x(?:changes?|press))|f(?:ib(?:er|re)|l(?:ights?|ying))|foot(?:paths?)?|f(?:ormations?|re(?:estyle|ight))|goals?|h(?:aulage|i(?:gh(?:ways?)?|jackings?))|h(?:ik(?:ers?|ing)|orse)|in(?:frastructure|ter(?:actions?|city))|journeys?|l(?:earning|ines?|oves?)|mar(?:athon|kets?)|m(?:erchant|igra(?:nts?|tions?)|otorcycles?)|mo(?:torcycling|untain|vements?)|n(?:avigation(?:al)?|etworks?|ight|umbers?)|o(?:cean|perat(?:ions?|ors?)|verland)|p(?:a(?:ssengers?|t(?:hs?|rols?))|hone|laces?|ower)|pr(?:efix(?:es)?|o(?:pagation|viders?))|public|rac(?:es?|ing)|ra(?:dio|il(?:ways?)?|tes?)|re(?:cords?|l(?:a(?:tionships?|y)|ocations?))|r(?:evenues?|id(?:er|ing)|oads?)|ro(?:mances?|utes?)|ru(?:n(?:(?:ners?)?|ning|s))|s(?:ailing|e(?:ed|rvices?)|hippers?)|sh(?:ipping|o(?:oting|rtwave|ts?))|s(?:ignaling|p(?:ace|eed)|tations?)|s(?:trike|urface|wimm(?:ers?|ing))|s(?:witch(?:es)?|ystems?)|tele(?:communications?|graphs?|phon(?:es?|y))|to(?:lls?|ur)|t(?:ouring|ra(?:cks?|de(?:rs?)?))|tra(?:ding|ffic|i(?:ls?|ning))|tra(?:ins?|ns(?:it|missions?|portation))|tra(?:nsports?|vel(?:ers?|ing|lers?))|tr(?:avel(?:ling|s?)|i(?:athlons?|ps?))|tru(?:ks?)|uses?|v(?:iews?|o(?:ice|yages?))|walk(?:ers?|ing|s?|way)|w(?:ireless|o(?:men|r(?:k|ld))))\b)"replace="$1-distance"/>
<Typoword="side by side"find="\bsideby+side(?=|,?\s+(?:a(?:cross|gainst|long|nd|)|b(?:e(?:hind|tween)|y)|d(?:own|uring)|f(?:or|rom)|in(?:(?:stead)?|to)|just|o(?:n|ver)|t(?:h(?:e|rough(?:out)?)|o)|un(?:der|til)|w(?:h(?:en|ile)|ith(?:in)?))\b)"replace="side by side"/>
<Typoword="Long-term"find="\b(ong(?:er)?|hort)?\s+term(?=\s+(?:a(?:ffairs?|greements?|ims?|lliances?)|a(?:mbitions?|ppointments?|s(?:pirations?|sociations?))|b(?:asis|oyfriends?|usiness)|care(?:ers?)?|c(?:harters?|o(?:llaborat(?:ions?|ors?)|mmitments?|ntracts?))|de(?:als?|clines?|velopments?)|e(?:conomic|ngagements?)|f(?:inancial|riends?|uture)|g(?:irlfriends?|oals?)|h(?:ealth|orizons?)|illness(?:es)?|i(?:mpacts?|n(?:flows?|jur(?:ies|y)))|investments?|knee|l(?:eases?|o(?:ans?|ve))|m(?:em(?:bers?|or(?:ies|y))|issions?)|objectives?|p(?:artner(?:s(?:hips?)?)?|er(?:iods?|spectives?))|p(?:lans?|r(?:esence|o(?:blems?|cess)))|pro(?:cesses|grams?|jects?)|re(?:cording|ductions?|lationships?|placements?|s(?:earch|idents?|toration))|s(?:olutions?|ponsors?|t(?:orage|rategic))|st(?:rateg(?:ies|y)|ud(?:ies|y))|su(?:ccess|pp(?:l(?:ies|y)|ort))|su(?:pporters?|stainable)|tre(?:atments?|nds?)|vi(?:ews?|sion))\b)"replace="$1-term"/>
<Typoword="time-consuming"find="\btime\s+consuming(?=(?:|\s+(?:activit(?:ies|y)|a(?:nd|s(?:pects?)?)|b(?:ecause|ut)|compared|d(?:rive|ue)|effort|for|i(?:f|n(?:vestigations?)?)|jobs?|m(?:anual|ethods?)|nature|o(?:perations?|r)|p(?:art|r(?:actice|oce(?:dures?|ss)))|pro(?:cesses|jects?)|r(?:esearch|outes?)|s(?:earch|o|teps?)|t(?:asks?|echniques?|ha|o)|w(?:ays?|hen|ork))\b))"replace="time-consuming"/>
<Typoword="Corps of Engineers"find="\bCorp\s+of\s+Engineers\b"replace="Corps of Engineers"/>
<Typoword="0–0–0"find="\b(\d+)(?<=(?:\s|\()\d+)(\d+)(\d+)(?=\s+(?:as|career|lead|ma(?:jority|rk)|overall|(?:(?:conference|playoff|regular(?:\-|\s+)season)\s+)?record|result|((?:regular|undefeated)\s+)?seasons?|series|vote)(?:))"replace="$1–$2–$3"/><!-- hyphen to en dash to cover ties, abstentions, third parties -->
<Typoword="2–1–1"find="\b(\d+)(?<=(?:\s|\()\d+)(?<!(?:§|\b(?:\.?R\.?S\.?|Article|case|Code|IC|number|Order|(?:UB|ub(?:lication|\.)?)|ec(?:tion|\.)))+)(\d+)(\d+)(?=(?:|\s*?(?:\n|\<br)))(?<!\b(?:(?:1|20)\d\d-\d\d-\d\d|9-1-1|\d{3}-\d{3}-\d{4}|\d{5}-\d{5}-\d{1,4}))"replace="$1–$2–$3"/>
<!--"0–0" added January 2020 ]-->
<Typoword="0–0"find="\b(\d+)(?<=(?:\s|\()\d+)(\d+)(?=\s+(?:a(?:cademic|dvantage|fter|gainst|s|t|way)|b(?:e(?:ating|fore|hind)|lowout|y)|c(?:areer|omeback)|d(?:e(?:adlock|feats?)|own|raw)|(halftime\s+)?deficit|edge|final|game|home|in|(?:halftime\s+)?lead|(?:road\s+)?loss|ma(?:jority|rgin|rk)|o(?:n|ver(?:all|time)?)|\(OT\)|(?:(?:conference|playoff|regular(?:\-|\s+)season)\s+)?record|r(?:esult|out|un)|sc(?:hool\s+year|ore(?:line)?)|((?:regular|undefeated)\s+)?seasons?|s(?:eries|h(?:ootout|utout)|plit|quads?|t(?:alemate|art)|weep)|t(?:eams?|erm|hrashing|ie|o|riumph)|up(?:set)?|v(?:ictor?|ote)|(?:(?:aggregate|road)\s+)?win(?:ners?)?|with(?:in)?)(?:\b|\))|\r?\n(?:\r?\n|\*|==|''))(?<!(?:§|\b(?:A(?:tco|TCO)|Columbia|Dot|Epic|xecutive\s+rder|ISO|aws?|RCA|er(?:ial|\.)(?:\s+o\.)?|s/:?|U\.?S\.?))\s+\d+\d+)(?<!\b7\d7-\d+)(?!(?<=1-2)\s+result)"replace="$1–$2"/><!-- avoid "1-2 result" in auto racing articles -->
<Typoword="2–1"find="\b(\d+)(?<=(?:\s|\()\d+)(\d+)(?=(?:|\s*?(?:\n|\<br)))(?<!(?:§|\b(?:ANSI(?:/VITA)?|A(?:cc\.\s+o\.|STM\s++|tco|TCO|tlantic\s+Records)|Boeing|C(?:GCG|olumbia)|D(?:ash|ocket|ot)|Epic|xecutive\s+rder|F(?:IPS|M|ield\sManual)|I(?:C|EC|NCITS|RAS|SN:?|SO(?:/IEC)?|ssue|tem)|aws?|L(?:OC|CCC?N)|(?:GC|odel)|N(?:ACA|\.?:?)|(?:GC|umber:?)|#:?|Order|P(?:art|K|L|N\s*G)|(?:UB|ub(?:lication|\.)?)|RCA?|unway|S(?:ection||/:?)|er(?:ial(?:led)?|\.)(?:\s+o\.)?|s/:?|U\.?S\.?|VITA|ol(?:\.|ume)?|Widow))\s+\d+\d+)(?<!\b(?:\d(?:\d|\d\d\d)|\1\1\b|7\d7-\d+|\d{5}\d{4}))"replace="$1–$2"/>
<Typoword="north–south"find="\borth(?<=(?:,|\b(?:+|The))\s+\w+)(east|west)?outh(east|west)?\b(?!\s+)"replace="north$1–south$2"/>
<Typoword="south–north"find="\bouth(?<=(?:,|\b(?:+|The))\s+\w+)(east|west)?orth(east|west)?\b(?!\s+)"replace="south$1–north$2"/>
<Typoword="east–west"find="\bast(?<=(?:,|\b(?:+|The))\s+\w+)-est\b(?!\s+)"replace="east–west"/>
<Typoword="west–east"find="\best(?<=(?:,|\b(?:+|The))\s+\w+)-ast\b(?!\s+)"replace="west–east"/>
<Typoword="north–south"find="\b(orth(?:east|west)?)(outh(?:east|west)?)(?=\s+(?:a(?:lignment|venue|xis)|bo(?:rder|undary)|corridor|di(?:rection|stance|vi(?:de|sion))|ex(?:pressway|ten(?:sion|t))|highway|interstate|l(?:ength|in)|m(?:ain|ountain)|orientation|portion|quadrant|r(?:ail(?:way)?|idge|oad)|r(?:oute|un(?:ning|way))|s(?:e(?:ction|gment)|treet)|tra(?:de|ffic))s?\b)"replace="$1–s$2"/>
<Typoword="south–north"find="\b(outh(?:east|west)?)(orth(?:east|west)?)(?=\s+(?:a(?:lignment|venue|xis)|bo(?:rder|undary)|corridor|di(?:rection|stance|vi(?:de|sion))|ex(?:pressway|ten(?:sion|t))|highway|interstate|l(?:ength|in)|m(?:ain|ountain)|orientation|portion|quadrant|r(?:ail(?:way)?|idge|oad)|r(?:oute|un(?:ning|way))|s(?:e(?:ction|gment)|treet)|tra(?:de|ffic))s?\b)"replace="$1–n$2"/>
<Typoword="east–west"find="\b(ast)(est)(?=\s+(?:a(?:lignment|venue|xis)|bo(?:rder|undary)|corridor|di(?:rection|stance|vi(?:de|sion))|ex(?:pressway|ten(?:sion|t))|highway|interstate|l(?:ength|in)|m(?:ain|ountain)|orientation|portion|quadrant|r(?:ail(?:way)?|idge|oad)|r(?:oute|un(?:ning|way))|s(?:e(?:ction|gment)|treet)|tra(?:de|ffic))s?\b)"replace="$1–w$2"/>
<Typoword="west–east"find="\b(est)(ast)(?=\s+(?:a(?:lignment|venue|xis)|bo(?:rder|undary)|corridor|di(?:rection|stance|vi(?:de|sion))|ex(?:pressway|ten(?:sion|t))|highway|interstate|l(?:ength|in)|m(?:ain|ountain)|orientation|portion|quadrant|r(?:ail(?:way)?|idge|oad)|r(?:oute|un(?:ning|way))|s(?:e(?:ction|gment)|treet)|tra(?:de|ffic))s?\b)"replace="$1–e$2"/>
<Typoword="Acoustic"find="\b(|lectroa|hotoa)custic(al|s?)\b"replace="$1coustic$2"/>
<Typoword="Evening"find="\b()ening\b"replace="$1vening"/>
<!--"A to An" added September 2012 ]-->
<Typoword="A to An"find="\b(?<=|\A)()(?<=a|(?:\s\s?\s?|\A)A)\s\s?((?:(?!\b|2\b|A??|b(?:ogado|rirse)|c(?:a(?:demiei|o)|ceptat?a?|estei|ordo|quis)|ddaswyd|ED|FN|f(?:ace|ecta)|j(?:outé|uns)|l(?:ba\b|calde|do\b|guien\b|ma)|LL|m(?:basadei|érica)|MD|(?:\b|amnese|\b|daluc|G|ihila|tiga|ului)|OA|p(?:a(?:gar\b|recer\b)|ostar\b|robat\b)|quest|r(?:der\b|enys\b|matei\b|quitectura|te(?:\b|lor\b))|R|s(?:\b|souvi)|t(?:\b|ahualpa\b|enuar|hair|lântida|riz|teint)|U|us(?:iàs|triei\b)|v(?:ançar|enida|ut\b)|WG|ZN)|(?!\b|cologia|di(?:ção|l\b|tora\b)|gipto|GP|l(?:a\b|itei\b|las\b)|m(?:a\b|b(?:ajadora|oîté)|igracja|pezar\b)|n(?:core\sdu|ergia|f(?:lamm|rentar)|ga(?:gé|ñar)|loquecer|sear|tend(?:erse|u)\b|tra(?:da|n|r\b)|tre(?:na(?:dor|r))?|voyé)|qui(?:librista|p)|RN|s(?:as?\b|c(?:aa|ola|u(?:char|ela|ltura|ridão))|fera|p(?:a(?:ldas|)|erança))|st(?:a(?:\b|ciones|dos|r\b)|é|e(?:\b|ban)|o(?:\b|s\b)|ra(?:da|tia)|r(?:éa|e(?:a|llar)|uc?tura)|udia)|TB\b|t(?:é|e(?:rna)?)?\b|(?:{2}|\sde\b)|u\b|U|v(?:acuar|r(?:eilor|op))|w|x(?:ist(?:ncia)?|p(?:ansão|erincia|osição|ressão))|xtranj)|h(?:aut|eir|o(?:rs\sd|ur(?:\b||ly)))|(?!\b|a(?:ij|i)|DR\b|greja|??|l(?:\sraen\b|egal|ha\b)|LS|m(?:age\b|igração|magini\b)|n(?:\b|ceput|dia?s\b|d(?:icação|ro\b|úst)|és|f(?:luência|ormační)|glat|icios|nei\b|quisição|s(?:t(?:ancias|itucí)|ulté)|t(?:e(?:gra(?:nte|rse)|ligência|r(?:preta|ven)o)|imidade|ra\b)|v(?:asão|e(?:nté|stit)))|NR\b|QD\b|R(?:£|R\b)|s(?:\b|chia\b|la\b|te\b)|SK|ts?\b|u(?:bit(?:\b|-o\b)|d(?:ex\b|ice\b)|re\b)|\b|V(?:th|\b)|XC?\b|)|M(?:D\b|VP\b)|(?!\b|ax|b(?:a\b|čan|chodní|ra|tenu|ţi|yv)|c(?:cidente|h(?:o|rany)|upat)|d(?:\b|eet\b)|este|f(?:\b|erecer)|ggi|hniv|ito\b|kole?\b|l(?:ot\b|še\b|vidarte)|mnisciê|MR\b|nda\b|(?:\s||(?!g(?:\b|a\b|es|in)|i(?:da|)|rous))|O\b|opa|p(?:éra|erador\b)|ra?\b|(?:\b|a(?:ului|z\b)|chestr\b|d(?:em|inii)|fu\b|i(?:\b|lla))|S-9\b|s(?:asuna|curas|o(?:bnosti|na))|t(?:r\b|tobre)|u(?:\b|a|ed|i|tro)|v(?:elha|iedo))|u(?!\b||a(?:dim|h\b|in\b)|b|d(?:ev\b|raw\b)|fo|g(?:a(?:li|nd)|x\b)|i(?:le\b|n|ro|tat\b)|jam|l(?:ak|u)|m(?:a\b|\b|ění\b|r(?:ia|l))|n(?:(?:\s|a(?:ni|ry|s\b|\b|te\b))|d\b|e(?:\b|i\b|sco)|o?\b|s\b|uib?)|ni(?!d(?:|io)|gn|ll|m(?:ag||p)|n(?:au||eb||i|oc|)|r(?:ad||on))|omo|p(?:azilas?|risin\b)|r|s|s(?:b(?:net)?|d)\b|s\$|s(?:hape|t(?:ream|ed(?:es)?\b))|t(?:|r(?:anga|ic))||yu\b|zs\b))\<\⌊\>\{\}\s]{0,29})(?<=\b(?:){1,49}(?<!\b(?:(?:baten|c(?:ceso|o(?:mpañando|sa)|t)|cusa|d(?:herits|is|misión|vanced)|eroporto|gus|menazan||n(?:\b|dalucía|fibio|s\b)|prendiendo|şa|spirante|t(?:acó|ención)|u(?:menta|r|sf(?:\.|ührung)|torov)|xudar|y(?:údame|ud(?:ar|dó)))|(?:a(?:rça|rokiem|ttery)|enefician|ílé|usca(?:ndo)?)|(?:a(?:bellera|lle|mino|ntan?\b|r(?:retera|tas?))|a(?:sar|tegory\:?)|e(?:n(?:sura|trală)|rcano)?|h(?:ama|lorophyll|romogranin?)|iclista|íny|lass|o\.|om(?:ienzan|p(?:any|o(?:sition|und)|r(?:ó|ometido))|unicações)?|o(?:n(?:certo|firma|oció|trat|vocatoria)|sta)|u(?:arto|m)|yclosporine)|(?:|a(?:lla)?|e(?:dicada||nuncian|recho|seó|tienen|s(?:apareceu|p(?:edida|iden))|voción)||i(?:gas|le|recto|vision)|o(?:jmy|uble)|urante)|(?:\b|cusa|insatzgruppe|jecutan?|l(?:e|le)|mpecé|n(?:frenta(?:rá)?|señ(?:ame|)|t(?:onces|re(?:\b|gó|vista)))?|s(:quivel|t)?|t|x(?:itos|tradita(?:do)?))|(?:a(?:cilitar|z)|e(?:menina|rmato)|i(?:ammanti|chó)|ormula|rente|u(?:|sil|tbol))|(?:a(?:rcía|lega)|enerală|lorie|olpe|r(?:ade|oup)|uerra)|(?:istorických|o(?:mena(?:gem|je|tge)|usle))|(?:\b|l\b|n(?:formații|na|te(?:gran|r(?:preta|vista)))|n(?:trodu(?:cción|zione)|vita(?:ción)?)|storie|terum)|(?:r|un(?:g|ior|to))|(?:lavír|r(?:ál|tek)|u(?:ltúry|řátko))|(?:abe|e\b|ékaři|ewis|i(?:gada|pid|st)|íderes|iniers|le(?:ga(?:n?|r?)|va(?:n|sen))|u(?:i|xe))|(?:a(?:nu|ría|s|tar)|hic\b|\.I|nima\b|iedo|o(?:del|n(?:te|umento)|roanu)|o(?:u(?:lin|nd)|vid)|u(?:lt|sgos))|(?:bsp|ei|iegan|ônibus|o(?:mbrar|tícia|us))|(?:kina\}\}|cchio|lza|maggio|noare|riente|sob\b|t(?:ázky|ec\b)|u\b)|(?:a(?:r|s(?:ado|sou?))|e(?:ntru|r(?:ò|petua)|se)|i(?:etro|ù)|lan|o(?:int|nte)|r(?:o|ólogo|e(?:ludio|senta))|rmyslu|ublicat|\.)|(?:\sand|u(?:ando|))|(?:apó|e(?:c(?:ibe|ordando|usa)|ferencias|gião|i|torno)|isale|o(?:i|mână|zšířené))|şi\b|(?:a(?:be|lve\b|tisface)|e(?:ason|cuestran|ine)|r(?:á|ie|vir)|i(?:c\s?(?:\|)?|de|ngle)|o(?:b(?:re)?|ciální|u)|p(?:ortivă|rijin)|t(?:avební|yky)|u(?:b(?:ida|unit|(?:-)unit)|ma|p(?:le|plemento)|rt|stituye)|)|(?:arda|áxi|he|o(?:da|or(?:no|turan))|r(?:azendo|en|i(?:buto|ple))|ype)|(?:hlie|n)|(?:a(?:da|?|mos?|riant|yas)|e(?:che|n(?:ce?|d|g|t))|e(?:ta|z)|ě(?:du?|rný)|i(?:agem|llena|ol(?:on?cello|u))|i(?:tamin|va(?:ce)?)|ojsko|ol(?:a(?:mos|r)|ta|v(?:amos|er(?:|emos|te)?)|v(?:í|i(:?endo)?))|oy|uel(?:\b|t\b|vs?\b))|hnau|\b|(?:eit|ivoty))\W?\s?\s?\s?\s?\2))"replace="$1n $2"/><!--'A to An' correction, ] document. Occurring often.-->
<Typoword="Allegiance"find="\b()ll+g+nce\b(?<!llegiance)"replace="$1llegiance"/><!--avoid self-->
<Typoword="Pardoned"find="\b()ardonn(ed|ing|s)\b"replace="$1ardon$2"/>
<Typoword="Betrothed"find="\b()ethroted\b"replace="$1etrothed"/>
<Typoword="Serviceable"find="\b()ervicable\b"replace="$1erviceable"/><!--see also rule "Service"-->
<Typoword="Register"find="\b()egistr(ed|ing|s?)\b"replace="$1egister$2"/>
<Typoword="Ousted"find="\b()uts(ed|ing(?<!could\s+outsing))\b"replace="$1ust$2"/><!--check FPs before adding outs -> oust-->
<Typoword="Soprano"find="\b()porano(s)?\b"replace="$1oprano$2"/>
<Typoword="Guilty"find="\b()ulity\b"replace="$1uilty"/>
<Typoword="Voyage"find="\b()o(?:age|yae)(s)?\b"replace="$1oyage$2"/>
<Typoword="Signed"find="\b()igend\b"replace="$1igned"/>
<Typoword="Predominantly"find="\b()redom?nntly\b(?<!redominantly)"replace="$1redominantly"/><!--see also rule "Predominately"-->
<Typoword="Teaches/ing/s"find="\b()ech(es|ings?)\b"replace="$1each$2"/>
<Typoword="(|tr)illion (2)"find="((?:Rs\.\s?|)+(?:\s|&nbsp;)+(?:|tr))illions\b"replace="$1illion"/>
<Typoword="Receive"find="\b()ec(?:e|ie?)v(ed?|ing)\b"replace="$1eceiv$2"/>
<Typoword="Veil"find="\b(n|)eill(ed|ing)?\b"replace="$1eil$2"/>
<Typoword="Double euros"find="(€+(?: illion| t(?:housand|rillion))?)(?: |&nbsp;)euros?\b"replace="$1"/>
<Typodisabled="space before EOL"find=" $"replace=""/>
<Typodisabled="duplicated space"find=" "replace=" "/>
<Typoword="A to An (2)"find="\b(?<!\.\,\:\-\&\—\>\/])a\s+((?:a(?:|n)|e|i|o)\w+|MVP)(?<!about|enterar|es(?:cala|t\b))\b"replace="an $1"/><!--avoid "a about", "a escala", "a esta", "a esté", etc.-->
<Typoword="about"find="\ba\s+about\b"replace="about"/>
<Typoword="world's"find="\b()he\s+worlds\b(?=\s+(?:\w+est|first|most|top)\b)"replace="$1he world's"/>
<Typoword="nn-pounder"find="\b(\d+)\s+pounder(s)?\b"replace="$1-pounder$2"/>
<Typoword="takeoff"find="\btake\s+off\b(?<=\b(a(?:fter|t)|before|during|its|on)\s+take\s+off)"replace="takeoff"/>
<Typoword="(re)district"find="\b(|ed)isrict(ed|ing|s?)\b"replace="$1istrict$2"/>
<Typoword="United Kingdom"find="\b()nited\s+()ingdon(s)?\b"replace="$1nited $2ingdom$3"/>
<Typoword="younger"find="\b()onger(?=\s+(?:rothers?\b|isters?\b))"replace="$1ounger"/>
<Typoword="drug addiction"find="\b()rug\s+()dd+ition(s)?\b"replace="$1rug $2ddiction$3"/>
<Typoword="deep-seated"find="\b()eep()eed\b"replace="$1eep-$2eated"/>
<Typoword="box office"find="\bboxoffice(?=)"replace="box office"/>
<Typoword="Prerequisite"find="\b()rerequiste(s)?\b"replace="$1rerequisite$2"/>
<Typoword="Launch"find="\b()anuch(e|ing)?\b"replace="$1aunch$2"/>
<Typoword="Hybrid"find="\b()ybrd(s)?\b"replace="$1ybrid$2"/>
<Typoword="Fragrance"find="\b()ragance(s)?\b"replace="$1ragrance$2"/>
<Typoword="Construct"find="\b()onstrcut(ed|ion|s?)\b"replace="$1onstruct$2"/>
<Typoword="Charity"find="\b()hai?rty\b"replace="$1harity"/>
<Typoword="Asylum"find="\b()ssylum(s)?\b"replace="$1sylum$2"/>
<Typoword="Black-body radiation"find="\b()lackbody\b(?=\s+radiation\b)"replace="$1lack-body"/>
<Typoword="_Meantime"find="\b()n\s+the\s+mean+time\b(?!\s+(?:be(?:fore|tween)|of))"replace="$1n the meantime"/><!--avoid MTBF, etc.-->
<Typoword="Prisoner"find="\b()risonner(s)?\b"replace="$1risoner$2"/>
<Typoword="Elsewhere"find="\b()lswhere\b"replace="$1lsewhere"/>
<Typoword="Editor"find="\b()dior(ials?|s?)\b"replace="$1ditor$2"/>
<Typoword="Cycling"find="\b()yling\b"replace="$1ycling"/>
<Typoword="boutique_"find="\bbotu?ique(s)?\b"replace="boutique$1"/><!--avoid proper name Botique-->
<Typoword="Scoring"find="\b()ocring\b"replace="$1coring"/>
<Typoword="albino"find="\b()blin(al|i(?:c|s(?:ms?|tic))|o(?:s?|tic))\b"replace="$1lbin$2"/>
<Typoword="Facilit(ate/y)"find="\b()aciit(ates?|ies|y)\b"replace="$1acilit$2"/>
<Typoword="spirit_"find="\bspirt(s|ual(?:i(?:sm|ty))?)?\b"replace="spirit$1"/><!--avoid proper name Spirt-->
<Typoword="album_"find="\babl?um(s)?\b"replace="album$1"/><!--avoid proper name Abum-->
<Typoword="Lawyer"find="\b()aywer(s)?\b"replace="$1awyer$2"/>
<Typoword="Finish"find="\b()insh(e(?:|rs?)|ing)?\b"replace="$1inish$2"/>
<Typoword="(Re)Habilitate"find="\b(|eh)abiliat(e?|ion)\b"replace="$1abilitat$2"/>
<Typoword="Apparatus"find="\b()ppartus(es)?\b"replace="$1pparatus$2"/>
<Typoword="Lyric"find="\b()yic(s)?\b"replace="$1yric$2"/>
<Typoword="Degree"find="\b()egee('s|s?)\b"replace="$1egree$2"/>
<Typoword="-ball (2)"find="\b(asket|annon|oot|and|volley)bal(s)?\b"replace="$1ball$2"/><!--avoid Volleybal (Dutch); see also: rule "-ball"-->
<Typoword="gallery_"find="\bgaler(ies|y)\b(?!\s+ationales)"replace="galler$1"/><!--avoid proper name Galeries & galeries nationales-->
<Typoword="Profile"find="\b()rofli?e()?\b"replace="$1rofile$2"/>
<Typoword="Facility/Facilitates"find="\b()acilti?(ates?|ies|y)\b"replace="$1acilit$2"/>
<Typoword="(up)holding"find="\b(h|ph)elding\b"replace="$1olding"/>
<Typoword="United States'"find="\bnited\s+tates\b"replace="United States'"/>
<Typoword="US$ (1)"find="\bUS(?:\s+(?:D\$?|\$)|D\$?|\$)(?<=(?:\b+\s+|\s*)US+)(?:\s+(?:&nbsp;\s*)?|&nbsp;\s*)?\$?(?<!US\$)(?=\d)"replace="US$"/>
<Typoword="US$ (2)"find="()\$?\s?((?:\d+(?:\.\d+)?|(?:\d+,)+\d{3}(?:\.\d\d)?))((?:\s|&nbsp;)+(?:illion|(?:housand|rillion))\b)?(?<!(?:1\d\d|20\d\d))(?<!\d\s+\d+)(?:\s|&nbsp;)*US\b"replace="$1US$$$2$3"/>
<Typoword="Unduly"find="\b()nduely\b"replace="$1nduly"/>
<Typoword="Frankish"find="rani?ksh(?<!18238 Franksh)"replace="Frankish"/><!--avoid minor planet 18238 Frankshu-->
<Typoword="the US"find="\bthe\s+U\.?S\.?A\.?(?<!Church\s+in\s+the\s+U\.?S\.?A\.?|Girl\s+Scouts\s+of\s+the\s+USA)(?=(?:,|\s+(?:a(?:fter|nd|)|by|f(?:or|rom)|in|to|w(?:hen|ith))\s))(?!\s+for\s+Africa)"replace="the US"/>
<Typoword="hard-fought"find="\b(A|a(?:nd)?|of|he(?:ir)?|very|was)\s+hard+(fought|won)\b(?!\s+for\b)"replace="$1 hard-$2"/>
<Typoword="Child-bearing_"find="\b()hild+bearing(?=\s+(?:age\b|women\b|years\b))"replace="$1hild-bearing"/>
<Typoword="Publicly"find="\b()ublic(?:all?|call?)?y\b"replace="$1ublicly"/>
<Typoword="long-held_"find="\b(|(?:er|is)|ts|he(?:ir)?)\s+long+held\b(?=\s+(?:a(?:mbition|ssumption)|belief|consensus|d(?:e(?:bate|sire)|ream)|f(?:a(?:mily|scination)|ear)|goal|i(?:dea?|nterest)|myth|notion|opinion|p(?:erception|o(?:lic(?:ies|y)|sition)|ractice)|rivalr(?:ies|y)|secret|t(?:heor(?:ies|y)|r(?:adition|uth))|v(?:alue|i(?:ew|sion))|wish))"replace="$1 long-held"/>
<Typoword="Decommissioned"find="\b()e(commission(?:ed|ing|s?)|pressuri(?:ation|e?|ing))\b"replace="$1e$2"/>
<Typoword="Bowser Jr."find="\bBowser\. r(\.)?\b"replace="Bowser Jr$1"/>
<Typoword="Pokémon: Let's Go, Pikachu! and Let's Go, Eevee! colon"find="\bPokmon\s+Let?s\s+Go\b"replace="Pokémon: Let's Go"/>
<Typoword="rating"find="\brating\b"replace="rating"/>
<Typoword="Assessor"find="\b()s(?:es|se)sr(s)?\b"replace="$1ssessor$2"/>
<Typoword="who/they were (grammar)"find="\b(hey|ho)\s+where\b"replace="$1 were"/>
<Typoword="Phenomenon (singular)"find="\bphenomena\b(?<=\bhis\s+\w+)"replace="phenomenon"/>
<Typoword="a part (not apart) of"find="(?<=\s+(?:a(?:re|s)|As|be(?:c(?:ame|om(?:e|ing))|en|ing)|is|not|to\s+be|w(?:as|ere))(?:\s+(?:al(?:l|so)|now))?\s+)\bapart\s+of\b"replace="a part of"/>
<Typoword="Heavily"find="\b()eavilly"replace="$1eavily "/>
<Typoword="Reschedule"find="\b()e-schedul(e?|ing)\b"replace="$1eschedul$2"/>
<Typoword="late 2016"find="\b(early|late)(?<=\b(?:y|uring|rom|n|of|to|ntil)\s++-)(\d{3})(?=)"replace="$1 $2"/>
<Typoword="(Dis)integrate"find="\b(isi|)nt(?:er|i)gr?at(e?|i(?:ng|on))\b"replace="$1ntegrat$2"/>
<Typoword="September 2016"find="\b(?:the\s+)?(A(?:pril|ugust)|December|February|J(?:anuary|u(?:ly|ne))|Ma(?:rch|y)|November|October|September)\s+of\s+(\d{3})\b"replace="$1 $2"/>
<Typoword="High-profile"find="\b(?=igh)(?<!(?:ecause\s+of\s+(?:h(?:er|is)|its|their)|(?:achiev(?:e?|ing)|creat(?:e?|ing)|d(?:evelop(?:ed|ing|s?)|isplay(?:ed|ing|s?))|ha(?:s|ve)|ke(?:ep(?:ing|s?)|pt)|maintain(?:ed|ing|s?)|retain(?:ed|ing|s?)|with)\s+a)\s+)()igh(?<!+\s+High|specified\s+High|the\s+High)\s+profile\b(?!,|\s+(?:a(?:nd|s)|during|for|in|of|to)\b)"replace="$1igh-profile"/>
<Typoword="Mezzo-soprano"find="\b()ezzo\s*soprano(s)?\b"replace="$1ezzo-soprano$2"/>
<Typoword="Oversize(d)"find="\b(ver|nder)+size(d)?\b"replace="$1size$2"/>
<Typoword="First half_"find="\b(irst|econd)-half(?=\s+(?:a(?:nd|s)|for|in|of|to|was)\b)"replace="$1 half"/>
<Typoword="Constituency"find="\b()onsistuenc(ies|y)\b"replace="$1onstituenc$2"/>
<Typoword="Hurricane-force_"find="\b(ale|urricane)\s+force(?=\s+(?:gusts?|storms?|wind(?:s(?:peeds?)?)?)\b)"replace="$1-force"/>
<Typoword="Billboard"find="\b()il(?:bo(?:ar|ra?)|lb(?:aor|o(?:a|ra?)))d(s)?\b"replace="$1illboard$2"/>
<Typoword="Open-air_"find="\bopen\s+air(?<=\bn\s+open\s+air)(?=\s+(?:a(?:mphitheat(?:er|re)|ren?a|uditorium)|bath|c(?:hurch|inema|ourtyard)|d(?:ance|isplay)|exhibition|festival|m(?:a(?:ll|rket|ss)|eeting|usic)|p(?:avilion|erformance|ool|roduction)|restaurant|s(?:ervice|hopping|ite|t(?:a(?:dium|ge)|ructure)|wimming)|theat(?:er|re)|venue))"replace="open-air"/>
<Typoword="Low-lying_"find="\b()ow\s+lying(?=\s+(?:area|c(?:loud|oastal)|f(?:ield|lat)|ground|hill|island|land|nature|p(?:art|lains?)|region))"replace="$1ow-lying"/>
<Typoword="Performance-enhancing_"find="\b()erformance\s+enhancing(?=\s+(?:drugs?|effects?|s(?:teroids?|ubstances?)))"replace="$1erformance-enhancing"/>
<Typoword="made-for-TV"find="\bmade\s+for\s+(T(?:elevision|V)|t(?:elevision|v))\s+(film|movie)\b"replace="made-for-$1 $2"/>
<Typoword="Grammy Award"find="\bgrammy\s+ward(s)?\b"replace="Grammy Award$1"/>
<Typoword="Relay"find="\b4(?:\s+(?:x\s?|×)|\s?)(00|15?00)\s*m\b"replace="{{nowrap|4 × $1 m}}"/>
<Typoword="Multimillion-dollar"find="\b()ulti*(|tr)illion+(dollar|euro|pound)\b(?<!ulti(?:illion-+|trillion-+))"replace="$1ulti$2illion-$3"/><!--neg lookbehind removable-->
<Typoword="nth-minute something"find="\b(\d+(?:d|st|th)|e(?:ight(?:eenth|h|ieth)|leventh)|f(?:i(?:ft(?:eenth|h|ieth)|rst)|o(?:rtieth|urt(?:eenth|h)))|hundredth|nint(?:eenth|h|ieth)|s(?:e(?:cond|vent(?:eenth|h|ieth))|ixt(?:eenth|h|ieth))|t(?:enth|h(?:ir(?:d|t(?:eenth|ieth))|ousandth)|we(?:lfth|ntieth)))\b\s+minute(?=\s+(?:equali(?:er)|goal|header|lead|opener|penalty|s(?:trike|ubstitute)|winner))(?!\s+leading)"replace="$1-minute"/>
<Typoword="led_"find="\blead(?=\s+to\s)(?<=(?:Th(?:at|is)| th(?:at|is)|, this)\s+lead)"replace="led"/>
<Typoword="Offshoot"find="\b()ff+shoot(s)?\b"replace="$1ffshoot$2"/>
<Typoword="Swapp(ed/ing)"find="\b()wap(ed|ing)\b"replace="$1wapp$2"/>
<Typoword="Encompass"find="\b()(?:mcom|nco)pass(e|ing)?\b"replace="$1ncompass$2"/>
<Typoword="first-come, first-served"find="\b()irstcome,?+firstserve\b"replace="$1irst-come, first-served"/>
<Typoword="present-day_"find="\b(modern|present)+day\b(?=\s)(?<=\b(?:|y|(?:n|ts)|ear|of|heir|with)\s+(?:modern|present)\s+day)"replace="$1-day"/>
<Typoword="Swordplay"find="\b()word+play\b(?<!\band+word+play)"replace="$1wordplay"/><!--neg lookbehind removable-->
<Typoword="Sword fight"find="\b()word+fight(*)\b"replace="$1word fight$2"/>
<Typoword="bachelor's degree_"find="\bat?chelor?s??\s+egree(s)?\b(?<=\s+a+\s+egrees?)(?<!bachelor's\s+degrees?)"replace="bachelor's degree$1"/><!--neg lookbehind removable-->
<Typoword="master's degree"find="\baster?s??\s+egree(s)?\b(?<=\s+a+\s+egrees?)(?<!master's\s+degrees?)"replace="master's degree$1"/><!--neg lookbehind removable-->
<Typoword="(|tr)illion"find="\b(\d+(?:\s|&nbsp;)+(?:|tr))illions\s+(albums|copies|dollars|uros?|p(?:eople|ounds)|records|ton(?:ne)?s|vi(?:ew(?:er)?s|sitors)|years)\b"replace="$1illion $2"/>
<Typoword="In comparison,_"find="\bIn\s+comparison(?=\s)(?!\s+(?:studies\b|to\b|with\b))"replace="In comparison,"/>
<Typoword="incredible"find="\bincre?dbl()\b"replace="incredibl$1"/>
<Typoword="shown_"find="\bshowed\b(?<=\b(?:are|be(?:en)?|is|w(?:as|ere))\s+showed)"replace="shown"/>
<Typoword="bachelor's and master's degrees"find="\bbachelor?s?\s+and\s+master?s?\s+degree(s)?\b"replace="bachelor's and master's degree$1"/>
<Typoword="Furthermore,"find="\b(Accordingly|Consequently|Even\s+so|F(?:or\s+example|urthermore)|In(?:deed|\s+other\s+words)|M(?:eanwhile(?!\s+Gardens)|oreover)|N(?:ever|one)theless|On\s+the\s+other\s+hand|Therefore|Subsequently(?!\s+(?:+ed|known|rebuilt|told)))(?!\s+\|)?(?=\s+]+\b)"replace="$1,"/>
<Typoword="As a result,"find="\bAs\s+a\s+result(?=\s)(?!\s+of\b)"replace="As a result,"/>
<Typoword="However,"find="\bHowever\s+(?=(?:a(?:ccording|fter|s)|b(?:e(?:caus|for)e|y)|d(?:espite|u(?:e|ring))|f(?:or|rom)|i|later|not|on(?:ly)?|s(?:ince|ometimes)|there|w(?:hen|ith))\b)"replace="However, "/>
<Typoword="Commercially"find="\b()ommerciall?y-(?<!+-\w+-)(?=+(?:ble\b|ed\b|ful\b))(?!+-)"replace="$1ommercially "/>
<Typoword="Snow-covered"find="\b(ce|(?:lush|now))\s+c(app|over)ed(?=|\s+(?:area|bluff|cape|except|f(?:ield|orest)|ground|h(?:eadland|i(?:ghway|ll))|island|landscape|mountain|p(?:e(?:ak|ninsula)|lateau|oint)|r(?:idge|o(?:ad|ck)|unway)|s(?:add+le|lope)|terrain|water)s?\b)"replace="$1-c$2ed"/>
<Typoword="Locally"find="\b()ocall?y-(?=+ed\b)(?!+-)"replace="$1ocally "/>
<Typoword="Anytown-based"find="\b(+)\s+based\b(?<=\b(?:n?|b(?:etween|y)|f(?:or|rom)|h(?:er|is)|o(?:f|ther)|t(?:he|o)|The|with)\s++,?(?:\s++)?\s+based)(?!\s+(?:a(?:long|?|round)|+'s?|h(?:er|is)|i(?:n|ts)|largely|most(?:ly)?|o(?:n|ut\sof)|partially|the(?:ir)?|upon)\b)"replace="$1-based"/>
<Typoword="Milli- SI prefix"find="\b()ili?(amperes?|candelas?|grams?|kelvins?|lit(?:er?|re?)s?|m(?:et(?:es?|re?)s?|oles?)|seconds?)\b"replace="$1illi$2"/>
<Typoword="one of"find="\ba\s+one\b(?<=\s+a\s+one)(?=\s+of\b)(?!\s+of\s+a\s+kind)"replace="one"/>
<Typoword="n-year-old"find="\b(\d+|e(?:ight(?:een|y?)|leven)|f(?:i(?:ft(?:een|y)|ve)|o(?:rty|ur(?:teen)?))|hundred|nine(?:t(?:een|y))?|one|s(?:even|ix)(?:t(?:een|y))?|t(?:en|h(?:irt(?:een|y)|ousand|ree)|w(?:e(?:lve|nty)|o)))(?:\s+year(?:\s+|-)|-year\s+)ld\s+(b(?:oys?|r(?:idge|others?)|uilding)|c(?:h(?:ild(?:ren)?|urch)|o(?:llege|mpany))|d(?:aughter|esign)|f(?:a(?:cility|rmhouse|ther)|emales?)|g(?:irls?|rand(?:daughter|father|mother|son))|h(?:igh\s+school|ouse)|institution|la(?:ndmark|w)|m(?:a(?:les?|n(?:sion)?)|en|iddle\s+school|other)|p(?:atient|erson)|record|s(?:chool|elf|isters?|on|t(?:ructures?|udents?))|t(?:heat(?:ers?|res?)|r(?:adition|ees?))|wo(?:mn|rld\s+record))\b"replace="$1-year-old $2"/>
<Typoword="Soft-spoken"find="\b()oft\s+(boiled|edged|hea(?:d|rt)ed|nosed|spoken)"replace="$1oft-$2"/>
<Typoword="All-time"find="\b()ll\s+time(?=\s+(?:American\s+League|a(?:ppearance|ssists|ttendance|verage)|b(?:est|iggest|lockbuster)|c(?:areer|l(?:assic|ub))|f(?:a(?:mous|vou?rite)|ranchise)|great(?:est|s?)|hi(?:gh(?:est)?|ts?)|l(?:ea(?:d(?:ers?|ing)?|gue)|ist|ow)|Major|m(?:aximum|ost|usic)|N(?:ational\s+League|CAA|FL)|opening|p(?:eak|o(?:ints|pular))|r(?:ec(?:eiving|ord)|ushing)|s(?:a(?:ck|ves)|coring|eries|ingle)|t(?:able|o(?:p|tal))|Top|w(?:in(?:ningest|s)|or(?:ld|st)))\b)"replace="$1ll-time"/>
<Typoword="nth-place something"find="\b(\d+(?:d|st|th)|e(?:ight(?:eenth|h|ieth)|leventh)|f(?:i(?:ft(?:eenth|h|ieth)|rst)|o(?:rtieth|urt(?:eenth|h)))|hundredth|nint(?:eenth|h|ieth)|s(?:e(?:cond|vent(?:eenth|h|ieth))|ixt(?:eenth|h|ieth))|t(?:enth|h(?:ir(?:d|t(?:eenth|ieth))|ousandth)|we(?:lfth|tieth)))\b\s+(placed?|rate)(?=\s+(?:best\s+finish|effort|finish|p(?:erformance|o(?:ints\s+finish|sition|wer))|r(?:anking|esult|un\b)|t(?:eam\s+finish|roph(?:ies|y))|victory|winner))"replace="$1-$2"/>
<Typoword="centuries-old"find="\b(centuri|decad)es\s+old\b(?<=\b(?:|he(?:ir)?)\s++\s+old)"replace="$1es-old"/>
<Typoword="A n-something"find="\b(\d+*|e(?:ight(?:een|y?)|leven)|f(?:i(?:ft(?:een|y)|ve)|o(?:rty|ur(?:teen)?))|hundred|nine(?:t(?:een|y))?|one|s(?:even|ix)(?:t(?:een|y))?|t(?:en|h(?:irt(?:een|y)|ousand|ree)|w(?:e(?:lve|nty)|o)))\b(?<=\b(?:(?:dditional|n?)|first|(?:er|is)|ts|second|th(?:eir|ird)|Their)\s++)(?:&nbsp;|\s+)(?!(?:member\s++s|stage\s+wins?)\b)(acre|bed|cylinder|d(?:ay|ecker|oor)|foot|g(?:a(?:llon|me)|oal)|h(?:o(?:le|rsepower|ur)|uman)|inch|lit(?:er|re)|m(?:an|e(?:mber|t(?:er|re))|i(?:le|nute)|onth)|ounce|p(?:a(?:ge|ssenger)|erson|o(?:int|und))|r(?:o(?:om|und)|unner)|s(?:e(?:a(?:son|t(?:er)?)|cond)|ong|t(?:age|ore?y))|ton|vote|w(?:eek|heel(?:e)?|oman)|y(?:ard|ear))(?=|-(?:deep|high|long|old|tall|wide)\b)(?!\s+(?:a(?:go|)|by|deep|for|high|i|long|o(?:f|ld)|t(?:all|here|o)|w(?:as|i(?:de|th)))\b)(?<!\b\d{4}\s+(?:game|s(?:e(?:ason|cond)|ong|t(?:age|ory))|vote))(?<!uring\s+h(?:er|is)\s+one\s+season|told\s+h(?:er|im)\s+one\s+day|send\s+for\s+h(?:er|im)\s+one\s+day)"replace="$1-$2"/><!--Note: If the n-something potentially has a year as the 'n', be sure to add the 'something' to the "(?<!\b\d{4}\s+" false-positive alternation list.-->
<Typoword="n-year"find="\b(\d+*|e(?:ight(?:een|y?)|leven)|f(?:i(?:ft(?:een|y)|ve)|o(?:rty|ur(?:teen)?))|hundred|nine(?:t(?:een|y))?|one|s(?:even|ix)(?:t(?:een|y))?|t(?:en|h(?:irt(?:een|y)|ousand|ree)|w(?:e(?:lve|nty)|o)))(?:&nbsp;|+)(month|year)\b(?<= +(?:&nbsp;+|\s++))(?=\s+(?:a(?:bsence|ffair|greement|ss(?:ignment|ociation))|b(?:a(?:n|ttle)|reak)|c(?:a(?:mpaign|reer)|ease?fire|losure|o(?:m(?:a|petition)|ntract|urse)|ruise|ycle)|d(?:e(?:a(?:dline|l)|lay|ployment)|rought|uration)|e(?:ffort|n(?:gagement|listment)|x(?:hibit(?:ion)?|i(?:le|stence)|pedition|tension))|feasibility|g(?:ap|estation|uest)|h(?:i(?:atus|story)|ospital)|i(?:llness|n(?:cumbent|jury|ternship|vestigation))|j(?:ail|ourney)|l(?:ay?off|eae|ife?span|o(?:an|ckout))|m(?:aintenance|i(?:litary|ssion)|o(?:dernization|ratorium))|notice|overhaul|p(?:artnership|eriod|lan|osting|r(?:ison|o(?:cess|fessional|gram(?:me)?|ject)))|r(?:e(?:c(?:overy|urring)|fit|gular|ign|lationship|s(?:earch|idency|tricted))|otation|un)|s(?:abbatical|cho(?:larship|ol)|e(?:ason|ntence)|iege|ojourn|p(?:an|e(?:aking|ll))|t(?:a(?:rter|y)|int|r(?:ike|uggle)|udy)|u(?:bs(?:cription|idy)|pen(?:ded|sion)))|t(?:e(?:nure|rm)|our|r(?:aining|eatment|i(?:al|p)|uce))|v(?:eteran|isit|oyage)|w(?:a(?:it(?:ing)?|r)|orkshop))\b)"replace="$1-$2"/>
<Typoword="One-night stand"find="\bone\b(?<=\b\s+one)+night+stand\b(?<!one-night\s+stand)"replace="one-night stand"/><!--neg lookbehind removable-->
<Typoword="Long-standing"find="\blong\s+standing\b(?<=\b(?:|he)\s+long\s+standing)(?!\s+(?:in\b|o(?:f\b|vation\b)))"replace="long-standing"/>
<Typoword="Stand-alone"find="\bstand\s+alone\b(?<=\b(?:|he)\s+stand\s+alone)"replace="stand-alone"/>
<Typoword="Medium-sized"find="\b()edium\s+sized\b"replace="$1edium-sized"/>
<Typoword="a while"find="\b(fter|or)\s+awhile\b"replace="$1 a while"/>
<Typoword="Ongoing"find="\b(n|he)\s+on+going\b"replace="$1 ongoing"/>
<Typoword="associate degree"find="\bssociate?s??\s+egree(s)?\b(?<=\s+s+\s+egrees?)(?<!associate\s+degrees?)"replace="associate degree$1"/><!--neg lookbehind removable-->
<Typoword="Associate degree"find="\b()ssociate?s\s+egree(s)?\b"replace="$1ssociate degree$2"/>
<Typoword="Bachelor's/Master's degree"find="\b(achelo|aste)r?s??\s+egree(s)?\b"replace="$1r's degree$2"/>
<Typoword="Feature-length"find="\b()eature\s+length(?=\s+(?:a(?:daptation|nim(?:ated|e))|comed(?:ies|y)|d(?:ocumentar(?:ies|y)|rama)|episode|film|m(?:o(?:tion|vie)|usical)|p(?:ilot|roduction)|s(?:cr(?:eenplay|ipt)|ilent|pecial)|television|TV|version)s?\b)"replace="$1eature-length"/>
<Typoword="Full-length"find="\b()ull\s+lengt?h(?=\s+(?:a(?:lbums?|nimat(?:eds?|ions?))|b(?:iograph(?:ies|y)|ooks?)|comed(?:ies|y)|CDs?|d(?:ebuts?|ocumentar(?:ies|y))|f(?:eatures?|ilms?)|LPs?|lives?|m(?:o(?:tions?|vies?)|usics?)|novels?|plays?|re(?:cord(?:ings?|s?)|leases?)|s(?:hows?|olos?|tudios?)|works?)\b)"replace="$1ull-length"/>
<Typoword="Acquisition"find="\b()c?qu(?:is(?:it?o?|tio)|sitio)n(s)?\b"replace="$1cquisition$2"/>
<Typoword="Full-scale"find="\b()ull+scale(?=\s+(?:a(?:dministrative|ssault|ttack)|battle|c(?:ampaign|ivil|o(?:nflict|unter?attack))|evacuation|in(?:surrection|v(?:asion|estigation))|m(?:ilitary|o(?:ck?up|del)|usical)|nuclear|o(?:ffensive|pera)|pro(?:duction|totype)|r(?:e(?:bellion|construction|hearsal|novation|plica(?:tion)?|vol(?:t|ution))|iot)|t(?:est|our)|version|war)s?\b)"replace="$1ull-scale"/>
<!--"Last week's episode" added November 2014 ]-->
<Typoword="Last week's episode"find="\b()ast\s+week?s? episode\b"replace="$1ast week's episode"/>
<Typoword="This week's"find="\b()his\s+weeks?\s+"replace="$1his week's "/>
<Typoword="Japan's"find="\bJapans?\s+"replace="Japan's "/>
<Typoword="Second-half substitute"find="\b()econd\s+half\s+(replacements?|substitutes?)\b"replace="$1econd-half $2"/>
<Typoword="De facto"find="\b()e?facto\b"replace="$1e facto"/>
<Typoword="Full-fledged"find="\b()ull\s+fledged\b"replace="$1ull-fledged"/>
<Typoword="Panorama"find="\b()anarm(a|ic)\b"replace="$1anoram$2"/>
<Typoword="T-shirt"find="\b(?:T(?:-+Shirt|\s+hirt)|t+hirt)(s)?\b"replace="T-shirt$1"/>
<Typoword="UTC−"find="\bUTC-(\d\d?(?::00)?)\b"replace="UTC−$1"/><!--e.g. UTC−05:00-->
<Typoword="Different"find="\b()ifferents\b(?!\s+(?:u|of)\b)"replace="$1ifferent"/><!--avoid French-->
<Typoword="Remarry"find="\b()e-marr(i(?:ages?|e)|y(?:ing)?)\b"replace="$1emarr$2"/>
<Typoword="Hand-to-hand"find="\b()and\s+to\s+hand\b(?=\s+(?:b(?:attles?|rawl(?:er|ing|s?))|co(?:mbat(?:ants?|s?)|ntacts?)|f(?:ight(?:er|ing|s?)|oreplay)|kill(?:er|ing|s?)|s(?:cuffles?|truggles?)|training|w(?:arfares?|eapons?)))"replace="$1and-to-hand"/>
<Typoword="Above-mentioned"find="\babove(?<=\bhe\s+above)\s+mentioned\b"replace="above-mentioned"/>
<Typoword="Easily"find="\b()asill?y-(?=+(?:able\b|ed\b))(?!+-)"replace="$1asily "/>
<Typoword="Smallpox"find="\b()mall+po(?:cks|x)\b"replace="$1mallpox"/>
<Typoword="Dependent upon"find="\b()ependant\s+upon\b"replace="$1ependent upon"/>
<Typoword="Right-hand man"find="\b()ight\s+hand\s+(g(?:irl|uy)|mn|person|womn)\b"replace="$1ight-hand $2"/>
<Typoword="Life-threatening"find="\b()ife\s+threatening\b"replace="$1ife-threatening"/>
<Typoword="Reassign"find="\b()e-assign(ed|ing|ments?|s?)\b"replace="$1eassign$2"/>
<Typoword="Internationally"find="\b()nternat+ionall?y-(?=+ed\b)"replace="$1nternationally "/>
<Typoword="His/Her Majesty's Stationery Office"find="\bH(\.\s?M\.?|\sM\.?|M\.?|er Majestys|is Majestys) Stationary Of+ice\b"replace="H$1 Stationery Office"/>
<Typoword="Idiosyncrasy"find="\b()diosyncrac(ies|y)\b"replace="$1diosyncras$2"/>
<Typoword="Activity"find="\b()c(?:itivit|t(?:ivt|vit))(ies|y)\b"replace="$1ctivit$2"/>
<Typoword="(Infra/Re)structure"find="\b(nfras|es|)t(?:ru(?:c(?:trur?|ut?r)|tur)|uctur)(al(?:iss?|ly)?|e?|ing)\b"replace="$1tructur$2"/>
<Typoword="॥"find="(?:\s|&nbsp;)?।।"replace="॥"/>
<Typoword="॥/।"find="(?:\s|&nbsp;)()"replace="$1"/>
<Typoword="Highly"find="\b()ighly-(?=+ed\b)"replace="$1ighly "/>
<Typoword="Day-to-day"find="\b()ay\s+to\s+day\b(?=\s+(?:a(?:ctivit|dministration|ffairs)|b(?:asis|usiness)|d(?:ecision|uties)|events?|function(?:ing|s?)|govern(?:ment)?\b|li(?:fe\b|ves\b)|ma(?:intenance|nagement)|needs|operations?|r(?:esponsibilit|outine|unning)|work(?:ings?)?\b))"replace="$1ay-to-day"/>
<Typoword="exact revenge"find="\b()xtract(ed(?:\s+h(?:er|is))?|ing(?:\s+h(?:er|is))?|s?(?:\s+h(?:er|is))?)\s+revenge\b"replace="$1xact$2 revenge"/>
<Typoword="Eyewear, Eyelash, etc."find="\b()ye(?<!-ye)(b(?:alls?|rows?)|glasses|l(?:ash(?:es)?|ids?)|sores?|w(?:ear|itness(?:es)?))\b"replace="$1ye$2"/><!--neg lookbehind removable-->
<Typoword="The number of times"find="\b()he\s+amount\s+of\s+times\b"replace="$1he number of times"/>
<Typoword="Between him and"find="\b()etween\s+he\s+and\b"replace="$1etween him and"/>
<Typoword="Between her and"find="\b()etween\s+she\s+and\b"replace="$1etween her and"/>
<Typoword="have yet"find="\bstill\s+hav(e|ing)\s+yet\b"replace="hav$1 yet"/>
<Typoword="Contribute"find="\b()onibut(e?|i(?:ng|ons?)|ors?)\b"replace="$1ontribut$2"/>
<Typoword="Elderly"find="\b()ldery\b"replace="$1lderly"/>
<Typoword="Juridical"find="\b()uridicial(ly)?\b"replace="$1uridical$2"/>
<Typoword="Brazilian jiu-jitsu"find="\bBrazil(?:lian\s+i?u?|ian\s+(?:Ji?u?|j(?:iu(?:|\s+|-J)|u?)))itu\b"replace="Brazilian jiu-jitsu"/>
<Typoword="Duty-free"find="\b()uty\s+free(?=|\s+(?:a(?:ccess|rea)|goods|i(?:mport|tem)|lunch|port|s(?:ale|ection|hop|t(?:atus|ore))|tr(?:ade|eatment)|zone))"replace="$1uty-free"/>
<Typoword="*–American War"find="\b(Mexican|Philippine|Spanish)(?:merican ar|-(?:american ar|American war))\b"replace="$1–American War"/>
<Typoword="en masse"find="\ben?mass\b"replace="en masse"/>
<Typoword="(In/Un)Dis/Extinguish"find="\b(is|x|ndis)tin?i?ui?sh?(ab*|e*|ing*|ment*)?\b(?<!tinguish*)"replace="$1tinguish$2"/><!--neg lookbehind removable-->
<Typoword="Lent"find="\b()ended\b"replace="$1ent"/>
<Typoword="Labor-intensive"find="\b()abo(u)?r\s+intensive\b"replace="$1abo$2r-intensive"/>
<Typoword="(A/S)uspicious"find="\b()uspicous(ly)?\b"replace="$1uspicious$2"/>
<Typoword="contract"find="\bsigned\s*a\s*contact\b"replace="signed a contract"/>
<Typoword="Transcribe"find="\b()ra{3,5}i(?<!anscri)(b(?:e(?:?|rs?)|ing)|pt(?:ases?|ion(?:al(?:ly)?|ists?|s?)|s?))\b"replace="$1ranscri$2"/><!--neg lookbehind removable-->
<Typoword="Currency symbol before number"find="\b(*)()(?!\d)"replace="$2$1"/><!--avoid prices in escudos and reis (escudos$centavos such as 20$00)-->
<Typodisabled="different"find="\b(any|everal)\s*different\b"replace="$1"/>
<Typoword="Pipeline"find="\b()ipline(s)?\b"replace="$1ipeline$2"/>
<Typoword="Consists"find="\bis\s+consisted\b(?=\s+of\b)"replace="consists"/>
<Typoword="Behind"find="\b()ehin(?:ed|g)\b"replace="$1ehind"/>
<Typoword="Perpetrate"find="\b()erpertrat(+)\b"replace="$1erpetrat$2"/>
<Typoword="Decades apostrophes"find="\b(1\d\d0|20\d0)?s(?<=\b(?:n?|he)\s{1,9}(?:earl(?:ier|y)|later?|mid(?:dle)?)?{0,9}(?:1\d|20)\d0?s)\s{1,9}and\s{1,9}((?:earl(?:ier|y)|later?|mid(?:dle)?)?{0,9}(?:1\d\d0|20\d0))s"replace="$1s and $2s"/>
<Typoword="Debtors' prison"find="\b()ebtor?s\s+prison\b"replace="$1ebtors' prison"/>
<Typoword="Amalgamate"find="\b()m(?:{1,3}g?ma?t(?<!malgamat)|alagat)(e?|i(?:ng|ons?))\b"replace="$1malgamat$2"/><!--neg lookbehind removable-->
<Typoword="Splinter group"find="\b()plinter-group(s)?\b"replace="$1plinter group$2"/>
<Typoword="Enterprise"find="\b()nte(?:pr|rp)ise(s)?\b"replace="$1nterprise$2"/>
<Typoword="Losing on penalties"find="\b()oosing\s+on\s+penalties\b"replace="$1osing on penalties"/>
<Typoword="Anthropology"find="\b()(?:nt(?:hr?|r)|thr?)o?p{1,3}(?<!nthropolo)g(i(?:c(?:al(?:ly)?)?|sts?)|y)\b"replace="$1nthropolog$2"/><!--neg lookbehind removable-->
<Typoword="of xxx of xxx"find="\bof\s+(+)\s+of\s+(?!(?:c(?:lasses|o(?:nsciousness|pies))|f(?:riends|unds)|lists|representations|s(?:ets|ystems)))\1\b"replace="of $1"/>
<Typoword="Manuscript"find="\b()anu?{2,4}i{1,3}(?<!nuscrip?t)(ed|s?)\b"replace="$1anuscript$2"/><!--neg lookbehind removable-->
<Typoword="Lawsuit"find="\b()awsuit(s)?\b"replace="$1awsuit$2"/>
<Typoword="Facsimile"find="\b()a+i?mili?e(?<!acsimile)(s)?\b"replace="$1acsimile$2"/><!--neg lookbehind removable-->
<Typoword="Prodigy"find="\b()rogid(al|ies|y)\b"replace="$1rodig$2"/>
<Typoword="Archnemesis"find="\b()rchnemesis\b"replace="$1rchnemesis"/>
<Typoword="Emerge from"find="\bemerge()?\s+out\s+of\b"replace="emerge$1 from"/>
<Typoword="Wreak havoc"find="\b(?:reek|wrea?ck)(ed|ing|s?)\s+havoc\b"replace="wreak$1 havoc"/>
<Typoword="Republic"find="\b()e(?:bu|pup)lic(ans?|s?)\b"replace="$1epublic$2"/>
<Typoword="Also (twice)"find="\balso\s+(are|could|is|w(?:as|ere|ould))\s+also\b"replace="$1 also"/>
<Typoword="Also (2 times)"find="\balso\s+ha(|ve)\s+also\b"replace="also ha$1"/>
<Typoword="Horse-drawn"find="\b()orse\s+drawn(?=\s+(?:b(?:oat|use?)|c(?:ar(?:riage|t)|hariot|oache?)|fire|hearse|omnibuse?|railway|s(?:leigh|treetcar)|tra(?:m(?:way)?|nsport)|vehicle|wagon)s?\b)"replace="$1orse-drawn"/>
<Typoword="Double pounds"find="(£+(?: illion| t(?:housand|rillion))?)(?: |&nbsp;)pounds?\b(?: terling\b)?"replace="$1"/>
<Typoword="Nearby"find="\bnearby\b(?<=\b(?:|n|(?:he|o))\s+nearby)"replace="nearby"/>
<Typoword="Double dollars"find="(\$+(?: illion| t(?:housand|rillion))?)(?: |&nbsp;)dollars?\b"replace="$1"/>
<Typoword="Thereafter"find="\b()h(?:er(?:aft|e(?:at?f|ft))|reaft)er\b"replace="$1hereafter"/>
<Typodisabled="Mid-"find="\b()id\s+(\d{3,4}s?)\b"replace="$1id-$2"/>
<Typoword="-leigh"find="\b(L|Ray?l|l)iegh\b"replace="$1eigh"/>
<Typoword="Executive"find="\b()x(?:c(?:ecuti|uti)|ec(?:t(?:i|ui?)|u))ve(ly|s?)\b"replace="$1xecutive$2"/>
<Typoword="Granddaughter"find="\b()ran+?au{2,4}er(?<!nddaughter)(s)?\b"replace="$1randdaughter$2"/><!--neg lookbehind removable-->
<Typoword="Monstrous"find="\b()onsteru?ous(ly)?\b"replace="$1onstrous$2"/>
<Typoword="Psychology"find="\b()(?:{2,4}{2,4}|s(?:{2,4}{2,4}|icholo))g(?<!(?:hyolog|sycholog))(i(?:cal(?:ly)?|es|sts?)|y)\b"replace="$1sycholog$2"/><!--neg lookbehind removable-->
<Typoword="called up"find="\bcalled-up(?=\s+(?:a(?:gain|)|by|during|f(?:or|rom)|in(?:to)?|on|since|to|with(?:in)?)\b)"replace="called up"/>
<Typoword="-century"find="\b(an?\s+\d\d?(?:d|st|th))\s+century\b"replace="$1-century"/>
<Typoword="Labyrinth"find="\b()ab+th(?<!byrinth)(*)\b"replace="$1abyrinth$2"/><!--neg lookbehind removable-->
<Typoword="Psychedelic"find="\b()sychadelic(s)?\b"replace="$1sychedelic$2"/>
<Typoword="Pharmacy"find="\b()h?a(?:m*|r(?:am|*))?c(?<!harmac)(eutic+|i(?:es|sts?)|o(?:log(?:i+|y)|p+l?|thera+)|y)\b(?<!Parcopa\b)"replace="$1harmac$2"/><!--avoid Parcopa-->
<Typoword="(Pro/Re/Intro)duce"find="\b(ntro|ro|e)duct(e?|ing)\b"replace="$1duc$2"/>
<Typoword="Sovereign"find="\b()ove?r*+i?(iss?|s?|t(?:iss?|y))\b(?<!vereign(?:iss?|s?|t(?:iss?|y)))"replace="$1overeign$2"/><!--neg lookbehind removable-->
<Typoword="(Re/E)volution"find="\b(|e)v{3,9}n+(?<!Ev(?:ilution|oluon)|Rev(?:illon|unions)|volution)(ar(?:ies|y)|ize?|s?)\b"replace="$1volution$2"/><!--avoid self & proper nouns--><!--neg lookbehind removable-->
<Typoword="Underground"find="\b()nd(?:e(?:groun|rg(?:oun|ro))|rgroun)d\b"replace="$1nderground"/>
<Typoword="Elementary"find="\b()lem(?:e(?:n(?:ar|t(?:er|ra?))|tn?ar)|ntar)y\b"replace="$1lementary"/>
<Typoword="Agriculture"find="\b()(?:g(?:g+i?r?|i(?:r?)?|r?)|r(?:gr?i|i))c+(?:u(?:l(?:l*ur|t(?:r|+ur|r(?:ur)?|ur?)|utr)|t*ur)|lu?tur)(?<!gricultur)(al(?:is(?:m|ts?)|ly)?|es?|is(?:m|ts?))\b"replace="$1gricultur$2"/><!--neg lookbehind removable-->
<Typoword="Major"find="\b()ajour(ity)?\b"replace="$1ajor$2"/>
<Typoword="Subsequent"find="\b()ub?p?*q{2,5}(?:(l)e?(y))?(?<!Su(?:quet|sques?)|ubsequentl?y?)\b"replace="$1ubsequent$2$3"/><!--avoid self, Suquet & Susque/s--><!--neg lookbehind removable-->
<Typoword="Finance"find="\b()ia?n(?:a(?:n?n?)?|ian?n?)?c(e?|i(?:al(?:ly|s?)|ng))(?<!i(?:ance|nanc(?:e?|i(?:al(?:ly|s?)|ng))))\b"replace="$1inanc$2"/><!--neg lookbehind removable-->
<Typoword="Financial"find="\b()inan(?:acial|ca(?:il|l)|ic?al)(ly)?\b"replace="$1inancial$2"/><!--20230202-->
<Typoword="Previously"find="\b()rei?v(?:iou|s*)e?l+e?y(?<!reviously)\b"replace="$1reviously"/><!--neg lookbehind removable-->
<Typoword="Simultaneous"find="\b()im(?:l(?:at|t?)|t)(?<!imt)(?:a(?:n(?:e(?:{0,6}s|ou)|{0,7}s)|{1,8}s)|{2,9}s)(?:e?(l)e?(y))?(?<!imul(?:a(?:nts|t(?:es|ions))|taneities)|m(?:ilanus|ultaneous(?:ly)?))\b"replace="$1imultaneous$2$3"/><!--neg lookbehind removable-->
<Typoword="Presidency"find="\b(r|)esident?ship\b"replace="$1esidency"/>
<Typoword="I.B. Tauris"find="\bI\.?\s*B\.?\s+Taurus\b"replace="I.B. Tauris"/>
<Typoword="Dolphin"find="\b()ophin(s)?\b"replace="$1olphin$2"/>
<Typoword="Missionary"find="\b()issionair(ies|y)\b"replace="$1issionar$2"/>
<Typoword="Alongside"find="\b()lon(?:g(?:is?|-si|\s+si)|si)de(?: with)?\b"replace="$1longside"/>
<Typoword="Prospective"find="\b()erspective\s+(applicants?|buyers?|clients?|employes?|s(?:ellers?|tudents?))\b"replace="$1rospective $2"/>
<Typoword="Outstanding"find="\b()u(?:st|tst?)a(?:d|nd?)(?<!utstand)ing(ly)?\b"replace="$1utstanding$2"/><!--neg lookbehind removable-->
<Typoword="Therapeutic"find="\b(ont||nt)heraputic(al(?:ly)?)?\b"replace="$1herapeutic$2"/>
<Typoword="Buccaneer"find="\b()uc(?:an+|c+ann)e+r(s)?\b"replace="$1uccaneer$2"/>
<Typoword="Parameter"find="\b()arama?ter(*)\b"replace="$1arameter$2"/>
<Typoword="Athletic"find="\b()theltic(s)?\b"replace="$1thletic$2"/>
<Typoword="Bombardier"find="\b()ombadier(s)?\b"replace="$1ombardier$2"/>
<Typoword="Mountainous"find="\b()ounta(?:ine|ne?)ous\b"replace="$1ountainous"/>
<Typoword="Return/Revert"find="\b()e(turn(?:ed|ing|s?|\s+it)|vert(?:ed|ing|s?|\s+it))\s+back\b"replace="$1e$2"/>
<Typoword="Billiard"find="\b()illard(s)?\b(?<!\b(?:+ (?:\. )?Billard|de Billard))"replace="$1illiard$2"/><!--avoid names; consider restricting rule to lowercase "billard"-->
<Typoword="Tariff"find="\b()arr+if+(s)?\b"replace="$1ariff$2"/>
<Typoword="(M/P)atriarch"find="\b()atriach(a(?:l(?:ism)?|te)|i(?:c|es|ss?)|)?\b"replace="$1atriarch$2"/>
<Typoword="Digital"find="\b()igi(?:ti)?al(ly)?\b"replace="$1igital$2"/>
<Typoword="En route"find="\b()n?route(?=(?:|\s+(?:back|f(?:or|rom)|home|in|t(?:hrough|o)|via)\b))"replace="$1n route"/><!--avoid ] etc; avoid "Sailing directions (enroute)"; avoid ]/beacon/frequency/controller/etc.-->
<Typoword="Up-and-coming"find="\b()p\s+and(?<=\b(?:n|(?:er|is)|ts|he(?:ir)?)\s+up\s+and)\s+coming\b"replace="$1p-and-coming"/>
<Typoword="Ex-"find="\b()x\s?(boyfriends?|girlfriends?|husbands?|partners?|wi(?:fe|ves))\b"replace="$1x-$2"/>
<Typoword="Sculpt(ure/or)"find="\b()cl?u{2,4}(?<!cu(?:l(?:l|pt)|ttl?))(ed|ing|ors?|s?|ur(?:al(?:ly)?|e?))(?<!cultur)\b"replace="$1culpt$2"/><!--avoid Scuttls, scuttle, scull, sculture/a (Spanish)-->
<Typoword="Synthesi(s/z)e"find="\b()(?:nth?|th)(?<!ynth)esi((?:e(?:?|rs?)|ing)|s)\b"replace="$1ynthesi$2"/><!--neg lookbehind removable-->
<Typoword="Wide range"find="\bwide-range(?= of\b)"replace="wide range"/>
<Typoword="In the"find="\b()(?:n\s+the|nt\s+he)\b"replace="$1n the"/>
<Typoword="(North/South/East/West)ernmost"find="\b(ast|orth|outh|est)er(?:n)?most(?=\s+(?:district|end|of|p(?:art|o(?:int|rtion))|tip)\b)"replace="$1ernmost"/>
<Typoword="Northernmost"find="\bNor(?<=\bhe\s+Nor)thernmost\b"replace="northernmost"/>
<Typoword="Southernmost"find="\bSou(?<=\bhe\s+Sou)thernmost\b"replace="southernmost"/>
<Typoword="Easternmost"find="\bEas(?<=\bhe\s+Eas)ternmost\b"replace="easternmost"/>
<Typoword="Westernmost"find="\bWes(?<=\bhe\s+Wes)ternmost\b"replace="westernmost"/>
<Typoword="Select"find="\b()(?:el|le)ct(able|ed|i(?:ng|ons?|ve(?:ly)?)|men|ors?|s?)\b"replace="$1elect$2"/>
<Typoword="Unbeknownst"find="\b()nbe(?:know|nown?)st\b"replace="$1nbeknownst"/>
<Typoword="Suspense"find="\b()u(?:ps?|sp)en(?<!uspens)(e|i(?:ons?|ve)|ory)\b"replace="$1uspens$2"/><!--neg lookbehind removable-->
<Typoword="Phospho-"find="\b()ho(?!spohor\b)(?:pho|spoh?o?)(?!n)(+)\b"replace="$1hospho$2"/>
<Typoword="Acknowledge"find="\b()(?:kc?n?o(?:lw?e?|wl?e?)(?:d(?:eg|g?)|gd?)|ck(?:o(?:lw?e?|wl?e?)(?:d(?:eg|g?)|gd?)|no(?:lw?e?(?:d(?:eg|g?)|gd?)|w(?:l(?:e(?:d(?:eg)?|gd?)|d(?:eg|g?)|gd?)|e?(?:d(?:eg|g?)|gd?)))))(able|e(?:able|?|ments?)|ing|ments?)\b"replace="$1cknowledg$2"/><!--updated 5/27/2022 to remove lookbehind -->
<Typoword="Collision"find="\b()ol+i?s+i?on(?<!collision|Col(?:lisi?on|son))(s)?\b"replace="$1ollision$2"/><!--neg lookbehind removable-->
<Typoword="Declare"find="\b()e(?:cl?|lc?)(?<!ecla)r(ations?|e?|ing)(?<!ecares?)\b"replace="$1eclar$2"/>
<Typoword="Approach"find="\b()p(?:or(?:ao?|oa?)|p(?:o(?:a|r(?:ao?|oa?))|r(?:ao?|oa?))|r(?:ao?|oa?))ch(?<!pproach)(e|ing)?\b"replace="$1pproach$2"/><!--avoid "Approaches"-->
<Typoword="Counter-"find="\bcounter(attack(?:ed|ing|s?)|p(?:arts?|oints?))(?<!counter(?:-|–)attac{1,99})\b"replace="counter$1"/><!--avoid counter-attack with two dash versions-->
<Typoword="Reflect"find="\b()efele?ct(?!oq)(*)\b"replace="$1eflect$2"/>
<Typoword="Technology"find="\b()ech(?:n(?:alo|ol)|o(?:lo|no?lo?))g(i(?:es|c(?:al(?:ly)?)?|ss?|zed?)|y)\b"replace="$1echnolog$2"/>
<Typoword="Synonym"find="\b()yno++(?<!ynonym)(*)(?<!ynomones?)\b"replace="$1ynonym$2"/>
<Typoword="Business"find="\b()ui?s+i?n+i?e+s+({0,99})(?<!Busnes|usiness{0,99})\b"replace="$1usiness$2"/><!--Fuzzy rule, extends & completely replaces existing rule of the same name-->
<Typoword="Subsidiary"find="\b()ubi?si?a?d+(?:ra)?r(?<!bsidiar)(i(?:es|ty)|y)\b"replace="$1ubsidiar$2"/><!--extends & completely replaces "Subsidiary"-->
<Typoword="Inaugurate"find="\b()n+a?g+??r+?(?<!naugur)a(l|t(?:e?|i(?:ng|ons?)))\b"replace="$1naugura$2"/><!--Fuzzy rule, extends & completely replaces existing rule of the same name-->
<Typoword="Interview"find="\b()n(?:er|t(?:er?|r))(?:iew|v(?:ew|ie?w))(?<!nterview)(e(?:d|s?)|ing|s?)\b"replace="$1nterview$2"/>
<Typoword="(Un)Successful"find="\b(|ns)u+c+e+s+?f?f?u+(l+)(?<!uccessful{1,9})(y)?\b"replace="$1uccessfu$2$3"/><!--Fuzzy rule, extends & completely replaces existing rule "(Un)Successful"-->
<Typoword="Research"find="\b()ea?s(?:a(?:r?ch?|r?ch?)|e(?:a(?:ch|r?ch?)|r?ch?|r?ch?)|i(?:r?ch?|r?ch?)|r?ch?|u(?:r?ch?|r?ch?))(?<!es(?:earch|ura?c))(e(?:|rs?)|ing)?\b"replace="$1esearch$2"/><!--Fuzzy rule, extends & completely replaces existing rule "Research"-->
<Typoword="(Dis/Re)Organi(s/z)ation"find="\b(iso||eo)r?g??n??()??ti?(?<!rganiati)on(al(?:ly)?|s?)\b"replace="$1rgani$2ation$3"/><!--Fuzzy rule, extends & completely replaces existing rule "Organization"-->
<!-- edits from  -->
<Typoword="Individual* (1)"find="\b()n?d??v??d?????l(?<!nd(?:avl|evel))(?!e|l(?:e|os))?(?<!ndividul)({0,99})"replace="$1ndividual$2"/><!--Fuzzy rule to supplement existing "Individual" rule-->
<Typoword="Each other's"find="\beach\s+others?\s+"replace="each other's "/>
<Typoword="Owing to"find="\b()wning\s+to\b"replace="$1wing to"/>
<Typoword="(In|Re)volve_"find="\b(n|e)vovlv?(e(?:?|ments?)|ing|rs?)\b"replace="$1volv$2"/>
<Typoword="Spokes-"find="\b()poke(mn|pe(?:ople|rsons?)|womn)\b"replace="$1pokes$2"/>
<Typoword="Decade apostrophe"find="\b(1\d\d0|20\d0)s(?<=\b(?:n?|he)\s{1,9}(?:earl(?:ier|y)|later?|mid(?:dle)?)?{0,9}(?:1\d|20)\d0s)"replace="$1s"/>
<Typoword="Agency"find="\b()geng(ies|y)\b"replace="$1genc$2"/>
<Typoword="Adapted/ing"find="\b()dapat(ed|ing)\b"replace="$1dapt$2"/>
<Typoword="Approximately (expansion)"find="\bapprox(?<=located\s+approx|situated\s+approx)\.?(?=\s)"replace="approximately"/><!--unlikely to be in small spaces-->
<Typoword="Approx."find="\b()p(?:p|ro)x\.?(?=)"replace="$1pprox."/>
<Typoword="Elegiac"find="\b()ll?egaic\b"replace="$1legiac"/>
<Typoword=" ,"find="\s+,(?<=\s+,)\s?"replace=", "/><!--change space before comma to space after comma, for eventual move to punctuation section-->
<Typoword=",,"find="\s?,\s?\s?,\s?"replace=", "/><!--fixes double commas-->
<Typoword="n00"find="\b(\d\d?00)undred(s)?(?!\s+euro|euro)\b"replace="$1$2"/><!--fix "400 hundred men", "in the 1600 hundreds"-->
<Typoword="Wrongdoing"find="\b()rongdoing(s)?\b"replace="$1rongdoing$2"/>
<Typoword="Arch(a)eology"find="\b()rche?(a)?{1,6}go?(?<!rcholog|ha?eolog)(y|i(?:cal(?:ly)?|sts?))\b"replace="$1rch$2eolog$3"/><!--avoid self & archology-->
<Typoword="Psychiatry"find="\b()sch?(?:ai?|i)tr(*)\b(?<!Psycatron)"replace="$1sychiatr$2"/><!--avoid Psycatron-->
<Typoword="Fare(s) well"find="\bfair(s)?\s+(better|poorly|so\s+well|well)\b"replace="fare$1 $2"/>
<Typoword="Far(ed|ing) well"find="\bfair(ed|ing)\s+(as\s+well|better|poorly|so\s+well|well)\b"replace="far$1 $2"/>
<Typoword="(Pre/Re/Un)Format"find="\b(|ref|ef|nf)omat(?!\s+artin|artin)(t?(?:a(?:ble|nks?)|e(?:d?|rs?)|i(?:ngs?|on(?:als?|)|v(?:e(?:ly|s?)|ity))|k(?:ii|y)|or(?:ies|y)|s(?:k(?:ii|y))?))?"replace="$1ormat$2"/><!--avoid MŠK Fomat Martin-->
<Typoword="Postscript"find="\b()ostcript\b"replace="$1ostscript"/>
<Typoword="Outside"find="\b()utisde\b"replace="$1utside"/>
<Typoword="Disease"find="\b()iesease()?\b"replace="$1isease$2"/>
<Typoword="de' Medici"find="\b(C(?:atherine|osimo)|Lorenzo|Marie)\s+de(?:\s?|)Medici\b"replace="$1 de' Medici"/>
<Typoword="Governed"find="\b()overen(ed|ing|ment|ors?|s)\b"replace="$1overn$2"/>
<Typoword="Uilleann pipes"find="\b()il(?:eann?\s+|lean(?:n\s+P|\s+))ipes\b"replace="$1illeann pipes"/>
<Typoword="sneak peek"find="\b()neak\s+peak\b"replace="$1neak peek"/>
<Typoword="-name"find="\b(is|e|n)-nam(e?|ing)\b"replace="$1nam$2"/>
<Typoword="-formation"find="\b(e|n|e|rans)(?:for(?:amti|maiti?)|ofra?mati)(on(?:al|s?)|ve(?:ly)?)\b"replace="$1formati$2"/>
<Typoword="(De/Pre)scri(be/ption)"find="\b(|r)(?:e(?:cr|s(?:c(?:ri)?|r))|iscr)i(b(?:e?|ing)|ptions?)\b"replace="$1escri$2"/>
<Typoword="_(forced/used) to"find="\b((?:a(?:m|re)|is|w(?:as|ere))(?:\s+not|nt)?)\s+(force|use)\s+to\b"replace="$1 $2d to"/>
<Typoword="_(ex/op/pro)posed to"find="\b((?:a(?:m|re)|is|w(?:as|ere))(?:\s+not|nt)?)\s+(ex|op|pro)pose\s+to\b"replace="$1 $2posed to"/>
<Typoword="-par(ed/ing)"find="\b(om|re)pair(ed|ing)\b"replace="$1par$2"/><!--avoid Compair, proper name-->
<Typoword="-pares"find="\b(om|re)pairs\b"replace="$1pares"/><!--avoid Compair, proper name-->
<Typoword="-cipality"find="\b(uni|rin)ci?pal?t(?:i?t?(ies)|(e)(i)(s)|?t?(y))(?<!cipalit(?:ies|y))\b"replace="$1cipalit$2$4$3$5$6"/>
<Typoword="-unity"find="\b(omm|is|m)untiy\b"replace="$1unity"/>
<Typodisabled="exactly the same"find="\bth(?:at|e|is|ose)\s+exact\s+same\b"replace="exactly the same"/><!--Not a typo, but a wording choice. And while some say it's redundant or what not, it is idiomatic (see https://www.merriam-webster.com/words-at-play/usage-exact-same). It should not be automatically changed.-->
<Typodisabled="The Earth's"find="\b()he\s+earths\b"replace="$1he Earth's"/><!--disabled for now-->

New: medals

<Typoword="? medal-winning"find="\b(ronze|old|ilver)+(edal)+winning(?<!\w+\s+\w+-\w+)(?=\s)"replace="$1 $2-winning"/>
<Typoword="gold medal"find="\bGold\s+edal(s)?\b(?<=\b(?:+|Olympic)\s+\w+\s+\w+)(?=(?:)|\s+(?:a(?:nd|re|t)|by|for|game|i|with)\b)"replace="gold medal$1"/>
<Typoword="silver medal"find="\bSilver\s+edal(s)?\b(?<=\b(?:+|Olympic)\s+\w+\s+\w+)(?=(?:)|\s+(?:a(?:nd|re|t)|by|for|game|i|with)\b)"replace="silver medal$1"/>
<Typoword="bronze medal"find="\bBronze\s+edal(s)?\b(?<=\b(?:+|Olympic)\s+\w+\s+\w+)(?=(?:)|\s+(?:a(?:nd|re|t)|by|for|game|i|with)\b)"replace="bronze medal$1"/>
<Typoword="gold medalist"find="\bGold\s+edalist(s)?\b(?<=\b+\s+\w+\s+\w+)"replace="gold medalist$1"/>
<Typoword="silver medalist"find="\bSilver\s+edalist(s)?\b(?<=\b+\s+\w+\s+\w+)"replace="silver medalist$1"/>
<Typoword="bronze medalist"find="\bBronze\s+edalist(s)?\b(?<=\b+\s+\w+\s+\w+)"replace="bronze medalist$1"/>

New: insert hyphen (split words)

<Typoword="walk-off"find="\b()alkoff\b"replace="$1alk-off"/>

New: replace space by hyphen

<Typoword="Top-grossing_"find="\b(ighest|owest|op)+grossing(?=\s+(?:concert|film|game|movie|t(?:itle|our))s?\b)"replace="$1-grossing"/>
<Typoword="Long-awaited"find="\b()ong+awaited\b"replace="$1ong-awaited"/>
<Typoword="stripped-down_"find="\b()tripped+down\b(?=\s+(?:acoustic|bands?|productions?|sounds?|v(?:ersions?|iews?))\b)"replace="$1tripped-down"/>
<Typoword="well-being"find="\bwell\s+being\b(?<=\b(?:community|e(?:conomic|motional)|financial|general|h(?:er|is|uman)|its|mental|o(?:f|ne's|verall|wn)|p(?:hys|sycholog)ical|s(?:ocial|piritual|ubjective)|their)\s+well\s+being)"replace="well-being"/>
<Typoword="well-being (2)"find="\bwell\s+being(?=(?:|\s+(?:and|of|t(?:hrough|o)|when)\s))"replace="well-being"/>
<Typoword="game-winning"find="\bgame\s+winning+(goal|h(?:it|ome)|move|play)\b"replace="game-winning $1"/>
<Typoword="High-ranking officials"find="\b()igh(?<!ery high)(e(?:r|st))?\s+rank(ed|ing)+(m(?:embers?|ilitary)|offic(?:er|ial)s?)\b"replace="$1igh$2-rank$3 $4"/>
<Typoword="Skyrocket"find="\b()kyrocket(ed|ing)\b"replace="$1kyrocket$2"/>
<Typoword="Grief-stricken"find="\b()rief+stricken\b"replace="$1rief-stricken"/>
<Typoword="Third-party"find="\b()hird+party(?=\s+(?:a(?:ggregators?|pp(?:lications?|s?))|c(?:andidates?|ompan(?:ies|y))|developers?|manufacturers?|pr(?:esidential|oducts?)|so(?:ftware|urces?)|tools?|vendors?)\b)"replace="$1hird-party"/>
<Typoword="One-off"find="\b()ne+off(?=\s+(?:appearances?|c(?:ars?|oncerts?)|e(?:pisodes?|vents?)|g(?:ames?|igs?)|housing|items?|m(?:atch(?:es)?|odels?)|p(?:ayments?|erformances?|roductions?)|reunions?|s(?:hows?|ingles?|pecials?)|ests?|tours?|vehicles?)\b)"replace="$1ne-off"/>
<Typoword="part-time"find="\bpart+time\b(?<=\b(?:as|for|ha(?:|ve)|on)\s+a\s+\w+\s+\w+)(?!\s+unit)|\bpart\s+time(?=\s+(?:basis|employ(?:ees?|ment)|jobs?|st(?:aff|udents?)|work(?:ers?)?)\b)"replace="part-time"/>
<Typoword="full-time"find="\bfull+time\b(?<=\b(?:as|for|ha(?:|ve)|on)\s+a\s+\w+\s+\w+)(?!\s+unit)|\bfull\s+time(?=\s+(?:basis|employ(?:ees?|ment)|jobs?|st(?:aff|udents?)|work(?:ers?)?)\b)"replace="full-time"/>
<Typoword="highest-charting"find="\bhighest+(chart|peak)ing(?=\s+(?:album|entry|hit|re(?:cord|lease)|s(?:ingle|ong))s?\b)"replace="highest-$1ing"/>
<Typoword="Wright-Patterson"find="\bWright+Patterson(?=\s+A(?:FB\b|ir\s+Force\s+Base\b))"replace="Wright-Patterson"/>
<Typoword="nn-seat"find="\b((?:\d+,)?\d\d+)+seat(?=\s+(?:a(?:rena|uditorium)|black\s+box|concert|lecture|majority|restaurant|st(?:adium|udio)|theat(?:er|re))\b)(?<!\bto\s+\d+\s+\w+)"replace="$1-seat"/>
<Typoword="Stand-up"find="\b()tand+up(?=\s+(?:acts?|com(?:ed(?:ians?|y)|ics?)|guy|s(?:ets?|hows?))\b)"replace="$1tand-up"/>
<Typoword="two-way tie"find="\b(|e(?:ight(?:een|y?)|leven)|f(?:i(?:ft(?:een|y)|ve)|o(?:rty|ur(?:teen)?))|nine(?:t(?:een|y))?|s(?:even|ix)(?:t(?:een|y))?|t(?:en|h(?:irt(?:een|y)|ree)|w(?:e(?:lve|nty)|o)))+way(?=\s+(?:battle|co(?:mpetition|ntest)|d(?:ance|ivision)|el(?:ection|imination)|f(?:eud|ight)|intersection|ladd+er|match|p(?:layoff|rimary)|race|split|t(?:ag|ie|rade))\b)"replace="$1-way"/>
<Typoword="(Working/upper/middle/lower)-class"find="\b(ower|iddle|pper|orking)+lass\s+(b(?:ackground|oy)s?|famil(?:ies|y)|girls?|ho(?:mes?|uses?)|neighbou?rhoods?|p(?:arents|eople)|roots|(?:wo)?mn)\b"replace="$1-class $2"/>
<Typoword="(Upper/lower)-middle-class"find="\b(ow|pp)er\s+middle-class\s+(backgrounds?|famil(?:ies|y)|ho(?:mes?|uses?)|neighbou?rhoods?|people|(?:wo)?mn)\b"replace="$1er-middle-class $2"/>
<Typoword="year-round"find="\byear+round\b(?<=\b(?:A(?:ctive|lmost|nd|vailable)?|a(?:ctive|lmost|nd|re|vailable)?|o(?:r|und)|ive?|aintained|(?:ccurs?|f(?:fers)?|pe(?:n|rate?))|(?:r(?:ecipitation|ovide?)|ublic)|(?:ainfall|esident)|t(?:here|o)|To|sed|(?:eather|ith))\s+year\s+round)"replace="year-round"/>
<Typoword="Off-road"find="(?<!ne-)\b()ff+road\b(?!\s+access)"replace="$1ff-road"/><!--avoid "cutting off road access"-->
<Typoword="Fast/Slow-paced"find="\b((?:ast|low)(er)?)+paced\b"replace="$1-paced"/>
<Typoword="Mass-produce"find="\b()ass+produc(e?|ing)\b"replace="$1ass-produc$2"/>
<Typoword="Ill-adapted"find="\b()ll+(ad(?:apted|vised)|c(?:alculated|on(?:ceived|sidered))|d(?:efined|i(?:gested|sposed))|e(?:quip(?:ped|t)|xecuted)|fated|gotten|informed|mannered|p(?:lanned|repared)|re(?:ceived|puted)|s(?:erved|uited)|t(?:empered|imed|reated)|used)\b"replace="$1ll-$2"/>
<Typoword="Ever-changing"find="\bever\b(?<=\b(?:n?|rom|(?:er|is)|ts|umerous|h(?:e(?:ir|se)?|is)|ith)\s+ever)\s+(accelerating|b(?:etter|igger|roade(?:ning|r)|urning)|c(?:hanging|l(?:earer|oser))|d(?:e(?:creasing|epe(?:ning|r)|veloping)|iminishing|windling)|e(?:lusive|scalating|volving|xpanding)|faster|gr(?:eater|owing)|higher|i(?:mproving|ncreasing)|l(?:arger|engthening|ower)|moving|narrowing|p(?:opular|resent)|r(?:e(?:peating|volving)|ising|otating)|s(?:h(?:ifting|rinking)|m(?:aller|iling)|tronger)|tighte(?:ning|r)|w(?:atchful|ide(?:ning|r)|orsening)|younger)\b"replace="ever-$1"/>

New: remove hyphens after adverbs ending in -ly

<Typoword="-ectly "find="ectly-(?=+\b)(?!+-)"replace="ectly "/><!--for the curious here the ]-->
<Typoword="-i(a/e)ntly "find="(i)ntly-(?=+\b)(?!+-)"replace="$1ntly "/>
<Typoword="-ically "find="ically-(?=+\b)(?!+-)"replace="ically "/>
<Typoword="-ightly "find="\b(r||l)ightly-(?=+\b)(?!+-)"replace="$1ightly "/>
<Typoword="-ously "find="ously-(?=)"replace="ously "/>
<Typodisabled="Directly"find="\b()irectly-(?=+ed\b)(?!+-)"replace="$1irectly "/><!--superseded by "-ectly"-->
<Typodisabled="Electrically "find="\b()lectr(on)?ically-(?=+\b)(?!+-)"replace="$1lectr$2ically "/><!--superseded by "-ically"-->
<Typoword="H???ily "find="\b((?:a(?:pp|st)|eav))ily-(?=+\b)(?!+-)"replace="$1ily "/>
<Typoword="Independently"find="\b()ndependently-(?=+ed\b)(?!+-)"replace="$1ndependently "/>
<Typoword="Newly "find="\b()ewly-(?=(?:+ed\b|(?:a(?:rriving|vailable)|b(?:o(?:rn|ught)|uilt)|d(?:eveloping|rawn|ug)|e(?:ligible|merging)|forming|independent|made|popular|r(?:e(?:b(?:orn|uilt)|drawn)|ich)|s(?:hot|ingle)|w(?:ealthy|on|ritten))\b))(?!formed|wed)"replace="$1ewly "/>
<Typodisabled="Politically "find="\b()olitically-(?=+\b)(?!+-)"replace="$1olitically "/><!--superseded by "-ically"-->
<Typoword="Publicly "find="\b()ublicly-(?=+ed\b)"replace="$1ublicly "/>
<Typoword="Recently "find="\b()ecently-(?=+ed\b)(?!+-)"replace="$1ecently "/>
<Typoword="Similarly "find="\b()imilarly-(?=+\b)(?!+-)"replace="$1imilarly "/>
<Typoword="Widely"find="\b()idell?y-(?=+ed\b)(?!+-|spaced eyes)"replace="$1idely "/><!--widely-spaced eyes seems to be the correct term-->

New: remove other hyphens (replace with space)

<Typoword="less/more populated"find="\b(less|more)-populated\b"replace="$1 populated"/>
<Typoword="sworn in"find="\bsworn-in\b(?<!\b\s+sworn-in)"replace="sworn in"/>
<Typoword="sworn in"find="\b()worn-in(?=(?:|\s+(?:as|on)\s))"replace="$1worn in"/>
<Typoword="well received"find="\b()ell-received\b(?=\.|\s+(?:at\b|by\b|in\b))"replace="$1ell received"/>
<Typoword="On board"find="\b()n?board(?<!-onboard)(?= (?:a?|for|in|ll|ship|t(?:h(?:at|e(?:se)?)|o)|w(?:ere|hen|ith))\b|)"replace="$1n board"/><!--see talk page 23 July 2012-->

New: remove space or hyphen (join words)

<Typoword="infrared"find="\b(nfra)+(red)\b"replace="$1$2"/><!--20231107-->
<Typoword="intertribal"find="\b()nter+tribal\b"replace="$1ntertribal"/>
<Typoword="Passageway"find="\b()assage+way(s)?\b"replace="$1assageway$2"/>
<Typoword="Foothills"find="\b()oot+hills\b"replace="$1oothills"/>
<Typoword="Halfway_"find="\b()alf\s+way(?=\s+(?:a(?:cross|round)|between|down|from|into|line|out|point|round|through|up)\b)"replace="$1alfway"/>
<Typoword="-ball"find="\b(as(?:e|ket)|annon|oo|and|ick|(?:addle|ickle)|(?:now|pit|tick)|olley)+ball(s)?\b"replace="$1ball$2"/>
<Typoword="Counterbalance"find="\b()ounterbalanc(e?|ing)\b"replace="$1ounterbalanc$2"/>
<Typoword="Frostbite"find="\b()rostbit(e|ten)\b"replace="$1rostbit$2"/>
<Typoword="Lifelong"find="\b()ife(?<!-ife)long(?!(?:evity|\s??(?:a(?:fter|go\b)|before|enough|gone|lived|since)))\b"replace="$1ifelong"/>
<Typoword="???like, etc."find="\b((?:at|hild)|(?:pring|uch)|(?:ar|orkman))like\b"replace="$1like"/><!--but many -like suffixes keep the hyphen-->
<Typoword="(Un)???like, etc."find="\b(n)?(usiness|(?:ady|ife)|portsman)like\b"replace="$1$2like"/><!--but many -like suffixes keep the hyphen-->
<Typoword="Midsection"find="\b()idsection(s)?\b"replace="$1idsection$2"/>
<Typoword="Midway_"find="\b()id+way(?=\s+(?:across|between|down|through|up)\b)"replace="$1idway"/>
<Typoword="Over??ate"find="\b()ver-(exagger|medic|stimul)at(e?|i(?:ng|on))\b"replace="$1ver$2at$3"/>
<Typoword="Over???ing"find="\b()ver-(arch|bear|prescrib|simplify|winter)ing\b"replace="$1ver$2ing"/>
<Typoword="Over??i(s/z)e"find="\b()ver-(emphas|general)(i(?:ations?|e?|ing))\b"replace="$1ver$2$3"/>
<Typoword="Overdevelopment"find="\b()ver-develop(ed|ment)\b"replace="$1verdevelop$2"/><!--avoid 'under-development'-->
<Typoword="Overwhelm"find="\b()ver?wh?el?e?m(?<!verwhelm)(ed|ing(?:ly)?|s?)\b"replace="$1verwhelm$2"/><!--neg lookbehind removable-->
<Typoword="-place"find="\b(irth|ire)place(s)?\b"replace="$1place$2"/>
<Typoword="-point"find="\b(ounter|nife|id|tand)point(s)?\b"replace="$1point$2"/>
<Typoword="Rebirth/reborn"find="\b()e-b(irth|orn)\b"replace="$1eb$2"/>
<Typoword="Restart_"find="\b()estart(ed|ing|s?)\b"replace="$1estart$2"/>
<Typoword="Spearhead"find="\b()pearhead(ed|ing)\b"replace="$1pearhead$2"/><!--but 'spear head' might be a noun-->
<Typoword="Stair-"find="\b()tair+(cases?|steps?|w(?:ays?|ells?))\b"replace="$1tair$2"/>
<Typoword="Throughout (2)"find="\b()hrough+out\b(?!-| of\b)"replace="$1hroughout"/>
<Typoword="Wavelength"find="\b()ave+length(s)?\b"replace="$1avelength$2"/>
<Typoword="-mate"find="\b(and|(?:ell|lass)|lat|oom|hp|eam)+mate(s)?\b"replace="$1mate$2"/>
<Typoword="Lawmaker"find="\b()aw+maker(s)?\b"replace="$1awmaker$2"/>
<Typoword="Gunpowder"find="\b()unpowder\b"replace="$1unpowder"/>

New: Euphemisms

Per WP:EUPH and MOS:SUICIDE
<Disabledword="She killed herself"find="\b()he\s+took\s+her\s+own\s+life\b"replace="$1he killed herself"/>
<Disabledword="He killed himself"find="\b()e\s+took\s+his\s+own\s+life\b"replace="$1e killed himself"/>
<Disabledword="people died"find="\blives\s+were\s+lost\b"replace="people died"/>
<Disabledword="died"find="\b(?:lost\s+(?:their|h(?:er|is)(?:\s+or\s+h(?:er|is)|h(?:er|is))?)\s+li(?:fe|ves))\b"replace="died"/>
<Disabledword="dies/died"find="(?<=\b(?:brothers?|c(?:hild(?:ren)?|ousins?)|daughters?|f(?:athers?|riends?)|grand(?:child(?:ren)?|daughters?|fathers?|mothers?|parents?|sons?)|He|h(?:e|usbands?)|mothers?|n(?:ephews?|ieces?)|parents?|s(?:he|isters?|ons?|pouses?|tep(?:child(?:ren)?|daughters?|fathers?|mothers?|parents?|sons?)|tudents?)|+|She|hey|wi(?:fe|ves))\s+)(?:sadly\s+)?(?:pass(?:e())?\s+away|lose(s)?\s+(?:their|h(?:er|is)(?:\s+or\s+h(?:er|is)|h(?:er|is))?)\s+li(?:fe|ves))(?! from earthly existence)"replace="die$1$2"/>

New: Symbols/HTML entities

Per Knowledge (XXG):Manual_of_Style/Abbreviations#Symbols, Do not use Unicode characters that put an abbreviation into a single character (unless the character itself is the subject of the text)
<Typodisabled="CURLY DOUBLE QUOTES"find=""replace="""/>
<Typodisabled="CURLY SINGLE QUOTES"find=""replace="'"/>
<Typoword="ff"find="(?:&#xFB00;|ff)"replace="ff"/>
<Typoword="FAX"find="(?:℻|&#(?:8507;|x213B;))"replace="FAX"/>
<Typoword="TEL"find="℡"replace="TEL"/>
<Typoword="roman1"find="Ⅰ"replace="I"/>
<Typoword="roman2"find="Ⅱ"replace="II"/>
<Typoword="roman3"find="Ⅲ"replace="III"/>
<Typoword="roman4"find="Ⅳ"replace="IV"/>
<Typoword="roman5"find="Ⅴ"replace="V"/>
<Typoword="roman6"find="Ⅵ"replace="VI"/>
<Typoword="roman7"find="Ⅶ"replace="VII"/>
<Typoword="roman8"find="Ⅷ"replace="VIII"/>
<Typoword="roman9"find="Ⅸ"replace="IX"/>
<Typoword="roman10"find="Ⅹ"replace="X"/>
<Typoword="roman11"find="Ⅺ"replace="XI"/>
<Typoword="roman12"find="Ⅻ"replace="XII"/>
<Typoword="roman50"find="Ⅼ"replace="L"/>
<Typoword="roman100"find="Ⅽ"replace="C"/>
<Typoword="roman500"find="(?:|&#(?:8558;|65316;|x(?:216E;|FF24;)))"replace="D"/>
<Typoword="roman1000"find="(?:Ⅿ|&#(?:8559;|x216F;))"replace="M"/>
<Typoword="PTE"find="㉐"replace="PTE"/>
<Typoword="GB"find="㎇"replace="GB"/>
<Typoword="LTD"find="㋏"replace="LTD"/>
<Typodisabled="½"find="½(?!\|])"replace="{{frac|1|2}}"/><!--disabled these rules per exceptions at ]-->
<Typodisabled="⅓"find="⅓(?!\|])"replace="{{frac|1|3}}"/>
<Typodisabled="¼"find="¼(?!\|])"replace="{{frac|1|4}}"/>
<Typodisabled="⅕"find="⅕(?!\|])"replace="{{frac|1|5}}"/>
<Typodisabled="⅙"find="⅙(?!\|])"replace="{{frac|1|6}}"/>
<Typodisabled="⅐"find="⅐(?!\|])"replace="{{frac|1|7}}"/>
<Typodisabled="⅛"find="⅛(?!\|])"replace="{{frac|1|8}}"/>
<Typodisabled="⅑"find="⅑(?!\|])"replace="{{frac|1|9}}"/>
<Typodisabled="⅒"find="⅒(?!\|])"replace="{{frac|1|10}}"/>
<Typodisabled="⅔"find="⅔(?!\|])"replace="{{frac|2|3}}"/>
<Typodisabled="⅖"find="⅖(?!\|])"replace="{{frac|2|5}}"/>
<Typodisabled="¾"find="¾(?!\|])"replace="{{frac|3|4}}"/>
<Typodisabled="⅗"find="⅗(?!\|])"replace="{{frac|3|5}}"/>
<Typodisabled="⅜"find="⅜(?!\|])"replace="{{frac|3|8}}"/>
<Typodisabled="⅘"find="⅘(?!\|])"replace="{{frac|4|5}}"/>
<Typodisabled="⅚"find="⅚(?!\|])"replace="{{frac|5|6}}"/>
<Typodisabled="⅝"find="⅝(?!\|])"replace="{{frac|5|8}}"/>
<Typodisabled="⅞"find="⅞(?!\|])"replace="{{frac|7|8}}"/>
<Typoword="ELLIPSIS"find="…"replace="..."/>
<Typoword="NUMERO"find="№"replace="No."/>
<Typoword="aacute#x000e1;"find="&#x0001;"replace="á"/>
<Typoword="#x00103;"find="&#x00103;"replace="ă"/>
<Typoword="#x000f6;"find="&#x0006;"replace="ö"/>
<Typoword="#x000f3;"find="&#x0003;"replace="ó"/>
<Typoword="#x000E9;"find="&#x0009;"replace="é"/>

New: remove redundant words

Per WP:TERSE, Articles should use only necessary words. This does not mean using fewer words is always better; rather, when considering equivalent expressions, choose the more concise.
<Typodisabled="remain"find="\bcontinue\s*to\s*remain\b"replace="remain"/>
<Typodisabled="remains"find="\bcontinues\s*to\s*remain\b"replace="remains"/>
<Typoword="Debuted"find="\bfirst\s+d()but(e?|ing)\b"replace="d$1but$2"/>
<Typoword="been found"find="been\s+(?:found\s+previously|previously\s+found)"replace="been found"/>
<Typoword="rule of thumb"find="\bgeneral\s+rule(s)?+of+thumb\b"replace="rule$1 of thumb"/>
<Typoword="fellow_"find="\bfellow\s+(band\s?mates?|c(?:lass\s?mates?|rew\s?mates?|o(?:+workers?|lleagues?|m(?:patriots?|rades?)|workers?))|team\s?mates?)\b"replace="$1"/>
<Typoword="fact"find="\bactual\s+fact\b"replace="fact"/>
<Typoword="past"find="\bpast\s+(histories|memories|records)\b"replace="$1"/>
<Typoword="estimated at"find="\b()stimated\s+at\s+(?:a(?:bout|pprox(?:imately|\.)|round)|roughly)\b"replace="$1stimated at"/>
<Typoword="Merge/Combined/Joined"find="\b(ombin(?:e?|ing)|oin(?:ed|ing|s?)|erg(?:e?|ing))\s+together\b"replace="$1"/>
<Typoword="result"find="\bend\s+result\b"replace="result"/>
<Typoword="outcome"find="\b(?:end|final)\s+outcome\b"replace="outcome"/>
<Typoword="eliminate (1)"find="\b(?:absolutely|completely|entirely|fully|totally)\s+eliminat(e?|ing)\b"replace="eliminat$1"/>
<Typoword="eliminate (2)"find="\b()liminat(e?|ing)\s+(?:absolutely|completely|entirely|fully|totally)\b"replace="$1liminat$2"/>

New: contractions

Per WP:CONTRACTION, the use of contractions is informal and should be avoided.
<!--Typo word="cannot" find="\bcant\b" replace="cannot"/><!--avoid uppercase titles-->
<!--Typo word="will not" find="\bwont\b" replace="will not"/><!--avoid uppercase titles-->
<!--Typo word=" not" find="\b(are|could|d(?:id|o(?:es)?)|ha(?:|ve)|is|m(?:ight|ust)|should|w(?:as|ere|ould))nt\b" replace="$1 not"/><!--avoid uppercase titles, can't and won't have separate rules-->
<!--Typo word=" are" find="\b(they|w(?:e|h(?:at|o))|you)re\b" replace="$1 are"/><!--avoid uppercase titles-->
<!--Typo word=" have" find="\b(could|should|they|w(?:h(?:at|o)|ould)|you)ve\b" replace="$1 have"/><!--avoid uppercase titles-->
<!--Typo word=" will" find="\b(he|she|they|wh(?:at|o)|you)ll\b" replace="$1 will"/><!--avoid uppercase titles-->

New: calendar dates

<Typoword="In MY"find="\bOn\s+(A(?:pril|ugust)|December|February|J(?:anuary|u(?:ly|ne))|Ma(?:rch|y)|November|October|September)\s+(1\d\d|20\d)\b"replace="In $1 $2"/>
<Typoword="in MY"find="\bon\b(?<!\b(?:based|decrease|focus|increase|re(?:flections?|port))\s+on)\s+(A(?:pril|ugust)|December|February|J(?:anuary|u(?:ly|ne))|Ma(?:rch|y)|November|October|September)\s+(1\d\d|20\d)\b"replace="in $1 $2"/>
<Typoword="On DMY"find="\bIn\s+(|\d|3)\s+(A(?:pril|ugust)|December|February|J(?:anuary|u(?:ly|ne))|Ma(?:rch|y)|November|October|September)\s+(1\d\d|20\d)\b"replace="On $1 $2 $3"/>
<Typoword="on DMY"find="\bin\s+(|\d|3)\s+(A(?:pril|ugust)|December|February|J(?:anuary|u(?:ly|ne))|Ma(?:rch|y)|November|October|September)\s+(1\d\d|20\d)\b"replace="on $1 $2 $3"/>
<Typoword="On MDY"find="\bIn\s+(A(?:pril|ugust)|December|February|J(?:anuary|u(?:ly|ne))|Ma(?:rch|y)|November|October|September)\s+(|\d|3),\s+(1\d\d|20\d)\b"replace="On $1 $2, $3"/>
<Typoword="on MDY"find="\bin\s+(A(?:pril|ugust)|December|February|J(?:anuary|u(?:ly|ne))|Ma(?:rch|y)|November|October|September)\s+(|\d|3),\s+(1\d\d|20\d)\b"replace="on $1 $2, $3"/>
<Typoword="comma after MDY date"find="\b(A(?:pril|ugust)|December|February|J(?:anuary|u(?:ly|ne))|Ma(?:rch|y)|November|October|September)(?<=\b(?:fter|and|(?:e(?:fore|tween)|orn|y)|ied|rom|n|to|ntil|\w+,)\s+\w+)\s+(?\d),\s+(\d\d\d)(?=\s+\w)"replace="$1 $2, $3,"/>

New: misspelled proper nouns

<Typoword="Thomson Reuters"find="\bThompson Reuters\b"replace="Thomson Reuters"/>
<Typoword="Association for Computing Machinery"find="\bAssociation of Computing Machinery\b"replace="Association for Computing Machinery"/>
<Typoword="Federal Communications Commission"find="\bFed+er+al Com+un+ication Com+is+ion\b"replace="Federal Communications Commission"/>
<Typoword="Glasgow"find="\bGlasglow\b"replace="Glasgow"/>
<Typoword="New Musical Express"find="\bNew Music Express\b"replace="New Musical Express"/>
<Typoword="Olivia Newton-John"find="\bOlivia Newton John\b"replace="Olivia Newton-John"/>
<Typoword="IMDb"find="\b\b"replace="IMDb"/>
<Typoword="Tuskegee"find="\bTuskeeg+e+\b"replace="Tuskegee"/>
<Typoword="North Rhine-Westphalia"find="\bNorth-RhineWestphalia\b"replace="North Rhine-Westphalia"/>
<Typoword="Trinidad (2)"find="\brin+dad(ians?)?\b"replace="Trinidad$1"/>
<Typoword="San Francisco"find="\bSan Fransc?isco\b"replace="San Francisco"/>
<Typoword="HarperCollins"find="\bHarper(?:\s+oll?ins|olins)\b"replace="HarperCollins"/>
<Typoword="HarperCollins Publishers"find="\bHarper\s?oll?ins\s+Publisher\b"replace="HarperCollins Publishers"/>
<Typoword="Atlanta Journal-Constitution"find="\bAtlanta(?:-Journal(?:\s+and\s+|)| Journal(?: and)? )Constitution\b"replace="Atlanta Journal-Constitution"/>
<Typoword="Prize"find="\bP(eace|ulitzer)\s+rice\b"replace="P$1 Prize"/><!--avoid Sesame Street character Dr. Nobel Price-->
<Typoword="Abbasid"find="\bAb(?:as?|bas)sid\b"replace="Abbasid"/>
<Typoword="Argentinian"find="\bArgentinan(s)?\b"replace="Argentinian$1"/>
<Typoword="French Guiana"find="\bFrench\s+Guyana\b"replace="French Guiana"/>
<Typoword="Kaohsiung"find="\bKao(?:hs|si?u?)ng\b"replace="Kaohsiung"/>
<Typoword="Mauritius (2)"find="\bMa(?!urit(?:iu)?s)u?riti?u?s\b"replace="Mauritius"/><!--avoid Dutch name Maurits-->
<Typoword="Millwall"find="\bMilwall\b"replace="Millwall"/>
<Typoword="Moscow"find="\bMoskow\b(?<!Michael\s+Moskow)(?!,\s*Michael)"replace="Moscow"/><!--avoid Michael Moskow (])-->
<Typoword="Papua New Guinea (2)"find="\bPapa?u?\s+ew\s+uinea\b"replace="Papua New Guinea"/>
<Typoword="People's Republic of China (2)"find="\bPeoples?\s+Republic\s+of\s+China\b"replace="People's Republic of China"/>
<Typoword="Tallinn"find="\bTal(?:in+|l+in)\b"replace="Tallinn"/>
<Typoword="Tokyo"find="\bToyko\b"replace="Tokyo"/>
<Typoword="Toulouse"find="\bTolouse\b"replace="Toulouse"/>
<Typoword="Flickr"find="\bFlikc?r\b"replace="Flickr"/>
<Typoword="Grosset & Dunlap"find="\bGros+ett\s+(?:nd|&)\s+Dunlap\b"replace="Grosset & Dunlap"/>
<Typoword="herald"find="\b()earld(?=(?:ed|i(?:c|ng)|ry|s?)\b)"replace="$1erald"/>
<Typoword="Hindustan Times"find="\bHindustani\s+Times\b"replace="Hindustan Times"/>
<Typoword="Instagram (2)"find="\bInstragram\b"replace="Instagram"/>
<Typoword="Institute of Electrical and Electronics Engineers"find="\bInstitute\s+of\s+Electrical\s+(?:nd|&)\s+Electronic Engineers\b"replace="Institute of Electrical and Electronics Engineers"/>
<Typoword="New Indian Express"find="\bNew\s+India\s+Express\b"replace="New Indian Express"/>
<Typoword="Philadelphia Inquirer"find="\bPhiladelphia\s+Enquirer\b"replace="Philadelphia Inquirer"/>
<Typoword="Philip Glass"find="\bPhillip\s+Glass\b"replace="Philip Glass"/>
<Typoword="SoundCloud (2)"find="\bSound\s+Cloud\b"replace="SoundCloud"/>
<Typoword="Tales of Hoffmann"find="\bTales\s+of\s+Hof(?:fmn|mn+)\b"replace="Tales of Hoffmann"/>
<Typoword="Wall Street Journal"find="\bWalltreet\s+ournal\b"replace="Wall Street Journal"/>
<Typoword="Ernst Mach"find="\bErnest\s*Mach\b"replace="Ernst Mach"/>
<Typoword="Teesside"find="\bTeeside(rs?)?\b"replace="Teesside$1"/>
<Typoword="Klaus Voormann"find="\bKlaus\s*Voorman\b"replace="Klaus Voormann"/>
<Typoword="Kuomintang"find="\bKuomingtang\b"replace="Kuomintang"/>
<Typoword="Johnny Hallyday"find="\bJohnny\s+Halliday\b"replace="Johnny Hallyday"/>
<Typoword="La Tène"find="\bLa\s+Tene\b"replace="La Tène"/>

New: capitalisation

<Typoword="JavaScript"find="\bavacript\b"replace="JavaScript"/><!--20240614-->
<Typoword="mainland China"find="\bMainland(?<=(?:|\s+)\s+\w+)\sChin(a|ese)"replace="mainland Chin$1"/><!--MOS:ZH-->
<Typoword="province of"find="\bProvince(?<=(?:|\s+)\s+\w+)\s+of\b(?!\s+Canada)"replace="province of"/><!--avoid proper nouns--><!--20231108-->
<Typoword="provinces of"find="\bProvinces(?<=(?:|\s+)\s+\w+)\s+of\b"replace="provinces of"/><!--20231108-->
<Typoword="WhatsApp"find="\bhatsapp\b"replace="WhatsApp"/>
<Typoword="IMDb"find="\bIMDB\b"replace="IMDb"/>
<Typoword="Academy/Emmy/Grammy/Tony Award"find="\b(Academy|Emmy|Grammy|Tony)-ward\b"replace="$1 Award"/>
<Typoword="AdSense"find="\bsense\b"replace="AdSense"/>
<Typoword="Blu-ray"find="\blu\s?ay\b"replace="Blu-ray"/>
<Typoword="Boeing"find="\bboeing\b"replace="Boeing"/>
<Typoword="Bollywood"find="\bbol+yood\b"replace="Bollywood"/>
<Typoword="CD"find="\b(\d\d?)\s?s?\s+(album|ox\s?ets?|ets?)\b"replace="$1-CD $2"/><!--avoid 'cd' when it is an abbreviation for candela-->
<Typoword="DVD"find="\bvd(s)?\b"replace="DVD$1"/>
<Typoword="eBay"find="\b?bay\b"replace="eBay"/>
<Typoword="Europe"find="\beurope(a(?:n(?:i(?:ation|e?)|s?)))?\b"replace="Europe$1"/>
<Typoword="GeoCities"find="\beocit(?<!\Seocit)(?:e|ie?)s(\S\s|\s)"replace="GeoCities$1"/>
<Typoword="GitHub"find="\bithub\b(?!\.io)"replace="GitHub"/><!--avoid github.io-->
<Typoword="GPU"find="\b(?<=\s)(pu)\b"replace="GPU"/>
<Typoword="Hollywood"find="\bholl?yood\b(?<!ellow\s+hollywood)"replace="Hollywood"/><!--avoid species-->
<Typoword="Indore"find="\bindor((?:ans?|tes?)?)\b"replace="Indor$1"/>
<Typoword="Instagram"find="\binstagram\b"replace="Instagram"/>
<Typoword="Jacuzzi"find="\bjacuzzi(s)?\b"replace="Jacuzzi$1"/>
<Typoword="LP"find="\b(\d\d?)\s?s?\s+(album|box\s?sets?|sets?)\b"replace="$1-LP $2"/>
<Typoword="Microsoft PowerPoint"find="\bicrosoft\s+owerpoint\b"replace="Microsoft PowerPoint"/>
<Typoword="Mumbai"find="\bmumbai\b"replace="Mumbai"/>
<Typoword="PayPal"find="\b(?:pay|Payp)al\b"replace="PayPal"/>
<Typoword="PlayStation"find="\blaystation(s)?\b"replace="PlayStation$1"/>
<Typoword="Pro Tools"find="\bro(?:\s+t|)ools\b"replace="Pro Tools"/>
<Typoword="SharePoint"find="\bharepoint\b"replace="SharePoint"/>
<Typoword="SoundCloud"find="\boundcloud\b"replace="SoundCloud"/>
<Typoword="SourceForge"find="\bourceforge\b"replace="SourceForge"/>
<Typoword="Tamil Nadu"find="\b(?:tamil\s*|Tamil(?:|\s+n))adu\b"replace="Tamil Nadu"/>
<Typoword="USB"find="\busb\b"replace="USB"/>
<Typoword="Vanderbilt"find="\bvanderbilt\b"replace="Vanderbilt"/>
<Typoword="X-Men"find="\b?men\b"replace="X-Men"/>
Ethnicity & language
<Typoword="Anglo"find="\banglo\b"replace="Anglo"/>
<Typoword="Bengal(is)"find="\bbengal(is?|s?)\b"replace="Bengal$1"/>
<Typoword="Bhojpuri"find="\bbhojpuri\b"replace="Bhojpuri"/>
<Typoword="Celtic"find="\bceltic\b"replace="Celtic"/><!--Celtic not Celt because of ]-->
<Typoword="Kannada"find="\bkannada(n)?\b"replace="Kannada$1"/>
<Typoword="Kurd"find="\bkurd(is(?:h|tan?)|)\b"replace="Kurd$1"/>
<Typoword="Sikh(s)"find="\bsikh(?s??)\b"replace="Sikh$1"/>
<Typoword="Swahili"find="\bswahili\b"replace="Swahili"/>
Religious
<Typoword="Allah"find="\ballah\b"replace="Allah"/>
<Typoword="Brahmin"find="\bbrahm()n(ic(?:al)?|s)?\b"replace="Brahm$1n$2"/>
<Typoword="Catholic_"find="\bcatholic(ism|s)\b(?<!\|(?:\s|)catholics)"replace="Catholic$1"/><!--avoid potential FP catholic-->
<Typoword="Christian"find="\bchristian(i+|s?)\b"replace="Christian$1"/>
<Typoword="Islam(ic)"find="\bislam(i(?:cs?|ss?))?\b"replace="Islam$1"/>
<Typoword="Jain"find="\bjain(iss?|s?)\b"replace="Jain$1"/>
<Typoword="Roman Catholic"find="\b(?:Roman(?:|-\s*|\s+c)|roman?\s*)at(?:holi?|oli)c(*)\b"replace="Roman 
Catholic$1"/>
<Typoword="Sufi"find="\bsufi(?|s(?:m?|tic))\b"replace="Sufi$1"/>
<Typoword="Zoroastrian"find="\bz(oroast(?:er|rians?(?:ism)?))\b"replace="Z$1"/>
Oceans
<Typoword="Pacific Ocean"find="(?!Pacific Ocean)\bacific\s+cean\b"replace="Pacific Ocean"/>
<Typoword="Atlantic Ocean"find="(?!Atlantic Ocean)\btlantic\s+cean\b"replace="Atlantic Ocean"/>
<Typoword="Arctic Ocean"find="(?!Arctic Ocean)\brctic\s+cean\b"replace="Arctic Ocean"/>
<Typoword="Indian Ocean"find="(?!Indian Ocean)\bndian\s+cean\b"replace="Indian Ocean"/>
Holidays
<Typoword="April Fool('s/s') Day"find="\bpril\s+ool('s|s')\s+day\b"replace="April Fool$1 Day"/>
<Typoword="April Fools' Day"find="\bpril\s+ools?\s+ay\b"replace="April Fools' Day"/>
<Typoword="Christmas Day"find="\bhristmas\s+day\b"replace="Christmas Day"/>
<Typoword="Christmas Eve"find="\bhristmas\s+eve\b"replace="Christmas Eve"/>
<Typoword="Fourth of July"find="\b(?:Fo|fou?)rth\s+f\s+uly\b"replace="Fourth of July"/>
<Typoword="New Year's Day_"find="\bew\s+ear(?:s\s+d|s(?:\s+d|s?\s+))ay\b"replace="New Year's Day"/><!--avoid band name New Years Day-->
<Typoword="New Year's Eve"find="\bew\s+ear(?:s\s+e|s?s?\s+)ve\b"replace="New Year's Eve"/>
<Typoword="Thanksgiving"find="\b()hans?kgs?iving(s)?\b"replace="$1hanksgiving$2"/>
<Typoword="_Thanksgiving Day"find="\bThanks?giving\s+day\b"replace="Thanksgiving Day"/>
<Typoword="Valentine's Day"find="\balentine(?:s(?:s?)\s+|\s+|s\s+d)ay\b"replace="Valentine's Day"/>
Academic related things
Academic titles
<Typoword="visiting professor_"find="\bVisiting(?<=\b(?:|+,?|ormer|enure(?:d|-rack))\s+\w+)\s+rofessor(?=|\s+(?:at|{4,}|in|o)\s)"replace="visiting professor"/>
<Typoword="lecturer_"find="\bLecturer(?<=\b(?:s?\s+\w+|is\s+\w+|was\s+\w+))(?=\s+(?:at\b|in\b|o\b))"replace="lecturer"/>
<Typoword="instructor_"find="\bInstructor(?<=\b(?:\s+\w+|is\s+\w+|was\s+\w+))(?=\s+(?:at\b|in\b|o\b))"replace="instructor"/>
<Typoword="research professor_"find="\bResearch(?<=\b(?:|+,?|ormer|enure(?:d|-rack)|isiting)\s+\w+)\s+rofessor(?=|\s+(?:at|{4,}|in|o)\s)"replace="research professor"/>
<Typoword="assistant/associate/adjunct professor_"find="\bA(djunct|ss(?:istant|ociate))(?<=\b(?:|+,?|ormer|enure(?:d|-rack)|isiting)\s+\w+)\s+rofessor(?=|\s+(?:at|{4,}|in|o)\s)"replace="a$1 professor"/>
<Typoword="professor_"find="\bProfessor(?<=\b(?:|ormer|enure(?:d|-rack)|isiting)\s+\w+)(?=(?:|\s+(?:at\s|in\s|o\s)))"replace="professor"/>
Academic fields
<Typoword="z-related academic fields"find="\bZ(oo(?:archaeology|logy|semiotics|tomy))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="z$1"/>
<Typoword="x-related academic fields"find="\bX(enobiology)(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="x$1"/>
<Typoword="w-related academic fields"find="\bW(eaponry|oodcraft|riting)(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="w$1"/>
<Typoword="v-related academic fields"find="\bV(i(?:ctimology|rology|ticulture)|olcanology)(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="v$1"/>
<Typoword="u-related academic fields"find="\bU(rology)(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="u$1"/>
<Typoword="t-related academic fields"find="\bT(aphonomy|e(?:c(?:hnology|tonics)|leology|ratology|uthology|xtile)|he(?:atre|ism|ology|r(?:apy|mo(?:chemistry|dynamics)))|o(?:pology|xicology)|r(?:a(?:ns(?:disciplinarity|gender|lation|port)|umatology|vel)|igonometry))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="t$1"/>
<Typoword="s-related academic fields"find="\bS(c(?:enography|holasticism|outcraft|reenwriting|ulpture)|e(?:afaring|curity|dimentology|ismology|m(?:antics|i(?:conductors|otics))|x(?:ism|ology))|i(?:lviculture|nging)|o(?:cio(?:biology|cybernetics|economics|l(?:inguistics|ogy)|musicology)|nochemistry)|p(?:e(?:ctroscopy|ech|leology)|i(?:ntronics|rituality)|orts(?:casting)?)|t(?:ati(?:cs|stics)|eganography|orytelling)|ur(?:gery|veying)|ystematics)(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="s$1"/>
<Typoword="r-related academic fields"find="\bR(adio(?:chemistry|logy|physics)?|eligion|he(?:toric|umatology)|obotics)(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="r$1"/>
<Typoword="p-science/tudies related academic fields"find="\bP(astoral|e(?:ace|rformance)|h(?:armaceutical|ysical)|lant|o(?:l(?:i(?:ce|tical)|ymer)|pulation)|sycho(?:logical|social)|ublic)\b(?<=\b(?:(?:Arts|\.?c?\.?|course|(?:egrees?|octorate)|graduated|instruct(?:ion|or)|lecturer|m(?:ajor|inor)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+in|studied|taught)\s+\w+)\s+(afety|ciences?|ervice|ociology|tudies)\b(?=(?:|,\s+|\s+(?:a(?:nd\s++|t)|from|in\s+\d\d\d\d|with|\d\d\d\d)\b))"replace="p$1 s$2"/>
<Typoword="p-related academic fields"find="\bP(a(?:inting|l(?:eo(?:a(?:nthropology|rchaeology)|biology|climatology|e(?:cology|thnobotany)|geography|ntology|pathology|radiology)|ynology)|ra(?:legal|military|psychology|sitology)|thology)|e(?:d(?:agogy|iatrics|ology)|riodontics|tro(?:chemistry|logy|physics))|h(?:armac(?:o(?:gnosy|logy)|y)|enomenography|ilo(?:logy|sophy)|ysi(?:cs|o(?:logy|therapy)))|odiatry|r(?:imatology|obability)|sych(?:iatry|o(?:analysis|biology|l(?:inguistics|ogy)|metrics|p(?:athology|hysics)|therapy)))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="p$1"/>
<Typoword="o-related academic fields"find="\bO(bstetrics|ceanography|enology|nology|ology|p(?:hthalmology|t(?:ics|ome(?:chanics|try)))|r(?:chestra|ganology|nithology|tho(?:dontics|p(?:edics|tics)))|steo(?:logy|pathy)|to(?:laryngology|rhinolaryngology))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="o$1"/>
<Typoword="n-related academic fields"find="\bN(a(?:no(?:engineering|materials|technology)|rratology|vigation)|e(?:matology|phrology|uro(?:-ophthalmology|anthropology|chemistry|e(?:conomics|thology)|logy|ophthalmology|p(?:hysi(?:cs|ology)|sychology)|s(?:cience|urgery)))|on-fiction|u(?:rsing|trition))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="n$1"/>
<Typoword="m-science/tudies related academic fields"find="\bM(a(?:cromolecular|nufacturing|rine|terials)|edical|i(?:crobial|gration|litary|neral)|olecular|u(?:lti(?:cultural|media)|seum))\b(?<=\b(?:(?:Arts|\.?c?\.?|course|(?:egrees?|octorate)|graduated|instruct(?:ion|or)|lecturer|m(?:ajor|inor)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+in|studied|taught)\s+\w+)\s+(ciences?|tudies)\b(?=(?:|,\s+|\s+(?:a(?:nd\s++|t)|from|in\s+\d\d\d\d|with|\d\d\d\d)\b))"replace="m$1 s$2"/>
<Typoword="m-related academic fields"find="\bM(a(?:cro(?:economics|sociology)|gnetohydrodynamics|lacology|mmalogy|n(?:agement|uscriptology)|rketing|thematics)|e(?:cha(?:n(?:ics|ochemistry)|tronics)|dicine|t(?:a(?:llurgy|physics|science)|eorology|hodology))|i(?:cro(?:b(?:iology|otics)|economics|sociology)|neralogy)|us(?:eology|ic(?:ology)?)|y(?:cology|rmecology|thology))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="m$1"/>
<Typoword="l-related academic fields"find="\bL(a(?:nguage|w)|i(?:nguistics|t(?:erature|urgy))|e(?:adership|xicology)|im(?:acology|nology)|ogi(?:c|stics))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="l$1"/>
<Typoword="k-related academic fields"find="\bK(ine(?:matics|siology))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="k$1"/>
<Typoword="j-related academic fields"find="\bJ(azz|ournalism|urisprudence)(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="j$1"/>
<Typoword="h-related academic fields"find="\bH(e(?:ma(?:pathology|tology)|patology|r(?:meneutics|petology))|isto(?:chemistry|logy|pathology|r(?:iography|y))|orticulture|umani(?:sm|ties)|y(?:dr(?:aulics|o(?:dynamics|g(?:e(?:nation|ology)|raphy)|logy|ponics))|permedia))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="h$1"/>
<Typoword="g-related academic fields"find="\bG(astro(?:enterology|nomy)|e(?:n(?:etics|omics)|rontology|o(?:archaeology|biology|chemistry|d(?:esy|ynamics)|graphy|logy|m(?:agnetism|etry|orphology)|p(?:hysics|olitics)))|overnment|yn(?:aecology|ecology|ography))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="g$1"/>
<Typoword="f-related academic fields"find="\bF(i(?:ction|lm(?:making|ography)?|nance)|elinology|o(?:lklore|re(?:nsics|stry)))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="f$1"/>
<Typoword="e-related academic fields"find="\bE(c(?:clesiology|o(?:logy|no(?:m(?:etrics|ics)|physics)))|d(?:aphology|ucation)|n(?:docrinology|gineering|t(?:omology|repreneurship))|pi(?:demiology|stemology)|thno(?:archaeology|b(?:iology|otany)|choreology|ecology|graphy|history|l(?:inguistics|ogy)|m(?:ethodology|us(?:eology|icology))|zoology))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="e$1"/>
<Typoword="d-related academic fields"find="\bD(ance|e(?:mography|n(?:drochronology|tistry)|rmato(?:logy|pathology)|sign)|ivinity|ra(?:ma(?:turgy)?|wing))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="d$1"/>
<Typoword="c-related academic fields"find="\bC(a(?:lc(?:eology|ulus)|r(?:cinology|diolog|tography))|hemistry|l(?:assics|imatology)|o(?:m(?:m(?:erce|unications?)|position)|smo(?:chemistry|logy))|riminology|yto(?:genetics|hematology))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="c$1"/>
<Typoword="b-related academic fields"find="\bB(a(?:llistics|trachology)|i(?:bliometrics|o(?:archaeology|chemistry|e(?:conomics|ngineering|thics)|geo(?:chemistry|graphy|physics)|informatics|logy|mechanics|nics|physics|statistics|technology))|otany|usiness)(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="b$1"/>
<Typoword="a-related academic fields"find="\bA(c(?:co(?:mpaniment|unting)|oustics|ting)|dvertising|ero(?:biology|dynamics|nautics|ponics)|gr(?:iculture|o(?:chemistry|ecology|logy|nomy|physics))|n(?:a(?:esthe(?:siology|tics)|tomy)|esthe(?:siology|tics)|imation|thr(?:acology|o(?:po(?:logy|nics)|zoology)))|r(?:ch(?:aeo(?:a(?:coustics|stronomy)|ge(?:netics|ography)|logy)|itecture)|ts?)|stro(?:b(?:iology|otany)|chemistry|metry|n(?:autics|omy)|physics))(?<=\b(?:(?:(?:d(?:egrees?|octorates?)|graduat(?:ed?|ing)|instruct(?:ion|or)|lectur(?:e|ing)|major(?:ed|ing)?|\.?c?\.?|of\s+(?:Arts|Science)|Ph\.?D\.?|stud(?:ents?|ies)|tutor)\s+(?:in|of))|pr(?:acti(?:e?|ing)|ofessor\s+(?:in|of))|read|stud(?:ie|y(?:ing)?)|t(?:aught|each(?:es|ing)?))\s+\w+)(?=(?:\s+(?:a(?:nd\s+an?|t)|by|from|in|with)\s||\s+\())"replace="a$1"/>
College degrees
<Typoword="bachelor's degree (2)"find="\bachelor?s(?<=\s+(?:complet(?:ed?|ing)|d(?:id|o)|earn(?:ed|ing)?|f(?:inish(?:ed|ing)?|or)|got|obtain(?:ed|ing)?|pursu(?:ed?|ing)|receiv(?:ed?|ing)|started|took)\s+(?:a|h(?:er|is))\s+\w+)(?=(?:|\s+(?:a(?:nd|t)|from|in)\s))"replace="bachelor's degree"/>
<Typoword="master's degree (2)"find="\baster?s(?<=\s+(?:complet(?:ed?|ing)|d(?:id|o)|earn(?:ed|ing)?|f(?:inish(?:ed|ing)?|or)|got|obtain(?:ed|ing)?|pursu(?:ed?|ing)|receiv(?:ed?|ing)|started|took)\s+(?:a|h(?:er|is))\s+\w+)(?=(?:|\s+(?:a(?:nd|t)|from|in)\s))"replace="master's degree"/>
<Typoword="Ed.D."find="\bE\.(?<=E\.)\s*D\.?(?<!Ed\.D\.)(?=)"replace="Ed.D."/>
<Typoword="M.Phil."find="\b()\.(?<=\.)\s*(Com|Ed|Litt|Mus|Ph(?:arm|il)|Sc|Tech)\.?(?<!\.\w+\.)(?=)"replace="$1.$2."/>
<Typoword="Ph.D."find="\bP\.(?<=P\.)\s*D\.?(?<!Ph\.D\.)(?=)"replace="Ph.D."/>
<Typoword="Bachelor of Science"find="\bachelor\s+of\s+science(?=|\s+\(|\s+(?:a(?:nd|t)|degrees?|from|in)\s)"replace="Bachelor of Science"/>
<Typoword="Master of Science"find="\baster\s+of\s+science(?=|\s+\(|\s+(?:a(?:nd|t)|degrees?|from|in)\s)"replace="Master of Science"/>
<Typoword="Bachelor of Arts"find="\bachelor\s+of\s+arts(?=|\s+\(|\s+(?:a(?:nd|t)|degrees?|from|in)\s)"replace="Bachelor of Arts"/>
<Typoword="Master of Arts"find="\baster\s+of\s+arts(?=|\s+\(|\s+(?:a(?:nd|t)|degrees?|from|in)\s)"replace="Master of Arts"/>
<Typoword="MPhil"find="\bM\.Phil(?=\s+(?:a(?:nd|t)|d(?:egree|issertation)|from|in|studies|thesis|with)\b)(?<=\b(?:An|and?|(?:er|is))\s+M\.Phil)"replace="MPhil"/>
<Typoword="PhD"find="\bPh\.D(?=\s+(?:at|d(?:egree|issertation)|from|in|studies|thesis|with)\b)(?<=\b(?:A|a(?:nd)?|(?:er|is))\s+Ph\.D)"replace="PhD"/>
Place names (high-level)
Geographical proper names
<Typoword="Belgium2"find="\belguim\b"replace="Belgium"/><!--20240419-->

New: accents and diacritical marks

<Typodisabled="à la"find="\b(?!ala)(?:\s*|à)l\b"replace="à la"/><!--disabled, many false positives-->
<Typoword="Alain Juppé"find="\bAlain\s+Juppe\b"replace="Alain Juppé"/>
<Typoword="Ancien Régime"find="\bAncien(?:t\s+|\s+(?:r|Re))gime\b"replace="Ancien Régime"/>
<Typoword="Angoulême"find="\bAngouleme\b"replace="Angoulême"/>
<Typoword="Āniwaniwa"find="\bAniwaniwa\b"replace="Āniwaniwa"/>
<Typoword="Bézier"find="\bBzier(s)?\b"replace="Bézier$1"/>
<Typodisabled="Brasília"find="\bBrasilia\b(?<!(?:E(?:mbraer|MB 120)|Volkswagen|Wésley)\s+Brasilia)"replace="Brasília"/>
<Typoword="* Brontë"find="\b(Anne|Branwell|Charlotte|Emily|Patrick)\s+ronte\b"replace="$1 Brontë"/>
<Typoword="Brontë *"find="\bBronte\s+(amily|isters)\b"replace="Brontë $1"/>
<Typoword="Chambéry"find="\bChambery\b"replace="Chambéry"/>
<Typoword="Côte ..."find="\bCote\s+(Chalonnaise|d(?:e(?:s\s+Landes|\s+B(?:eaune|rouilly)|Granit|Nuits)|(?:A(?:rgent|zur)|O(?:pale|r)))|Fleurie|Saint-Luc|Vermeille)\b"replace="Côte $1"/>
<Typoword="Côte-"find="\bCote-(d(?:e(?:s-Neiges|-Beaupré)|(?:Aime|Or)|u-Poivre)|Nord|Rôtie|Saint-(?:André|Paul)|Vertu)\b"replace="Côte-$1"/>
<Typoword="Côtes"find="\bCotes\s+d(e\s+(?:Bourg|Duras|Gascogne|Toul)|u\s+(?:Marmandais|Rhne|Ventoux))\b"replace="Côtes d$1"/>
<Typoword="Courage Compétition"find="\bCourage\s+Competition\b"replace="Courage Compétition"/>
<Typoword="Der Freischütz"find="\bDer\s+Freischutz\b"replace="Der Freischütz"/>
<Typoword="Dürrenmatt"find="\bD(?:ür(?:en?|ren)|ue?rr?en?)nmatt?\b"replace="Dürrenmatt"/>
<Typoword="Düssel-"find="\bussel(dorf*|tal)\b"replace="Düssel$1"/>
<Typoword="É-"find="\bE(c(?:harcon|ollemont|riennes|u(?:eil|ry))|gly|p(?:e(?:nse|rn(?:ay|on))|inay|oye)|t(?:ampes(?<!10374 Etampes)|iolles|oges|r(?:échy|epy))|vr(?:eux|y))\b"replace="É$1"/><!--avoid minor planet 10374 Etampes-->
<Typoword="École nationale supérieure des Beaux-Arts"find="\b(?:Ecole\s+ationale\s+uprieure\s+des\s+eaux|École\s+(?:Nationale\s+uprieure\s+des\s+eaux|nationale\s+(?:Suprieure\s+des\s+eaux|sup(?:erieure\s+des eaux|érieure\s+des\s+(?:beaux|Beaux(?:\s+|-a))))))rts?\b"replace="École nationale supérieure des Beaux-Arts"/>
<Typoword="Eugène ..."find="\bugne\s+(Delacroix|Ionesco|Labiche|Marin\s+Labiche)\b"replace="Eugène $1"/>
<Typoword="Ferenc Molnár"find="\berenc\s+olnar\b"replace="Ferenc Molnár"/>
<Typoword="Franche-Comté"find="\bFranche(?:\s+Comt|-+Comte)\b"replace="Franche-Comté"/>
<Typoword="Göttingen"find="\bGottingen\b"replace="Göttingen"/>
<Typodisabled="Guaraní"find="\bGuarani\b"replace="Guaraní"/>
<Typoword="Hugo Chávez"find="\bugo\s+havez\b"replace="Hugo Chávez"/>
<Typoword="Jägermeister"find="\bae?g+ermeister\b"replace="Jägermeister"/>
<Typoword="Janelle Monáe"find="\bJanel+e\s+onae\b"replace="Janelle Monáe"/>
<Typoword="Köppen climate classification"find="\bopp+en\s+climate\s+classification\b"replace="Köppen climate classification"/>
<Typoword="Květa Peschke"find="\bveta\s+eschke\b"replace="Květa Peschke"/>
<Typoword="León"find="\b(Castile(-|\s+and\s+)|(?:Alfonso\s+(?:I(?:II|)|V)|Kingdom|Province)\s+of\s+|Juan\s+Ponce\s+de\s+)Leon\b"replace="$1León"/>
<Typoword="Leoš Janáček"find="\beos\s+anek\b"replace="Leoš Janáček"/>
<Typoword="Luiz Inácio Lula da Silva"find="\bLuiz\s+Incio\s+ula\s+da\s+Silva\b"replace="Luiz Inácio Lula da Silva"/>
<Typoword="Médaille militaire"find="\bM(?:dail+e\s+|édail+e\s+M)il+itaire\b"replace="Médaille militaire"/>
<Typoword="Mel Tormé"find="\bMel\s+Torm\b"replace="Mel Tormé"/>
<Typoword="Mérida"find="\bMrida\b"replace="Mérida"/>
<Typoword="Müllerian"find="\bullerian\s+(agene*|ucts?|hormones?|nhib+|mimic*|tumors?)\b"replace="Müllerian $1"/>
<Typoword="Musée"find="\bMuse\s+(d(?:e\s+(?:Cluny|lHomme)|u\s+L(?:ouvre|uxembourg)|Orsay)|Guimet)\b"replace="Musée $1"/>
<Typoword="-nçon"find="\b(Ale|Besa)ncon\b"replace="$1nçon"/>
<Typoword="Neue Zürcher Zeitung"find="\bNeue\s+urcher\s+eitung\b"replace="Neue Zürcher Zeitung"/>
<Typoword="Nîmes"find="\bNimes\b"replace="Nîmes"/>
<Typoword="Nuevo León"find="\bNuevo\s+Leon\b"replace="Nuevo León"/>
<Typoword="Ōkārito"find="\bOkarito\b"replace="Ōkārito"/>
<Typoword="pâté"find="\bpat(s)?\b"replace="pâté$1"/><!--pate is a word; needs to be worked to identify the dish positively if it's going to catch the unaccented version-->
<Typoword="Périg(ord/(u)eux)"find="\bPrig(eux|ord|ueux)\b"replace="Périg$1"/>
<Typoword="Perón"find="\b(Eva|Isabel|Juan(?:\s+Domingo)?)\s+Peron\b"replace="$1 Perón"/>
<Typoword="Pokémon"find="\bok?mon\b"replace="Pokémon"/>
<Typoword="Porfirio Díaz"find="\borfirio\s+iaz\b"replace="Porfirio Díaz"/>
<Typoword="Provençal"find="\bProvencal\b"replace="Provençal"/>
<Typoword="Querétaro"find="\bQuertaro\b"replace="Querétaro"/>
<Typoword="Roman à clef"find="\b()oman(s)?++lf?\b(?<!omans? à clef)"replace="$1oman$2 à clef"/>
<Typoword="Saarbrücken"find="\bSaarbrucken\b"replace="Saarbrücken"/>
<Typoword="San Luis Potosí"find="\bSan\s+Luis\s+Potosi\b"replace="San Luis Potosí"/>
<Typoword="Saône"find="\bSaone\b"replace="Saône"/>
<Typoword="Süddeutsche Zeitung"find="\bSuddeutsche\s+eitung\b"replace="Süddeutsche Zeitung"/>
<Typoword="Tabaré Vázquez"find="\bTabar\s+azquez\b"replace="Tabaré Vázquez"/>
<Typoword="Teatro Colón"find="\beatro\s+olon\b"replace="Teatro Colón"/>
<Typoword="Telefónica"find="\bTelefonica\b"replace="Telefónica"/>
<Typoword="Tübingen"find="\bubingen\b"replace="Tübingen"/>
<Typoword="Ürümqi"find="\bUrumqi\b(?<!2729\s+Urumqi)"replace="Ürümqi"/><!--avoid 2729 Urumqi-->
<Typoword="Yucatán"find="\bYucatan\b"replace="Yucatán"/>

New: punctuation

<Typoword="MOS:JRSR"find="(?<=\p{Lu}*)(?<!\{\{(?:Commons|DEFAULTSORT|)+|(?:chapter|image|publisher|quote|s(?:ic|name)|title|website)\s*=\s*+|Andrea\s+Constand\s+?\.?\s+William\s+H\.?\s+Cosby|B(?:enjamin\s+Franklin|risco\s+County|uffalo\s+Bill)|C(?:aptain\s+Kidd|hris(?:\s+Columbus|topher))|Estate\s+f\s+Martin\s+Luther\s+King|Fred\s+A\.?\s+Leuchter|Hubert\s+Blaine\s+Wolfeschlegelsteinhausenbergerdorff|J(?:esse\s+James|ubilo|\.?\s+W\.?\s+Hampton)|rincipal|Robinson\s+Crusoe|ister|S(?:ci\.|r\.\s+\w+|teamboat\s+Bill)|T(?:he\s+Adventures\s+of\s+Brisco\s+County|rigger)|(?:||)\:+|\d),( r(?=*'''+|+|\]\]))(?!\bLt\.|(?:*|\]\])('{1,2}|"|]*\]]|*\</|||House|?|||?|)|\.?\{\}\|\r\n]*\.(?:||?|||?|))"replace="$1"/><!--avoid various proper names, file names, external text, etc.-->

A

<Typoword="A cappella"find="\b()(?:cap?|\s+ca)pella\b(?=\s+(?:cho(?:ir|rus)|group|singing|version\s))"replace="$1 cappella"/>
<Typoword="a cappella"find="\ba?cap*el*a\b"replace="a cappella"/><!--avoid Acappella (multiple meanings)-->
<Typoword="A lot"find="\b()lot\b(?<!Laf\s+Alot)"replace="$1 lot"/>
<Typoword="Abandon"find="\b()(?:bo|dba)ndon+(*)\b"replace="$1bandon$2"/>
<Typoword="Abbreviate"find="\b()b(?:b+ri|r)viat(+)\b"replace="$1bbreviat$2"/>
<Typoword="Aberrant/Aberration"find="\b()b(?:ber?|e)ra(+)(?<!Aberangell)\b"replace="$1berra$2"/>
<Typoword="Aborigine"find="\b()bor(?:gi|ig)ni?(al|es?)\b"replace="$1borigin$2"/>
<Typoword="Absence"find="\b()bs(?:cen|ens)e(s)?\b"replace="$1bsence$2"/>
<Typoword="Absorb"find="\b()sb?orb(*)\b"replace="$1bsorb$2"/>
<Typoword="Absorption"find="\b()bsorbi(on|ve)\b"replace="$1bsorpti$2"/>
<Typoword="Abyssinia"find="\bb(?:bys+in?|ys(?:in?|sin))nia(ns?)?\b"replace="Abyssinia$1"/>
<Typoword="Académie Française"find="\b()cadmi\s+()ranaise?(?<!cadémie\s+rançaise)\b"replace="$1cadémie $2rançaise"/><!--avoid self-->
<Typoword="Academy"find="\b()c(?:ad(?:a?|a(?=me))|cad(?:|de)|edd?e)m+e?(i(?:c(?:ally|s?)|es?)|y)\b"replace="$1cadem$2"/>
<Typoword="(Ac/De)celerate"find="\b(c|e)(?:cel|el?)lerat(+)\b"replace="$1celerat$2"/>
<Typoword="Access_"find="(?!\bces\b)\b(|na)c(?:ces(?:ss+)?|es+)(ar+|e|i(?:b+|ng|on*|ve)|or+)?\b"replace="$1ccess$2"/><!--avoid matching aces-->
<Typoword="(In)Accessible"find="\b(|na)c+es+ab(ilit(?:ies|y)|l)\b"replace="$1ccessib$2"/>
<Typoword="Acclaim"find="\b()claim(ed)?\b"replace="$1cclaim$2"/>
<Typoword="(Un)Acceptable"find="\b(|na)c(?:cep(?:|ti)|ep(?:|t))bl()\b"replace="$1cceptabl$2"/>
<Typoword="Accession"find="\b()sc+es+{2}n\b"replace="$1ccession"/>
<Typoword="Acclimatise"find="\b()c+limiti((?:ation|e?|ing))\b"replace="$1cclimati$2"/>
<Typoword="Accommodate"find="\b()c(?:com(?:?|m?)|om+?)dat(+)\b"replace="$1ccommodat$2"/>
<Typoword="Accompanied"find="\b()c+ompa(?:in+|nn)?e?()\b"replace="$1ccompanie$2"/>
<Typoword="According"find="\b()ccoring(ly)?\b"replace="$1ccording$2"/>
<Typoword="Accordion"find="\b()c+ord(?:eo|ia)n(s)?\b"replace="$1ccordion$2"/>
<Typoword="(Un)Account"find="\b(|na)ccot(a(?:bl|n(?:cy|ts?))|ed|ing|s?)\b"replace="$1ccount$2"/>
<Typoword="Accus(e/tom)"find="\b()c(?:c+us|us?)s(a(?:ble|l|t(?:i(?:ons?|ves?)|or*))|e?|ing|tom(?:ed|s?))\b"replace="$1ccus$2"/>
<Typoword="(Over/Under)Achieve"find="\b(|vera|ndera)ch(?:eie?|i(?:ei)?)v(abl|e*|ing)\b"replace="$1chiev$2"/>
<Typoword="(Over/Under)Achievement"find="\b(|vera|ndera)che?ie?v(d|ments?)\b"replace="$1chieve$2"/>
<Typoword="Acquire"find="\b()(?:cq|qcui)(r(?:e?|ing)|siti(?:ons?|ve(?:ly)?))\b"replace="$1cqui$2"/>
<Typoword="Acquit"find="\b()c?quitt+(s)?\b"replace="$1cquit$2"/>
<Typoword="Acquittal"find="\b()c?qui(?:tt)?t(a(?:ls?|nces?)|ed|ing)\b"replace="$1cquitt$2"/>
<Typoword="Across"find="\b()c(?:c(?:or|ro)|or)s\b"replace="$1cross"/>
<Typoword="Actual"find="\b()cut?al(*)\b"replace="$1ctual$2"/>
<Typoword="Adaptation"find="\b()dapa(?:ta)?tion(*)\b"replace="$1daptation$2"/>
<Typoword="Address"find="\b()d+res(ab+|e(?:|s?)|ing)?\b"replace="$1ddress$2"/>
<Typoword="(In)Adequate"find="\b(|na)d?quate(ly)?\b"replace="$1dequate$2"/>
<Typoword="Administer"find="\b()dmin(?:i(?:nste?r|str)|ster)(ed|ing|s?)\b"replace="$1dminister$2"/>
<Typoword="Administrate"find="\b()(?:dmi(?:n(?:i(?:ni?s)?|s)|s)|minis)trat(+)\b"replace="$1dministrat$2"/>
<Typoword="Admission"find="\b()ddmiss?i(b(?:ility|le)|ons?)\b"replace="$1dmissi$2"/>
<Typoword="Adopt"find="\b()d(?:dopt|op)(ed|i(?:ng|ons?|ve)|s?)\b"replace="$1dopt$2"/>
<Typoword="Adultery"find="\b()dultr(at(?:e?|i(?:ng|on))|er|ous|y)\b"replace="$1dulter$2"/>
<Typoword="Advance"find="\b()davanc(e(?:?|ments?)|ing)\b"replace="$1dvanc$2"/>
<Typoword="Adventurous"find="\b()dventrous\b"replace="$1dventurous"/>
<Typoword="Advertise"find="\b()dvertie?s(|ments?|rs?)\b"replace="$1dvertise$2"/>
<Typoword="Advertising"find="\b()dvertsing\b"replace="$1dvertising"/>
<Typoword="Advocate"find="\b()dovc?at(e?|i(?:ng|on)|ory?)\b"replace="$1dvocat$2"/>
<Typoword="Aerial"find="\b()eriel(ly|s?)\b"replace="$1erial$2"/>
<Typoword="Aesthetic"find="\b()(?:e(?:sthe(?:ci|tia)|thesti)|sthe(?:ci|tia?))c(al(?:l+y|y)?|s?)\b"replace="$1esthetic$2"/>
<Typoword="Affidavit"find="\b()ffadavit(s)?\b"replace="$1ffidavit$2"/>
<Typoword="(Dis/Un)Affiliate"find="\b(|disa|una)f(?:(?:il(?:i?|li?)|f(?:il(?:li?)?|l(?:i(?:li?)?|li))|l(?:i(?:li?)?|li))a|filai)t(e?|i(?:ng|ons?))\b"replace="$1ffiliat$2"/>
<Typoword="Afghani"find="\bf(?:fg(?:ah?|ha)|gah?)ni(s(?:tan)?)?\b"replace="Afghani$1"/><!--cap. of correct spelling is handled under "Afghanistan"-->
<Typoword="Aficionado"find="\b()fficinado(s)?\b"replace="$1ficionado$2"/>
<Typoword="Aforementioned"find="\b()for(?:emem?|me)tioned\b"replace="$1forementioned"/>
<Typoword="Afrikaner"find="\b()friaaner(s)?\b"replace="$1frikaner$2"/>
<Typoword="After"find="\b()fter\b"replace="$1fter"/>
<Typoword="Against"find="\b()g(?:a(?:i(?:n(?:st|ts?)|sn?t)|ni?st)|ia?nst)\b"replace="$1gainst"/>
<Typoword="Aggravate"find="\b()g(?:re|g?re|r)vat(+)\b"replace="$1ggravat$2"/>
<Typoword="Aggregate"find="\b()g(?:greg|reg?)gat(e(?:?|ly)|i(?:ng|ve)|or)\b"replace="$1ggregat$2"/><!--avoid agregation (professional exam/degree in the French system)-->
<Typoword="Aggression"find="\b()g(?:gre|res?)s(i(?:ons?|ve*)|ors?)(?<!l'agression)\b"replace="$1ggress$2"/><!--avoid French-->
<Typoword="Aggrieve"find="\b()g(?:grei|r(?:ei|ie))v(e?|ing)\b"replace="$1ggriev$2"/>
<Typoword="(Dis)Agree"find="\b(A(?!gre\b)|a|isa)g(?:gre+|re(?:ee)?)(abl|?|ing|ments?)\b"replace="$1gree$2"/><!--avoid Agre-->
<Typoword="Air-"find="\b()r?i(b(?:ags?|oats?)|cr(?:afts?|ews?)|d(?:ate|rops?)|f(?:ares?|lows?|oils?)|glow|h(?:eads?|oles?)(?<!Aihole)|i(?:est|ngs?)|l(?:ess|i(?:fts?|kes?|ne(?:rs?|s?)))|m(?:a(?:il|n)|en)(?<!Aimn)|p(?:arks?|la(?:nes?|y)|o(?:ts?))|s(?:h(?:eds?|ips?|os?)|ick|pace)|ti(?:mes?|ng)|w(?:a(?:rds?|ves?|ys?)|ise|omn))\b"replace="$1ir$2"/><!--avoid given names Aiman, Aimen, place name Aihole-->
<Typoword="Airborne"find="\bairbourne?\b"replace="airborne"/><!--avoid Airbourne, a band-->
<Typoword="Aircraft"find="\b()ir(?:c|rcr)ar?ft(s)?\b"replace="$1ircraft$2"/>
<Typoword="Albeit"find="\b()l(?:bie|lb(?:ei|ie))t\b"replace="$1lbeit"/>
<Typoword="Alcohol"find="\b()l(?:c(?:aho|h(?:aho|o(?:h)?)|oha)|ocho)l(i(?:cs?|sm)|s?)\b"replace="$1lcohol$2"/>
<Typoword="Algorithm"find="\b()lgorh?itm(ic|s?)\b"replace="$1lgorithm$2"/>
<Typoword="Alienate"find="\b()lientat(e?|i(?:ng|on))\b"replace="$1lienat$2"/>
<Typoword="(Mis/Re)Align"find="\b(|isa|ea)llign(ed|ing|ments?|s?)\b"replace="$1lign$2"/>
<Typoword="All intents and purposes"find="\b()ll\s+intensive\s+purposes\b"replace="$1ll intents and purposes"/>
<Typoword="Allege"find="\b()l+edg(e(?:d(?:ly)?|s?)|ing)\b"replace="$1lleg$2"/>
<Typoword="Allegedly"find="\b()l+ed?ge?e?y\b"replace="$1llegedly"/>
<Typoword="Alleviate"find="\b()l+iviat(e?|i(?:ng|on)|or)\b"replace="$1lleviat$2"/>
<Typoword="Almost"find="\b()l(?:mso|oms)t\b"replace="$1lmost"/>
<Typoword="alma mater"find="\b((?:er\s+|is\s+))\bAlma\s+Mater\b"replace="$1alma mater"/>
<Typoword="Along with"find="\b()long?with\b"replace="$1long with"/>
<Typoword="Alpha"find="\b()plha(*)\b"replace="$1lpha$2"/>
<Typoword="Already"find="\b()(?:l+r(?:ae?d+y|e(?:a(?:d|yd?)|d(?:ay|d+y|y)))|ready)\b"replace="$1lready"/>
<Typoword="Also_"find="\baslo\b"replace="also"/>
<Typoword="Alternative"find="\b()lternitive(*)\b"replace="$1lternative$2"/>
<Typoword="Although"find="\b()l(?:hought?|t(?:hought|ought?))\b"replace="$1lthough"/>
<Typoword="Alumni"find="\b()lumi?nis\b"replace="$1lumni"/>
<Typoword="Alumnus"find="\b()lmun(ae?|i|us)\b"replace="$1lumn$2"/>
<Typoword="Alumnus_"find="\b()lumin(ae|i|us)\b"replace="$1lumn$2"/>
<Typoword="An alumnus of"find="\b()n?\s+lumi?ni\s+of\b"replace="$1n alumnus of"/>
<Typoword="Always"find="\b()l+(?:sways|w(?:as?y|as))\b(?<!Alway)"replace="$1lways"/><!--avoid surname Alway-->
<Typoword="Amalgam"find="\b()malgm(at(?:e?|i(?:ng|on))|s?)\b"replace="$1malgam$2"/>
<Typoword="Amateur"find="\b()m+(?:atu(?:er|re)|et(?:eur|u(?:er|re))|it(?:eur|u(?:er|re))|ot(?:eur|u(?:er|re))|ut(?:eur|u(?:er|re)))(*)\b"replace="$1mateur$2"/>
<Typoword="Ambidextrous"find="\b()mbi?dextero?us(ly)?\b"replace="$1mbidextrous$2"/>
<Typoword="Ambiguous"find="\b(|na)mbigi?ous(ly|ness)?\b"replace="$1mbiguous$2"/>
<Typoword="(Ambi/Pre)valent"find="\b(mbi|re)v(?:ala|el)n(*)\b"replace="$1valen$2"/>
<Typoword="Amend"find="\b()dmend(a(?:ble|tory)|ed|ing|ments?|s?)\b"replace="$1mend$2"/>
<Typoword="Ammunition"find="\b()m+untion(s)?\b"replace="$1mmunition$2"/>
<Typoword="Amock"find="\b()mock\b"replace="$1mok"/><!--avoid amuck, https://www.merriam-webster.com/dictionary/amuck-->
<Typoword="Among"find="\b()mo?ung(st)?\b"replace="$1mong$2"/>
<Typoword="Amongst"find="\b()mon(?:ge)?st\b"replace="$1mongst"/>
<Typoword="Amount"find="\b()mout(ed|ing|s?)\b"replace="$1mount$2"/>
<Typoword="(A/Be)musement"find="\b(|e)mus(?:em|me)nt(s)?\b"replace="$1musement$2"/>
<Typoword="Anaerobic"find="\b()nerob(es?|ic*)\b"replace="$1naerob$2"/>
<Typoword="Analogous"find="\b()n(?:al(?:a?|l?)|nal?l?)ge?(ies|ous|y)\b"replace="$1nalog$2"/>
<Typoword="Ancestor"find="\b()nsestr(s)?\b"replace="$1ncestor$2"/>
<Typoword="Ancestry"find="\b()ncest(?:r|ri)(al|ies|y)\b"replace="$1ncestr$2"/>
<Typoword="Ancient"find="\b()(?:cie|nce?ia?)nt(s)?\b"replace="$1ncient$2"/>
<Typoword="Ancillary"find="\b()ncill?iary\b"replace="$1ncillary"/>
<Typoword="Anemone"find="\b()nenome(s)?\b"replace="$1nemone$2"/>
<Typoword="Annihilate"find="\b()n(?:hili|ihili|n(?:hil(?:i?|l+)|ihili))at(+)\b"replace="$1nnihilat$2"/>
<Typoword="Anniversary"find="\b()n(?:ivers|n(?:niversa|iv(?:arsa|e(?:r(?:a|se)|sa))))r(ies|y)\b"replace="$1nniversar$2"/>
<Typoword="Anniversary (2)"find="\b(\d+(?:d|st|th)|e(?:ight(?:eenth|h|ieth)|leventh)|f(?:i(?:ft(?:eenth|h|ieth)|rst)|o(?:rtieth|urt(?:eenth|h)))|hundredth|nint(?:eenth|h|ieth)|s(?:e(?:cond|vent(?:eenth|h|ieth))|ixt(?:eenth|h|ieth))|t(?:enth|h(?:ir(?:d|t(?:eenth|ieth))|ousandth)|we(?:lfth|ntieth)))year\s+nnivrsry\b"replace="$1 anniversary"/>
<Typoword="Announcement"find="\b()n+oun?cment(s)?\b"replace="$1nnouncement$2"/>
<Typoword="Annually"find="\b()n(?:n(?:aull|ual+)|ual+)y\b(?<!nnually)"replace="$1nnually"/>
<Typoword="Annul"find="\b()n+ull(ar|ments?|s?)\b"replace="$1nnul$2"/>
<Typoword="Annulled"find="\b()n(?:nu|ul)l(ed|ing)\b"replace="$1nnull$2"/>
<Typoword="Anoint"find="\b()nnoint(ed|ings?|ments?|s?)\b"replace="$1noint$2"/>
<Typoword="Anomaly"find="\b()nom(?:al|o)l(ies|ous*|y)\b"replace="$1nomal$2"/>
<Typoword="Antarctic_"find="\b()ntartic(a)?\b(?<!infonia\s{1,9}ntartica?)"replace="$1ntarctic$2"/><!--avoid 'Sinfonia antartica'-->
<Typoword="Anthropomorphic"find="\b()nthromorphi(+)\b"replace="$1nthropomorphi$2"/>
<Typoword="(Anti/Hypo/Paren)thesis"find="\b(nti|ypo|aren)ths(es|i(?:s(?:e?)?|ze?))\b"replace="$1thes$2"/>
<Typoword="Antonín Dvořák"find="\bntonn\s+vo(?:r|řa)k\b"replace="Antonín Dvořák"/>
<Typoword="Anything"find="\b()n(?:tyth|yty)ing\b"replace="$1nything"/>
<Typoword="Apart/aside from"find="\b((?:part|side))\s+form\b"replace="$1 from"/>
<Typoword="Apartheid"find="\b()parteid\b"replace="$1partheid"/>
<Typoword="Apennine"find="\bp(?:e|pen?)nin(es?|us)\b"replace="Apennin$1"/>
<Typoword="Apocalypse"find="\b()pocolyp(ses?|tic*)\b"replace="$1pocalyp$2"/>
<Typoword="(Un)Apolog(y/etic)"find="\b(|na)p(?:ol|pol)g(etics?|i(?:as?|es|sts?|ze?)|ues?|y)\b"replace="$1polog$2"/>
<Typoword="Apparel"find="\b()p(?:arr?|par(?:a|r))l(ed|ing|l(?:ed|ing)|s?)\b"replace="$1pparel$2"/>
<Typoword="Apparent"find="\b()p(?:ar(?:|r+)|ea?r|p+(?:ar(?:|r+)|ea?r))nt(ly)?\b"replace="$1pparent$2"/>
<Typoword="(Un)Appealing"find="\b(|na)p+ealling\b"replace="$1ppealing"/>
<Typoword="(Dis/Re)Appearance"find="\b(|isa|ea)p(?:e(?:area?|ra)|p(?:e(?:area?|ra)|reara)|reara)nce(s)?\b"replace="$1ppearance$2"/>
<Typoword="Appeared"find="\b(|isa|ea)ppear(?:re)?d\b"replace="$1ppeared"/>
<Typoword="Appellate"find="\b()ppelat(e|i+)\b"replace="$1ppellat$2"/>
<Typoword="Application"find="\b()pplicaiton(s)?\b"replace="$1pplication$2"/>
<Typoword="(Dis)Appoint"find="\b(is)?s?()(?:(?:sp*)?point|ppoitn?)(*)\b"replace="$1$2ppoint$3"/>
<Typoword="(Ap/De)preciate"find="\b(p|e)pr(?:e(?:acia|cai)|i(?:c(?:ai|ia)|ecia))(+)\b"replace="$1precia$2"/>
<Typoword="Approaches"find="\b()p+roach()\b"replace="$1pproache$2"/>
<Typoword="(In)Appropriate"find="\b(|na)p(?:prop(?:ia|r(?:ai?|opia))|ropri?a)t(+)\b"replace="$1ppropriat$2"/>
<Typoword="Approximate"find="\b()p+rox(?:am|i(?:a(?:m|tema)?|m|om)|om)t(+)\b"replace="$1pproximat$2"/>
<Typoword="Approximately"find="\b()p++x+*m+{2,7}y(?<!pproximately)\b"replace="$1pproximately"/>
<Typoword="Aqueduct_"find="\b()quaduct(s)?(?<!Mental\s{1,9}quaducts?)\b"replace="$1queduct$2"/>
<Typoword="Arbitrary"find="\b()r?b(?:ita|r(?:bitr?e|it(?:a|ra)))r(i(?:ly|ness)|y)\b"replace="$1rbitrar$2"/>
<Typoword="Arboretum"find="\b()rbo(?:ri|ure)tum\b"replace="$1rboretum"/>
<Typoword="Archetype"find="\b()rchi?typ(al|es?|ic*)\b"replace="$1rchetyp$2"/>
<Typoword="Archimedean"find="\brchmedian\b"replace="Archimedean"/>
<Typoword="Architect"find="\b()(?:rch(?:ec?|ic|oc?)te(?:ch?t?|t)|chitect)(s?|ur+)\b"replace="$1rchitect$2"/>
<Typoword="Architectural"find="\b()rchitectual(ly)?\b"replace="$1rchitectural$2"/>
<Typoword="Architecture"find="\b()rch(?:ctec(?:ht?|t)|te(?:c(?:ht?)?|t))ur(+)\b"replace="$1rchitectur$2"/>
<Typoword="Argument"find="\b()rguement(ive|s?|a(?:ti(?:on|ve(?:ly)?))?|um)\b"replace="$1rgument$2"/>
<Typoword="Armistice"find="\b()rm(?:ast|ista)e(s)?\b"replace="$1rmistice$2"/>
<Typoword="Arose"find="\b()rised\b(?<!\bha(?:|ve)\s+rised)"replace="$1rose"/>
<Typoword="Arisen"find="\b()rised\b(?<=\bha(?:|ve)\s+rised)"replace="$1risen"/>
<Typoword="Around_"find="(?!\bAroud\b)\b()r(?:o(?:d|u(?:dn|nf))|ro(?:nd|un?d)|und)\b"replace="$1round"/><!--avoid name/city Aroud-->
<Typoword="Article"find="\b()rt(?:cile|i(?:cl?|lce))(s)?\b"replace="$1rticle$2"/>
<Typoword="Artillery"find="\b()rtil(?:|la)r+y\b"replace="$1rtillery"/>
<Typoword="Artist"find="\b()r(?:iti?s|tsi)t(ic(?:ally)?|s?)\b"replace="$1rtist$2"/>
<Typoword="Ascend"find="\b()(?:cce|sece)n(d(?:ed|ing|s?)|sions?)\b"replace="$1scen$2"/>
<Typoword="Ascetic"find="\b()setic(ally|ism|s?)\b"replace="$1scetic$2"/>
<Typoword="Aside"find="\b()sside\b"replace="$1side"/>
<Typoword="Asphyxiate"find="\b()sphyxai?t(e?|i(?:ng|on))\b"replace="$1sphyxiat$2"/>
<Typoword="Assassin"find="\b()s+as(?:|sa)n(at(?:e?|ions?)|s?)\b"replace="$1ssassin$2"/>
<Typoword="Assassinate"find="\b()ss(?:asi|is)nat(e?|ions?)\b"replace="$1ssassinat$2"/>
<Typoword="Assassinated"find="\b()ssasined\b"replace="$1ssassinated"/>
<Typoword="Assassination"find="\b()ssassintation\b"replace="$1ssassination"/>
<Typoword="Assault"find="\b()s(?:au|sa?)lt(ed|ing|s?)\b"replace="$1ssault$2"/>
<Typoword="(Dis/Re)Assemble"find="\b(|isa|ea)s(?:embe?|semp)l(+)\b"replace="$1ssembl$2"/>
<Typoword="(As/Re/Reas)sembly"find="\b(s|e(?:as)?)sembel(ance|ed|ing|y)\b"replace="$1sembl$2"/>
<Typoword="Assertion"find="\b()ssertati(ons?|ve*)\b"replace="$1sserti$2"/>
<Typoword="Assess(ed/ment)"find="\b()sses(ed|ment)\b"replace="$1ssess$2"/>
<Typoword="Assign"find="\b()sign(ed|ing|ments?|s?)\b"replace="$1ssign$2"/>
<Typoword="Assign_"find="\b()ss(?:ing|s+ign)(ed|ing|ments?|s)\b"replace="$1ssign$2"/><!--avoid Assing-->
<Typoword="Assist"find="\b()s(?:is+|si(?:ss)?)t(an(?:ce|ts?)|ed|ing|s?)\b"replace="$1ssist$2"/>
<Typoword="(As/Re)sistant"find="\b(s|e)s?i(?:s+te|t)n(ces?|t*)\b"replace="$1sistan$2"/>
<Typoword="Associate"find="\b()s(?:oci|soi?c)ai?t(e?|i(?:ng|ons?))\b"replace="$1ssociat$2"/>
<Typoword="(Un)Assume"find="\b(|na)s(?:s+umm|um)(e?|ing(?:ly)?|ptions?)\b"replace="$1ssum$2"/>
<Typoword="Astronomy"find="\b()stonom(ers?|ic*|y)\b"replace="$1stronom$2"/>
<Typoword="Asymmetric"find="\b()s(?:sy|y)metr(ic*|y)\b"replace="$1symmetr$2"/>
<Typoword="Atatürk"find="\bAtaturk\b"replace="Atatürk"/>
<Typoword="Atheist"find="\b()thies(m|t(?:ic|s?))\b"replace="$1theis$2"/>
<Typoword="Atheistic"find="\b()theistical\b"replace="$1theistic"/>
<Typoword="Athenian"find="\b()thenean(s)?\b"replace="$1thenian$2"/>
<Typoword="Athlete"find="\b()thelet(es?|ic*)\b"replace="$1thlet$2"/>
<Typoword="Atlantic"find="\bAltantic\b"replace="Atlantic"/>
<Typoword="Atrocity"find="\b()ttroci(ous*|t(?:ies|y))\b"replace="$1troci$2"/>
<Typoword="Attaché"find="\b()ttach(?:ee|è)(s)?\b"replace="$1ttaché$2"/>
<Typoword="Attach"find="\b()tt?atch(able|e|ing|ments?)?\b"replace="$1ttach$2"/>
<Typoword="Attempt"find="\b()t(?:empt|tem)(able|ed|ing|s?)\b"replace="$1ttempt$2"/>
<Typoword="Attendant"find="\b()t(?:end|tende)n(ces?|ts?)\b"replace="$1ttendan$2"/>
<Typoword="(Un)Attend(ed/ing)"find="\b(|na)t(?:end?|t+en)(ed|ing)\b"replace="$1ttend$2"/>
<Typoword="(In)Attention"find="\b(|na)t(?:ent|tens)i(ons?|ve(?:ness)?)\b"replace="$1ttenti$2"/>
<Typoword="Attitude"find="\b()t(?:it+u|tit(?:i|tu))d(es|inal*|s)\b"replace="$1ttitud$2"/>
<Typoword="(Un)Attractive"find="\b(|na)ttrative(ly|ness)?\b"replace="$1ttractive$2"/>
<Typoword="Audience"find="\b()ude?ia?nce(s)?\b"replace="$1udience$2"/>
<Typoword="Australia"find="\bustr(?:ail|ia?l|la?)i?a(ns?)?\b"replace="Australia$1"/>
<Typoword="Australasia"find="\bustra(?:il|li)asia(ns?|s?)\b"replace="Australasia$1"/>
<Typoword="Author"find="\b()utor(s)?\b(?<!Autor|del\s+autor)"replace="$1uthor$2"/><!--avoid name Autor, and "del autor" (Spanish) -->
<Typoword="author"find="\bauther(s)?\b"replace="author$1"/><!--avoid names Auther/Authers-->
<Typoword="(A/Ina/S)uspicious"find="\b(|na|)uspiio(ns?|us(?:ly)?)\b"replace="$1uspicio$2"/>
<Typoword="Authoritative"find="\b()(?:th|uth?r?)or(?:t)?tive(*)\b(?<!uthoritative*)"replace="$1uthoritative$2"/>
<Typoword="Authorities"find="\b()(?:thorit(?:e|hie|ier?)|ut(?:h(?:orit(?:e|hie|ier)|rorit(?:e|hie|ier?))|orit(?:e|hie|ier?)))s\b"replace="$1uthorities"/>
<Typoword="Authority"find="\b()(?:thorith?|ut(?:h(?:orith|rorith?)|orith?))(+)\b(?<!Autorit(?:eit|ratto))"replace="$1uthorit$2"/>
<Typoword="Auto-da-fé"find="\b()uto-da-f\b"replace="$1uto-da-fé"/>
<Typoword="Autobiography"find="\b()uthobiograph(i(?:c*|es)|y)\b"replace="$1utobiograph$2"/>
<Typoword="Autochthonous"find="\b()utoc(?:ht|th?)on(es|ism|ous(?:ly)?|?)\b"replace="$1utochthon$2"/>
<Typoword="Automobile"find="\b()utomibil(es?|ing)\b"replace="$1utomobil$2"/>
<Typoword="Autonomous"find="\b()uto(?:mo(?:m|n(?:om)?)|non)ous(*)\b"replace="$1utonomous$2"/>
<Typoword="Auxiliary"find="\b()uxil(?:li?)?ar(ies|y)\b"replace="$1uxiliar$2"/>
<Typoword="Available"find="\b(|na)vailalbe\b"replace="$1vailable"/>
<Typoword="(Un)Available"find="\b(|na)v(?:ai?|i)(?:ai|ia?|l(?:ai|ia?)?)b(+)\b"replace="$1vailab$2"/>
<Typoword="Avalanche"find="\b()valance(s)?\b"replace="$1valanch$2"/>
<Typoword="Average"find="\b()v(?:ara?|er|ra?)g(e?|ing)\b"replace="$1verag$2"/>
<Typoword="Averaged"find="\b()veragee()\b"replace="$1verage$2"/>
<Typoword="Aviation"find="\b()vai?t(ion|ors?)\b"replace="$1viat$2"/>
<Typoword="Await"find="\b()wat(ed|ing|s)\b"replace="$1wait$2"/>
<Typoword="Award"find="\b()war(ed|ing|s)\b"replace="$1ward$2"/>
<Typoword="Award-winning"find="\b()ward(?<!+\s+Award)+winning\b"replace="$1ward-winning"/>
<Typoword="Awareness"find="\b()war(?:enes|ne)ss+\b"replace="$1wareness"/>
<Typoword="Away"find="\b()(?:wy|yw)a\b"replace="$1way"/>
<Typoword="Awkward"find="\b()(?:ckw|kw|wk)ard(ly|ness)?\b(?<!Akward\b)"replace="$1wkward$2"/><!--avoid Joseph Akward-->

B

<Typoword="Bureaucrat"find="\b()(?:eaur|ur(?:e?|u?))cra(+)\b"replace="$1ureaucra$2"/><!--edited 2022-04-26-->
<Typoword="Back"find="\b()(?:akc|cak)(bo(?:ards?|ne*)|d(?:at*|oors?)|e(?:d|rs?)|fir*|h(?:and*|oe?)|ing|l(?:ash|i(?:ght*|t)|og*)|pack*|s(?:ides?|pin*|tage)?|wa(?:rds?|sh)|yards?)?\b"replace="$1ack$2"/>
<Typoword="Background"find="\b()ack(?:gr|g)ound\b(?<!(?:gain(?:ed|ing|s?)|making|pulled|scaled|t(?:ak(?:e|ing)|ook)|win) back ground\b)"replace="$1ackground"/><!--avoid phrases such as take back ground-->
<Typoword="(B/M/S)adly"find="\b()add+ly\b"replace="$1adly"/>
<Typoword="(Un)Balance"find="\b(|nb)al(?:e|la)nc(+)\b(?<!Bal(?:enciaga|lanc(?:e|ourt))\b)"replace="$1alanc$2"/><!--avoid Ballance, Ballancourt, Balenciaga-->
<Typoword="Banana"find="\b()an(?:an|na)na(s)?\b"replace="$1anana$2"/>
<Typoword="Bankrupt"find="\b()an(?:krup|rupt)(c+|ed|s?)\b"replace="$1ankrupt$2"/>
<Typoword="Barbiturate"find="\b()arbituate(s)?\b"replace="$1arbiturate$2"/>
<Typoword="Battalion"find="\b()at(?:al?|tal)lion(s)?\b"replace="$1attalion$2"/>
<Typoword="Beachhead"find="\b()eachead(s)?\b"replace="$1eachhead$2"/>
<Typoword="Beat"find="\b()eated\b"replace="$1eat"/>
<Typoword="Beautiful"find="\b()e(?:a(?:t|uty)|ua?t)full?(ly)?\b"replace="$1eautiful$2"/>
<Typoword="Beauty"find="\b()eua?ty\b"replace="$1eauty"/>
<Typoword="Because"find="\b()(?:acuse|c(?:asue|ause|ouse|u(?:ase?|se)))\b"replace="$1ecause"/>
<Typoword="Become"find="\b()eco(?:mm)?(es?|ing)\b"replace="$1ecom$2"/>
<Typoword="Beginner"find="\b()eg(?:gin?|i)n(ers?|ings?)\b"replace="$1eginn$2"/>
<Typoword="Beginning"find="\b()egin(?:inin|ni)g(s)?\b"replace="$1eginning$2"/>
<Typoword="Begins"find="\b()eggin(n(?:ers?|ings?)|s)\b"replace="$1egin$2"/>
<Typoword="(Mis)Behavior"find="\b(|isb)ehavoi?(r*|ur*)\b"replace="$1ehavio$2"/>
<Typoword="Beijing"find="\bejing\b"replace="Beijing"/>
<Typoword="Being"find="\b()eeing(s)?\b"replace="$1eing$2"/>
<Typoword="being"find="\bbeng\b"replace="being"/><!--avoid surname Beng-->
<Typoword="Beirut"find="\bei?ruit\b"replace="Beirut"/>
<Typoword="Beleaguered"find="\b()eleagr(ed)?\b"replace="$1eleaguer$2"/>
<Typoword="Belgium"find="\beligum\b"replace="Belgium"/>
<Typoword="(Dis/Mis/Non/Un)Believ(ing/able)"find="\b(|isb|onb|nb)ele?ie?ve(ab(?:ility|l)|ing)\b"replace="$1eliev$2"/><!--to catch "e" after "v" with these endings-->
<Typoword="Belligerent"find="\b()el(?:iger|ligera)n(ce|t(?:ly|s?))\b"replace="$1elligeren$2"/>
<Typoword="Bellwether"find="\b()ellweather(s)?\b"replace="$1ellwether$2"/>
<Typoword="Beneficial"find="\b()en(?:aficia|eficai?|ific(?:ai?|ia))(*)\b"replace="$1eneficia$2"/>
<Typoword="Benefit"find="\b()enfit(s?|t+)\b"replace="$1enefit$2"/>
<Typoword="Benjamin"find="\benajmin\b"replace="Benjamin"/>
<Typoword="Bernoulli"find="\bernou(?:il)?li\b"replace="Bernoulli"/>
<Typoword="Bestiality"find="\b()eastiali?ty\b"replace="$1estiality"/>
<Typoword="Between"find="\b()e(?:t(?:en|weem)|wteen)\b"replace="$1etween"/>
<Typoword="Beyond"find="\b()eyo(?:ng|und)\b"replace="$1eyond"/>
<Typoword="(B/M/Tr)illionaire"find="\b(|(?:ulti)?|r)il+ioni?are(){0,4}\b"replace="$1illionaire$2"/>
<Typoword="Bizarre"find="\b()iz(?:ar|zar+)e(ly)?\b(?<!Some Bizzare)"replace="$1izarre$2"/><!--allow ]-->
<Typoword="Blame"find="\b()laime?\b"replace="$1lame"/>
<Typoword="Blitzkrieg"find="\b()litkreig\b"replace="$1litzkrieg"/>
<Typoword="Bombardment"find="(?<!\bes?\s{1,9})\b()ombar(?:de)?ment(s)?\b(?!\s{1,9}es?\b)"replace="$1ombardment$2"/><!--avoid French word bombardement by use of lookaround for French articles-->
<Typoword="Bombardement (French)"find="\b()omard?ment(s)?\b(?:(?=(?:\s+(?:(?:es?|u)|e|qui))\b)|(?<=\b(?:es?\s{1,9}|es?\s{1,9})omard?ments?))"replace="$1ombardement$2"/>
<Typodisabled="Bonanno"find="\b()onnano\b"replace="$1onanno"/>
<Typoword="Boundary"find="\b()o(?:nda?r|under)(ies|y)\b"replace="$1oundar$2"/>
<Typoword="Boxes"find="\b()ox()\b"replace="$1oxe$2"/>
<Typoword="Brazilian"find="\bra(?:sil?|zil)lian(s)?\b(?<!Brasilian)"replace="Brazilian$1"/><!--avoid surname Brasilian-->
<Typoword="Breakthrough"find="\b()reakt(?:h(?:ough|rought)|rough|tough)(s)?\b"replace="$1reakthrough$2"/>
<Typoword="Brethren"find="\b()rethe(?:re?)?n\b(?<!A(?:rthur|\.)\s+Brethen|G\.A\.\s+Brethen|H\.\s+Brethen)(?!\s+Coliseum)"replace="$1rethren"/>
<Typoword="Brief"find="\b()reif(e(?:|st)|ings?|ly|s?)\b"replace="$1rief$2"/>
<Typoword="Brillian(t/ce)"find="(?!\bBrillant\b)\b()rilan(c|t(?:ly)?)\b"replace="$1rillian$2"/><!--avoid surname Brillant-->
<Typoword="Brimstone"find="\b()rimestone(s)?\b"replace="$1rimstone$2"/>
<Typoword="British"find="\britt+(anni|ish)\b"replace="Brit$1"/>
<Typoword="Brittany"find="\bBrit+anny\b"replace="Brittany"/>
<Typoword="Broadcast"find="\b()r(?:a(?:d|od)|o(?:a(?:da)?|d))cast(*)\b"replace="$1roadcast$2"/>
<Typoword="Broadly"find="\b()roadyl?\b(?<!\bBroady\b)"replace="$1roadly"/><!--avoid name Broady-->
<Typoword="Broccoli"find="\b()roc(?:c+oll|ol+)i\b"replace="$1roccoli"/>
<Typoword="Broke"find="\bborke()?\b"replace="broke$1"/><!--avoid Borken (place) & Borke (name)-->
<Typoword="Buñuel"find="\bBunuel\b"replace="Buñuel"/>
<Typoword="(Re)Build (1)"find="\b(|eb)ui()l?(ings?|s?)\b"replace="$1uil$2$3"/>
<Typoword="(Re)Build (2)"find="\b(|eb)(?:i(?:li?|ul)|uli?)(d(?:ings?|s?)|t)\b(?<!Bild|der Bilt|Kampung Bilit)"replace="$1uil$2"/><!--avoid surnames Bild,\s* der Bilt variants-->
<Typoword="(Re/In/Pre/Up/Un/Over/Jerry)Built"find="\b(|nb|erryb|verb|reb|eb|b)uildt\b"replace="$1uilt"/>
<Typoword="Buoy"find="\b(B(?!ouy\b)|b)ouy(an(?:cy|t)|ed|s?)\b"replace="$1uoy$2"/><!--avoid place Bouy-->
<Typoword="Buoyant"find="\b()(?:ou?y|uo)an(cy|t(?:ly)?)\b"replace="$1uoyan$2"/>
<Typoword="Burglar"find="\b()urg(?:le|ul)r(*)\b"replace="$1urglar$2"/>
<Typoword="Burial"find="\b()urri(als?|ed)\b"replace="$1uri$2"/>
<Typoword="Buttress"find="\b()utress(e|ing)?\b"replace="$1uttress$2"/>

C

<Typoword="Caesar"find="\beasar(ean?s?|s?)\b"replace="Caesar$1"/>
<Typoword="Cafeteria"find="\b()afteria(s)?\b"replace="$1afeteri$2"/>
<Typoword="(De)Caffeinate"find="\b(|ec)af(?:ei|fi?e?)nat(e?|i(?:ng|on))\b"replace="$1affeinat$2"/>
<Typoword="Caisson"find="\b()as+ion(s)?\b"replace="$1aisso$2"/>
<Typoword="(Mis/Re)Calculate"find="\b(|isc|ec)a+u?+t(?<!alculat)(e?|i(?:ng|ons?)|ors?)\b"replace="$1alculat$2"/>
<Typoword="Calendar"find="\b()alander(s)?\b(?<!Milt(?:on)?\s+Calander\b)"replace="$1alendar$2"/><!--avoid Milt Calander-->
<Typoword="Caliber"find="\b()al(?:a|li)b(ers?|res?|rat(?:e?|i(?:ng|on)))\b(?<!Quintus\s+Calaber)"replace="$1alib$2"/><!--avoid Quintus Calaber-->
<Typoword="Call(ed/ing)"find="\b()al(ed|ing)\b"replace="$1all$2"/>
<Typoword="Calligraphy"find="\b()aligraph(ers?|i(?:c|sts?)|y)\b"replace="$1alligraph$2"/>
<Typoword="Cambridge"find="\bambrigd?e\b"replace="Cambridge"/>
<Typoword="Camouflage"find="\b()amfla?g(e?|ing)\b(?<!Camoflauge)"replace="$1amouflag$2"/><!--avoid Camoflauge (rapper)-->
<Typoword="Campaign"find="\b()ampa(?:aig|gin|i(?:g|ng?))(e(?:d|rs?)|ing|s?)\b"replace="$1ampaign$2"/>
<Typoword="Can"find="\b()na\b"replace="$1an"/>
<Typoword="Cancel"find="\b()ancl(ations?|ed|ing|l(?:ations?|ed|ing))\b"replace="$1ancel$2"/>
<Typoword="Candidate (1)"find="\b()and(?:adat|i(?:at|d(?:iat|ta)))(es?|ures?)\b"replace="$1andidat$2"/>
<Typoword="Candidate (2)"find="\b()anda(c(?:ies|y)|t(?:ures?|e(?:s|\b(?<!Canidate))))\b"replace="$1andida$2"/><!--avoid rapper Canidate-->
<Typoword="Canister"find="\b()annister(s)?\b"replace="$1anister$2"/>
<Typoword="Cannot"find="\b()a(?:nn)?not\b"replace="$1annot"/>
<Typoword="Cantaloupe"find="\b()antalope(s)?\b"replace="$1antaloupe$2"/>
<Typoword="Capital"find="\b()aptial(is*|s?)\b"replace="$1apital$2"/>
<Typoword="Capitalize"find="\b()apitiliz(*)\b"replace="$1apitaliz$2"/>
<Typoword="Captured"find="\b()aptud\b"replace="$1aptured"/>
<Typoword="Carcass"find="\b()arcas\b"replace="$1arcass"/>
<Typoword="Career"find="\b()arree?r(\b(?<!Carrer)|s)\b"replace="$1areer$2"/><!--avoid name Carrer-->
<Typoword="Caribbean"find="\bar(?:ab?|i|rb?)bean\b"replace="Caribbean"/>
<Typoword="Carmelite"find="\barmalite(s)?\b"replace="Carmelite$1"/>
<Typoword="Carriage"find="\b()arr?age(es?|s?|(?:ays?|orks?))\b"replace="$1arriage$2"/>
<Typoword="Carthaginian"find="\barthagian(s)?\b"replace="Carthaginian$1"/>
<Typoword="Cartilage"find="\b()artil+(?:ad|d?)g(e|inous)\b"replace="$1artilag$2"/>
<Typoword="Cartography"find="\b()art(?:a|ho)graph(ers?|ic|y)\b"replace="$1artograph$2"/>
<Typoword="Cartridge"find="\b()art(?:drid?|ri)ge(s)?\b"replace="$1artridge$2"/>
<Typoword="Cassette"find="\b()as(?:et?|se)te(s)?\b"replace="$1assette$2"/>
<Typoword="Cassowary"find="\b()as(?:aw|owar?|s(?:aw|owar))r(ies|y)\b"replace="$1assowar$2"/>
<Typoword="Catapult"find="\b()atapault(ed|ing|s?)\b"replace="$1atapult$2"/>
<Typoword="Catastrophes"find="\b()atastrophies\b"replace="$1atastrophes"/>
<Typoword="Catechism"find="\b()athch?is(ms?|t(?:ic|s?))\b"replace="$1atechis$2"/>
<Typoword="Category"find="\b(|ubc)(?:at(?:ag|egi)|taeg)or(+)\b"replace="$1ategor$2"/>
<Typoword="Caterpillar"find="\b()at(?:e(?:pil|rpi)|te(?:pil?|rpil?))lar(s)?\b"replace="$1aterpillar$2"/>
<Typoword="Catholic"find="\b()ath(?:el|lo|olo)c(ism|s?)\b"replace="$1atholic$2"/>
<Typoword="Caucasian"find="\b()aucasion(s)?\b"replace="$1aucasian$2"/>
<Typoword="Caucuses"find="\b()u?acuse()\b"replace="$1aucuse$2"/>
<Typoword="Ceiling"find="\b()i?eling(ed|s?)\b"replace="$1eiling$2"/>
<Typoword="Celebrity"find="\b()elebrt(ies|y)\b"replace="$1elebrit$2"/>
<Typoword="Celebr-"find="\b()eleber(at(?:e?|i(?:ng|ons?)|ory)|it(?:ies|y))\b"replace="$1elebr$2"/>
<Typoword="Cellpadding"find="\b()el(?:lpa|pad)d+ing(s)?\b"replace="$1ellpadding$2"/>
<Typoword="Celsius"find="\b(?:cel|Celc)ius\b"replace="Celsius"/>
<Typoword="Cemetery"find="\b()emen?ta?re?(ies|y)\b"replace="$1emeter$2"/>
<Typoword="Censor"find="\b()ensur(s)?\b"replace="$1ensor$2"/>
<Typoword="Census"find="\b()encus\b"replace="$1ensus"/><!--avoid latin word sensus-->
<Typoword="Centenary"find="\b()enten(?:e|na)r(i(?:ans?|es)|y)\b"replace="$1entenar$2"/>
<Typoword="(Cent|Mill)ipede"find="\b(ent|ill)pede(s)?\b"replace="$1ipede$2"/>
<Typoword="Central"find="\b()enteral(i(?:s(?:*|s?)|z*)|ly)?\b"replace="$1entral$2"/>
<Typoword="Century"find="\b()ent(?:ru|ua)r?(i(?:es|ons?)|y)\b"replace="$1entur$2"/>
<Typoword="Ceremony"find="\b()era?mon(i(?:al*|es|ous*)|y)\b"replace="$1eremon$2"/>
<Typoword="(Un)Ceremonious"find="\b(|nc)ermon(ies|i(?:al|ous)(?:ly)?|y)\b"replace="$1eremon$2"/>
<Typoword="César Franck"find="\bCsar\s+Franc?k\b"replace="César Franck"/>
<Typoword="Cézanne"find="\bzanne\b"replace="Cézanne"/>
<Typoword="Challenge"find="\b()hal(?:en|l(?:an|e))g(e(?:able|?|rs?)|ing)\b"replace="$1halleng$2"/>
<Typoword="Champagne"find="\b()hampange\b"replace="$1hampagne"/>
<Typoword="Champion"find="\b()hampoin(*)\b"replace="$1hampion$2"/>
<Typoword="Champs-Élysées"find="\bhamps-lyses\b"replace="Champs-Élysées"/>
<Typoword="Chancellor"find="\b()hancel(?:|le)r(s(?:hip|ville)?)?\b"replace="$1hancellor$2"/>
<Typoword="(Inter/Un)Change"find="\b(|nterc|nc)h(?:ane?g|nage)(s?\b(?<!hangs?)|able|d)\b"replace="$1hange$2"/><!--avoid name Chang(s), chang-->
<Typoword="(Inter/Un/Ex/Re/Dis)Cha(n/r)geable"find="\b(|isc|xc|nterc|ec|nc)ha()gb(ility|l*)\b"replace="$1ha$2geab$3"/>
<Typoword="Character"find="\b()(?:a(?:h(?:are?ct|ract)|rach?t)|h(?:ar(?:a(?:c(?:hte|t)|te)|ct|ect)|r(?:a(?:c(?:hte|t)|te)|ct|ecte)))r(*)\b(?<!(?:aracteribus|haracter))"replace="$1haracter$2"/><!--avoid self & Latin-->
<Typoword="(Un)Characteristic(s/ally)"find="\b(|nc)hara?(?:ctr|i|li|tr)s?i?s?i?ti?c(all?y|s?)\b(?<!(?:|nc)haracteristic(?:all?y|s?))"replace="$1haracteristic$2"/>
<Typoword="Chargé d'affaires"find="\b()harg(?:\s+d|é\s+(?:D|d))()ffaires\b"replace="$1hargé d'$2ffaires"/>
<Typoword="Charisma"find="\b()h?arsma(tic(?:ally|s?))?\b(?<!Car(?:asmatic\b|isma\b))(?<!harisma(?:tic(?:ally|s?))?\b)"replace="$1harisma$2"/><!--avoid Carisma or Carasmatic-->
<Typoword="Charitable"find="\b()hartiable\b"replace="$1haritable"/>
<Typoword="Charles(ton)"find="\bChalres(ton)?\b"replace="Charles$1"/>
<Typoword="Chaser"find="\b()hasr(s)?\b"replace="$1hase$2"/>
<Typoword="Chat"find="\b()aht(s)?\b"replace="$1hat$2"/>
<Typoword="Check"find="\b()hekc(ing|s?)\b"replace="$1heck$2"/>
<Typoword="Chemical"find="\b()hemcial(ly|s?)\b"replace="$1hemical$2"/>
<Typoword="Chemist"find="\b()hemest(ry|s?)\b"replace="$1hemist$2"/>
<Typoword="Chief"find="\b()heif(doms?|ly|s(?:hips?)?|tains?)?\b"replace="$1hief$2"/>
<Typoword="Childbirth"find="\b()hildbird\b"replace="$1hildbirth"/>
<Typoword="Children"find="\b(|randc|tepc)hil(?:dere?|re)n\b"replace="$1hildren"/>
<Typoword="Children's"find="\b(|randc|tepc)hild(?:er|re)ns(?:s?)?\b"replace="$1hildren's"/>
<Typoword="Choreograph"find="\b()horo?egraph(e(?:d|rs?)|i(?:es|ng)|?)\b"replace="$1horeograph$2"/>
<Typoword="Chorus"find="\b()hrous(es|ing)?\b"replace="$1horus$2"/>
<Typoword="(Mis)Chosen"find="\b(|isc)hoosen\b"replace="$1hosen"/>
<Typoword="Chronicle"find="\b()hor?nicl(e(?:?|rs?)|ing)\b"replace="$1hronicl$2"/>
<Typoword="Church"find="\b()(?:hr?u|ur)ch(es)?\b"replace="$1hurch$2"/>
<Typoword="Cigarette"find="\b()ig(?:ar(?:e|ret?)|gar(?:et?|ret?))te(s)?\b"replace="$1igarette$2"/>
<Typoword="Circuit"find="\b()(?:ir(?:cu|icui?|ui)|urcui)t(*)\b"replace="$1ircuit$2"/>
<Typoword="(Re)Circulation"find="\b(|ec)irculaton(s)?\b"replace="$1irculation$2"/>
<Typoword="Circumcision"find="\b()ircum(?:+ic|sc?i)ion(s)?\b"replace="$1ircumcision$2"/>
<Typoword="Citizen"find="\b()it(?:iz(?:a|ie)|ze)n(ry|s(?:hips?)?)?\b"replace="$1itizen$2"/>
<Typoword="Citrus"find="\b()irts\b"replace="$1itrus"/>
<Typoword="Civilian"find="\b()ivillian(iz(?:ation|e?|ing)|s?)\b"replace="$1ivilian$2"/>
<Typoword="(Re)Claims"find="\b(|ec)laimes\b"replace="$1laims"/>
<Typoword="Clarinet"find="\b()larinette?(s)?\b(?<!\b(?:deux|pour)\s+clarinettes?)"replace="$1larinet$2"/><!--avoid pour clarinette-->
<Typoword="Class"find="\b()las(e|ing|if(?:i*|y*))\b(?<!las(?:es?)?)\b"replace="$1lass$2"/><!--avoid (C\c)las(e/es)-->
<Typoword="Classic"find="\b()lasic(al*|i(?:ss?|z*)|s?)\b"replace="$1lassic$2"/>
<Typoword="Clear_"find="\b()laer(e(?:|st)|ly)\b"replace="$1lear$2"/>
<Typoword="(Un)Clear"find="\b(|nc)lera\b"replace="$1lear"/>
<Typoword="Coast"find="\b()aost(ed|ing|s?)\b"replace="$1oast$2"/>
<Typoword="Cocktail"find="\b()otail(\b|s\b(?<!Coctails))"replace="$1ocktail$2"/><!--avoid "Coctails" (band)-->
<Typoword="Coffee"find="\b()ofe(houses?|pots?|s(?:hops?)?)?\b"replace="$1offee$2"/>
<Typoword="Coincide"find="\b()o-incide(?|nt(?:al(?:ly)?)?)\b"replace="$1oincide$2"/>
<Typoword="Collaborate"find="\b()ol(?:abr+|lab(?:r+))at(+)(?:\stogether)?\b(?<!ollaborat+)"replace="$1ollaborat$2"/>
<Typoword="Collapse"find="\b()oll(?:asp|pas)(e?|i(?:ble|ng))\b"replace="$1ollaps$2"/>
<Typoword="Collateral"find="\b()olateral(iz(?:e?|ing)|ly)?\b"replace="$1ollateral$2"/>
<Typoword="Colleague"find="\b()ol(?:ea|le)gue(s)?\b"replace="$1olleague$2"/>
<Typoword="* colleague"find="\bwork\s+colleague(s)?\b"replace="colleague$1"/><!--avoid "Work" to maintain sentence-case-->
<Typoword="Colleg-"find="\b()oleg(es?|iate)\b"replace="$1olleg$2"/>
<Typoword="(Re)Collection"find="\b(|ec)ol(?:el?ct|lect?)(ons?|ve(?:ly|s?))\b"replace="$1ollecti$2"/>
<Typoword="Colonizer"find="\b()oloniator(s)?\b"replace="$1olonizer$2"/>
<Typoword="Colonnade"find="\b()ol+onade(s)?\b"replace="$1olonnade$2"/>
<Typoword="Colony"find="\b()ollon(i(?:es|z(?:ations?|e?))|y)\b"replace="$1olon$2"/>
<Typoword="Colossal"find="\b()ol(?:los?|o)s(al(?:ly)?|us)\b"replace="$1oloss$2"/>
<Typoword="Column"find="\b()olun?m+(\b(?<!Colum)|s\b)"replace="$1olumn$2"/><!--avoid name Colum-->
<Typoword="Contemp-"find="\b()omtemp(+)\b"replace="$1ontemp$2"/>
<Typoword="Combination"find="\b()omb(?:anatio|in(?:ati|tatio)|onatio)n(s)?\b"replace="$1ombination$2"/>
<Typoword="Combustion"find="\b()ombusi(on|ve(?:ly)?)\b"replace="$1ombusti$2"/>
<Typoword="Comeback"find="\b()omback(s)?\b"replace="$1omeback$2"/>
<Typoword="Comedic"find="\b()ommedi(ans?|c)\b"replace="$1omedi$2"/>
<Typoword="(Un)Comfortable"find="\b(|nc)o(?:mforti|nforta)bl()\b"replace="$1omfortabl$2"/>
<Typoword="(-)Coming"find="(?<=\b(?:*c|+c|))oming(s)?\b(?<!Commings)"replace="oming$1"/><!--avoid surname Commings; cheapened expensive beginning-->
<Typoword="Command(eer/o/ment)"find="\b()om(?:and|madn)(e(?:d|er(?:ed|ing|s?)|rs?)|oe?s?\b(?<!omandos?)|ments?)?\b"replace="$1ommand$2"/><!--avoid Spanish title C/omandos-->
<Typoword="Commemorate (1)"find="\b()om(?:em+r?rt|me(?:m(?:ert|m+rrt|orit|rrt)|r(?:at|rt)))(+)\b(?<!ommemorat+\b)"replace="$1ommemorat$2"/><!--avoid self-->
<Typoword="Commemorate (2)"find="\b()om+em+(?:er|ori)t(e?|i(?:ng|ons?|ves?))\b"replace="$1ommemorat$2"/>
<Typoword="Commercial"find="\b()om(?:eri?|meri)ci?al(\b(?<!Comercial)|i(?:ation|e?|ing)|iss?|ly|s)\b"replace="$1ommercial$2"/><!--avoid Comercial, common Spanish/Portuguese word-->
<Typoword="(De)Commission"find="\b(|ec)om(?:is|m?|s)sion(e(?:d|rs?)|ing|s?)\b"replace="$1ommission$2"/>
<Typoword="Commitment"find="\b()om(?:it?|mit)tment(s)?\b"replace="$1ommitment$2"/>
<Typoword="Committ(ed/al)"find="\b()om(?:itt?|mit)(es?|ing|al\b(?<!omital))\b"replace="$1ommitt$2"/><!--avoid "comital"-->
<Typoword="Committee"find="\b(|ubc)om(?:itee?|m(?:t(?:ee?|te)|itty))(mn|person|s?|womn)\b"replace="$1ommittee$2"/>
<Typoword="Commodity"find="\b()omod+it(ies|y)\b"replace="$1ommodit$2"/>
<Typoword="(Un)Common"find="\b(|nc)omm(?:en|ong)(ali?t(?:ies|y)|ers?|ly|s?)\b(?<!Commens)"replace="$1ommon$2"/>
<Typoword="Commonwealth"find="\b()om+onweath\b"replace="$1ommonwealth"/>
<Typoword="(Tele)communicate"find="\b(|elec)omm(?:inic|u(?:i(?:c|n)|nc?i))at(e?|i(?:ons?|ve(?:ly)?)|ors?)\b"replace="$1ommunicat$2"/>
<Typoword="Communities"find="\b()omm?un?it+s\b(?<!ommunities)"replace="$1ommunities"/>
<Typoword="Commun-"find="\b(?!Comunal\b)()om(?:mun(?:nt?|t)|un(?:nt?|t?))(al(?:ly)?|i(?:ons?|ss?|t(?:ies|y)))\b"replace="$1ommun$2"/><!--avoid Comunal, place name-->
<Typoword="Company"find="\b()om(?:a(?:n|pa?n)|pna)(i(?:es|ons?)|y)\b"replace="$1ompan$2"/>
<Typoword="Comparative"find="\b()omp(?:ar?|era)tiv(e(?:ly|ness|s?)|ist)\b"replace="$1omparativ$2"/>
<Typoword="Comparison"find="\b()omparision(s)?\b"replace="$1omparison$2"/>
<Typoword="(In)Compatible"find="\b(|nc)ompa?ti?abl()\b"replace="$1ompatibl$2"/>
<Typoword="(In/Histo)Compatibility"find="\b(|istoc|nc)ompa(?:bi|ti?(?:abi?|ib))lit(ies|y)\b"replace="$1ompatibilit$2"/>
<Typoword="(In)Competent"find="\b(|nc)omp(?:at|et|it|tete)n(ce|t(?:ly)?)\b"replace="$1ompeten$2"/>
<Typoword="Competition"find="\b()o(?:mpet(?:t|itit?)|pmetit)(i(?:ons?|ve(?:ly|ness)?)|ors?)\b"replace="$1ompetit$2"/><!--see also "-petiti(on/ve)"-->
<Typoword="Compilation"find="\b()om(?:ilati?|p(?:iliati?|li(?:ati?|lati?))|pil(?:at|li?ati?))on(s)?\b"replace="$1ompilation$2"/>
<Typoword="(In)Complete"find="\b(|nc)ompl(?:eate?\b(?<!Compleat)|ate|eete)(?|ly|ness)\b"replace="$1omplete$2"/><!--avoid Compleat, (in)complet-->
<Typoword="(In)Completely"find="\b(|nc)omplet(?:elyl|le?y)\b"replace="$1ompletely"/>
<Typoword="Comp(l)eting"find="\b(ompl?et)et?i(ng|on?)\b"replace="$1i$2"/>
<Typoword="Composite"find="\b()omposate(s)?\b"replace="$1omposite$2"/>
<Typoword="Compound"find="\b()ompnd(*)\b"replace="$1ompound$2"/>
<Typoword="Comprehensive"find="\b()omphrehensi(bl|on|ve(?:ly)?)\b"replace="$1omprehensi$2"/>
<Typoword="Comprise"find="\b()onpris(e?|ing)\b"replace="$1ompris$2"/>
<Typoword="Compromise"find="\b()ompr(?:imi|omiz)(e?|ing)\b"replace="$1ompromis$2"/>
<Typoword="(Com/Pro)pulsory"find="\b(om|ro)pulsr(ies|y)\b"replace="$1pulsor$2"/>
<Typoword="Compute"find="\b()m?opute(|r(?:ie?|s?))\b"replace="$1ompute$2"/>
<Typoword="Concentrate"find="\b()onsentrat(e?|i(?:ng|ons?))\b"replace="$1oncentrat$2"/>
<Typoword="Concept"find="\b()on(?:cep()|sept)(*)\b"replace="$1oncept$2$3"/>
<Typoword="(Un)Concern"find="\b(|nc)onsern(ed|ing|s?)\b"replace="$1oncern$2"/>
<Typoword="Condemned"find="\b()ond(?:amn|em+)e()\b"replace="$1ondemne$2"/>
<Typoword="Condominium"find="\b()ondominum(s)?\b"replace="$1ondominium$2"/>
<Typoword="Confides"find="\b()onfids\b"replace="$1onfides"/>
<Typoword="Confirmation"find="\b()onfirmmation\b"replace="$1onfirmation"/>
<Typoword="Conform"find="\b()oform(ance|e(?:d|rs?)|ing)\b"replace="$1onform$2"/>
<Typoword="Confront"find="\b()onfont(ation(?:al|ists?)?|e(?:d|rs?)|ing|s?)\b"replace="$1onfront$2"/>
<Typoword="Congratulate"find="\b()ongradulat(e?|i(?:ng|ons)|ory)\b"replace="$1ongratulat$2"/>
<Typoword="Congregate"find="\b()ong(?:er?gr?|regr)at(+)\b"replace="$1ongregat$2"/>
<Typoword="Congressional"find="\b()ongresonal(ly)?\b"replace="$1ongressional$2"/>
<Typoword="Conjecture"find="\b()onjecutr(e?|ing)\b"replace="$1onjectur$2"/>
<Typoword="(Dis/Un)Connect"find="\b(|isc|nc)onect(ed|i(?:ng|ons?|ves?)|ors?|s?)\b"replace="$1onnect$2"/>
<Typoword="Connive"find="\b()oniv(e?|ing)\b"replace="$1onniv$2"/>
<Typoword="Connotation"find="\b()(?:an|o)notati(ons?|ve(?:ly)?)\b"replace="$1onnotati$2"/>
<Typoword="Conquered"find="\b()onqu(?:er(?:re)?|re)d\b"replace="$1onquered"/>
<Typoword="Conqueror"find="\b()onquerer(s)?\b"replace="$1onqueror$2"/>
<Typoword="(Sub/Un/Semi/Pre)Conscious"find="\b(|rec|(?:emic|ubc)|nc)onio(nabl|us(?:ly|ness)?)\b"replace="$1onscio$2"/>
<Typoword="(Sub/Un/Semi/Pre)Consciousness"find="\b(|rec|(?:emic|ubc)|nc)ons(?:ciou|ici?ous?)ness(es)?\b"replace="$1onsciousness$2"/>
<Typoword="Consecutive"find="\b()onsectut?ive(ly)?\b"replace="$1onsecutive$2"/>
<Typoword="Consensus"find="\b()on(?:cens|esenc|s(?:cens|enc?))us\b"replace="$1onsensus"/>
<Typoword="Consent"find="\b()onscent(ed|ing)\b"replace="$1onsent$2"/>
<Typoword="Conservative"find="\b()onservitiv(e(?:ly|s?)|ism)\b"replace="$1onservativ$2"/>
<Typoword="(Re)Consider"find="\b(|ec)on(?:cid|sdid?)er(abl|ed|ing|s?)\b"replace="$1onsider$2"/>
<Typoword="(In)Considerate"find="\b(|nc)onsiderite?(ly)?\b"replace="$1onsiderate$2"/>
<Typoword="(Re)Considered"find="\b(|ec)onsider(?:d|es)\b"replace="$1onsidered"/>
<Typoword="Consolidate"find="\b()onsoldat(e?|i(?:ng|ons?))\b"replace="$1onsolidat$2"/>
<Typoword="Consommé"find="\b()onsomm(s)?\b"replace="$1onsommé$2"/>
<Typoword="(In)Conspicuous"find="\b(|nc)onspici?ous(*)\b"replace="$1onspicuous$2"/>
<Typoword="Conspiracy"find="\b()onspiri(c(?:ies|y?)|tor*)\b"replace="$1onspira$2"/>
<Typoword="(In)Constantly"find="\b(|nc)onstanly\b"replace="$1onstantly"/>
<Typoword="Consternation"find="\b()onstarnation(s)?\b"replace="$1onsternation$2"/>
<Typoword="Constituent"find="\b()o(?:n(?:s(?:itu|tis?tu)|titu)|stis?tu|nst(?:utu|i(?:stua|tu(?:a|te)))|nite)(?:en|ne?)(?<!onstituen)(c(?:ies|y)|ts?)\b"replace="$1onstituen$2"/>
<Typoword="(Re/Un)Constitute"find="\b(|ec|nc)onsitut(+)\b"replace="$1onstitut$2"/>
<Typoword="(Un)Constitution"find="\b(|nc)o(?:n(?:stitu|titut)|stitut)ion(*)\b"replace="$1onstitution$2"/>
<Typoword="(Un)Constrain"find="\b(|nc)onstain(ed|ing|s?|ts?)\b"replace="$1onstrain$2"/>
<Typoword="Consultant"find="\b()onsul(?:a|te)nt(s)?\b"replace="$1onsultant$2"/>
<Typoword="Consum(ption/ptive/e/mate)"find="\b()omsum(pti(?:ons?|ve)|e(?:?|r(?:ism|s?))|ing|mat(?:e?|ion))\b"replace="$1onsum$2"/>
<Typoword="Consumer"find="\b()onsumber(ism|s?)\b"replace="$1onsumer$2"/>
<Typoword="Consummate"find="\b()onsumat(e?|i(?:ng|ons?))\b"replace="$1onsummat$2"/>
<Typoword="Contain"find="\b()on?tain(e(?:d|rs?)|ing|s?)\b"replace="$1ontain$2"/>
<Typoword="Contains"find="\b()ontai?nes\b"replace="$1ontains"/>
<Typoword="(De)Contaminate"find="\b(|ec)ontaiminat(e?|i(?:ng|ons?))\b"replace="$1ontaminat$2"/>
<Typoword="(Con/Ex)temporaneous"find="\b(on|x)temporan{1,2}s(ly)?\b"replace="$1temporaneous$2"/>
<Typoword="(Con/Pre)tender"find="\b(on|re)tendor(s)?\b"replace="$1tender$2"/>
<Typoword="Contiguous"find="\b()ontingu(+)\b"replace="$1ontigu$2"/>
<Typoword="(Inter/Trans)Continental"find="\b(|nterc|ransc)ontine(?:ntial|tal)\b"replace="$1ontinental"/>
<Typoword="(Dis)Continue"find="\b(|isc)o(?:n(?:sti|t)|unti)i?+(a(?:l(?:ly)?|tions?)|e?|i(?:ng|ty)|ous(?:ly)?)\b(?<!ontinu+|iscontinu+)"replace="$1ontinu$2"/><!--avoid self-->
<Typoword="(Dis)Continuous"find="\b(|isc)onti(?:n(?:ou|uo)|uou)s(ly)?\b"replace="$1ontinuous$2"/>
<Typoword="Contrary"find="\b()ontary\b"replace="$1ontrary"/>
<Typoword="Contrast"find="\b()on(?:stra|tar)st(able|ed|ing(?:ly)?|s?)\b"replace="$1ontrast$2"/>
<Typoword="Control"find="\b()ont(?:ol|roll)(s)?\b"replace="$1ontrol$2"/>
<Typoword="(Un)Controlled"find="\b(|nc)ont(?:oll|rol)(able|e|ing)\b"replace="$1ontroll$2"/>
<Typoword="Controversial"find="\b()ontroversal(ly)?\b"replace="$1ontroversial$2"/>
<Typoword="Controversy"find="\b()ontr(?:ave(?:?|r?)|ove(?:?|r?))(y|i(?:al(?:ly)?|es))\b"replace="$1ontrovers$2"/>
<Typoword="(In)Convenient"find="\b(|nc)onv(?:e(?:ine|nia)|ienie|vienie)n(ces?|t(?:ly)?)\b"replace="$1onvenien$2"/>
<Typoword="(Un)Conventional"find="\b(|nc)onve(?:nti|tion)al(i(?:s|ze?)|ly)?\b"replace="$1onventional$2"/>
<Typoword="Converter"find="\b()onvertor(s)?\b"replace="$1onverter$2"/>
<Typoword="Conveyor"find="\b()onveyer(s)?\b"replace="$1onveyor$2"/>
<Typoword="(Un)Convince"find="\b(|nc)onvic(e?|ing(?:ly)?)\b"replace="$1onvinc$2"/>
<Typoword="(Un)Cooperate"find="\b(|nc)ooprat(e?|i(?:ng|on|ve(?:ly)?))\b"replace="$1ooperat$2"/>
<Typoword="(Un)Coordinate"find="\b(|nc)oordian?t(+)\b"replace="$1oordinat$2"/>
<Typoword="Copenhagen"find="\bopenhagan\b"replace="Copenhagen"/>
<Typoword="Copied"find="\b()oppied\b"replace="$1opied"/>
<Typoword="Copy"find="\b()poy(ing)?\b"replace="$1opy$2"/>
<Typoword="Copyright"find="\b()opywrite\b"replace="$1opyright"/>
<Typoword="Cordial"find="\b()oridal(ity|ly|s?)\b"replace="$1ordial$2"/>
<Typoword="Corporal"find="\b()orpral(s)?\b"replace="$1orporal$2"/>
<Typoword="(In/Disin)Corporate"find="\b(|isinc|nc)orp(?:rt?|ort|ro)at(e?|i(?:ng|ons?))\b"replace="$1orporat$2"/>
<Typoword="(In)Correct"find="\b(|nc)(?:or(?:e(?:ctc?|tc?)|r(?:etc?|r+e(?:ctc?|tc?)))|r+ect)(ab(?:ility|le)|ed|i(?:b(?:ility|le)|ng(?:ly)?|ons?)|ly|ness|or|s?)\b"replace="$1orrect$2"/>
<Typoword="Correspond"find="\b(orr|)(?:e|is)(?:pod|spon)(|s\b(?<!\bespons)|e(?:d|n(?:c(?:es?|ies|y)|ts?))|ing(?:ly)?)\b"replace="$1espond$2"/>
<Typoword="Corresponde(nt/ce)"find="\b()orrspondan(c(?:es?|y)|ts?)\b(?!\s+es?\b)(?<!\b(?:des?|et|(?:a|es))\s+\borrspondan(?:c(?:es?|y)|ts?)\b(?!\s+es?\b))"replace="$1orresponden$2"/><!--avoid French word correspondance(s) via lookaround for French articles-->
<Typoword="Corridor"find="\b()o(?:co?rrdo|orrdo|r(?:doo?|r(?:doo?|idoo)))r(s)?\b(?<!orredor)"replace="$1orridor$2"/>
<Typoword="Cotton_"find="\bcotten\b"replace="cotton"/><!--avoid surname Cotten-->
<Typoword="Could"find="\b()oudl\b"replace="$1ould"/>
<Typoword="(C/W/Sh)ould have (2)"find="\b(|sh)ould\s+(?:had|of)\s+(+ed|been|given)\b"replace="$1ould have $2"/>
<Typoword="(C/W/Sh)ould have"find="\b(|h|)ould\s+of\b(\S|\s+(?:been|one|had|said))\b"replace="$1ould have$2"/>
<Typoword="Couldn't"find="\b()oudl?nt\b"replace="$1ouldn't"/>
<Typoword="Council"find="\b()oucil(lors?|s?)\b"replace="$1ouncil$2"/>
<Typoword="Countries"find="\b()oun(?:ir|ri|tir)es\b"replace="$1ountries"/>
<Typoword="Country"find="\b()ontr(i(?:e(?:fied|s)|fied)|mn|womn|y(?:efied|fied|sides?)?)\b"replace="$1ountr$2"/>
<Typoword="Coup d'État"find="\b()oup(s)?\s+()Etat\b"replace="$1oup$2 $3'État"/>
<Typoword="Coup d'état"find="\b()oup(s)?\s+()?\s?tat?\b"replace="$1oup$2 $3'état"/>
<Typoword="Courier"find="\b()oururier(s)?\b"replace="$1ourier$2"/>
<Typoword="Covenant"find="\b()onvenant(*)\b"replace="$1ovenant$2"/>
<Typoword="Creüsa"find="\bcreusa\b"replace="Creüsa"/>
<Typoword="Create"find="\b()reaete()?\b"replace="$1reate$2"/>
<Typoword="credence"find="\bcreedence\b"replace="credence"/><!--avoid Creedence, which usually refers to the band Creedence Clearwater Revival-->
<Typoword="(In)Credible"find="\b(|nc)readb(ility|l)\b"replace="$1redib$2"/>
<Typoword="Criteria"find="\b()riteri(?:a|on)s\b(?<!he Criterions)"replace="$1riteria"/><!--avoid the group The Criterions-->
<Typoword="Criterion"find="\b()ritereon\b"replace="$1riterion"/>
<Typoword="Critical"find="\b()r(?:it(?:c?|is|tic)|tic)(al(?:ly)?|i(?:e?|ing)|isms?)\b"replace="$1ritic$2"/>
<Typoword="Critics"find="\b()riticists\b"replace="$1ritics"/>
<Typoword="Crocodile"find="\b()rockodile(s)?\b"replace="$1rocodile$2"/>
<Typoword="Crucifixion"find="\b()rucifiction\b"replace="$1rucifixion"/>
<Typoword="Crudités"find="\b()rudit(s)?\b"replace="$1rudité$2"/>
<Typoword="Cruise"find="\b()rusi?(e(?:?|rs?)|ing)\b(?<!Cruser?)"replace="$1ruis$2"/><!--avoid surnames Cruse & Cruser-->
<Typoword="Crystalli(s/z)ation_"find="\b()rystal(+)\b"replace="$1rystall$2"/>
<Typoword="Cuisine"find="\b()usine(s)?\b"replace="$1uisine$2"/>
<Typoword="Culinary"find="\b()ul(?:in(?:ar|er?)|lina)ry\b"replace="$1ulinary"/>
<Typoword="(C/F)ulminate"find="\b()uliminat(e?|i(?:ng|ons?))\b"replace="$1ulminat$2"/>
<Typoword="(Agri/Horti/Multi)Cultural"find="\b(gric||ortic|ultic)ultral(*)\b"replace="$1ultural$2"/>
<Typoword="Cumulative"find="\b()umulatative(ly)?\b"replace="$1umulative$2"/>
<Typoword="Curaçao"find="\bCuracao\b"replace="Curaçao"/>
<Typoword="Curiosity"find="\b()uriousit(ies|y)\b"replace="$1uriosit$2"/>
<Typoword="Currently"find="\b()ur(?:en(?:|te?l)|rent(?:ele?|le)|ren)e?y\b"replace="$1urrently"/>
<Typoword="Curriculum"find="\b()(?:iriculu|urricule)m\b"replace="$1urriculum"/>
<Typoword="Customer"find="\b()u(?:sot|tso)mer(s)?\b"replace="$1ustomer$2"/>
<Typoword="Cylinder"find="\b()(?:i|yc)lind(ers?|rical(?:ly)?)\b"replace="$1ylind$2"/>
<Typoword="Cylindrical"find="\b()ylinderical(ly)?\b"replace="$1ylindrical$2"/>

D

<Typoword="District"find="\b(|ed)is(?:itrict|r(?:i(?:ct?|t)|tic?t)|ti?r(?:ct|i))(ed|ing|s?)\b"replace="$1istrict$2"/><!--20220624-- cater for 'distirct'-->
<Typoword="Disappear"find="\b()is+ap+ea?r+(?<!isappear)(ances?|ed|ing|s?)\b"replace="$1isappear$2"/><!--edited 2022-04-07-->
<Typoword="Dairy_"find="\b()iary\s+(allerg(?:ies|y)|c(?:attle|ouncil)|f(?:arm*|oods?)|milk|products?|Queen)\b"replace="$1airy $2"/>
<Typoword="Dardanelles"find="\b(?:Darde|dard)nelles\b"replace="Dardanelles"/>
<Typoword="Dante Alighieri"find="\bDante\s+Aligh(?:ei?ri|irei?)\b"replace="Dante Alighieri"/>
<Typoword="Daughter"find="\b()au(?:gt?h?|hg?t)er(s)?\b"replace="$1aughter$2"/>
<Typoword="deal"find="\bdael(s)?\b"replace="deal$1"/><!--avoid surnames Dael & Daels-->
<Typoword="Deal*"find="\b()ael(ings?|t)\b"replace="$1eal$2"/>
<Typoword="Decide"find="\b()esi(d(?:e(?:d(?:ly)?|s?)|ing)|sions?)\b"replace="$1eci$2"/>
<Typoword="(Un)Decidedly"find="\b(|nd)ecidely\b"replace="$1ecidedly"/>
<Typoword="(In)Decision"find="\b(|nd)e(?:cis|s(?:cisi|i(?:i)))(ons?|ve(?:ly)?)\b"replace="$1ecisi$2"/>
<Typoword="Decrees"find="\b()ecress\b"replace="$1ecrees"/>
<Typoword="Defensive"find="\b()efencive(*)\b"replace="$1efensive$2"/>
<Typoword="Deficit"find="\b()efict(s)?\b"replace="$1eficit$2"/>
<Typoword="(Re/Un)Define"find="\b(|ed|nd)ef(?:f(?:in(?:in)?|nin)|inin)(e?|i(?:ng|tions?))\b"replace="$1efin$2"/>
<Typoword="(In)Definition"find="\b(|nd)ef(?:f(?:f+inite?|in(?:et|ite?))|in(?:t|ti)|nin(?:i?|it|ti?))(ons?|ve(?:ly|ness|s?))\b"replace="$1efiniti$2"/>
<Typoword="Degradation"find="\b()egredation\b"replace="$1egradation"/>
<Typoword="Degrade"find="\b()egrat(e?|ing)\b"replace="$1egrad$2"/>
<Typoword="Deity"find="\b()iet(ies|y)\b"replace="$1eit$2"/>
<Typoword="Déjà Vu"find="\b()(?:éja|jà)\s+()u\b"replace="$1éjà $2u"/><!--avoid ]-->
<Typoword="(D/R)elegate"find="\b()elagat(e?|i(?:ng|ons?))\b"replace="$1elegat$2"/>
<Typoword="Delineate"find="\b()eliniat(+)\b"replace="$1elineat$2"/>
<Typoword="Delirious"find="\b()elerious(ly)?\b"replace="$1elirious$2"/>
<Typoword="Deliver"find="\b()eli?ever(ance|ed|i(?:es|ng)|?)\b"replace="$1eliver$2"/>
<Typoword="Delusively"find="\b()elusionally\b"replace="$1elusively"/>
<Typoword="(Mis)Demeanor"find="\b(|isd)(?:amenou?|eme(?:ane|n))r(s)?\b"replace="$1emeanor$2"/>
<Typoword="(Un)Democrat"find="\b(|nd)e(?:m(?:or)?|om)cra(*)\b"replace="$1emocra$2"/>
<Typoword="Demographic"find="\b()emographical\b"replace="$1emographic"/>
<Typoword="Demolition"find="\b()emolision(s)?\b"replace="$1emolition$2"/>
<Typoword="(D/R)emonstrate"find="\b()emo(?:nr|str)at(e?|i(?:ng|ons?|ve(?:ly|s?))|ors?)\b"replace="$1emonstrat$2"/>
<Typoword="Denigrate"find="\b()enegrat(e?|i(?:ng|ons?)|ors?)\b"replace="$1enigrat$2"/>
<Typoword="Dénouement"find="\b()noument\b"replace="$1nouement"/><!--avoid ]-->
<Typoword="Department"find="\b()e(?:aprt|p(?:ar|tart?))me?nt(al(?:ly)?|s?)\b"replace="$1epartment$2"/>
<Typodisabled="Département(al)"find="\b()epartement(ale?)?\b"replace="$1épartement$2"/><!--disabled per talk, departement is often department instead-->
<Typoword="(In)Dependent"find="\b(|nd)(?:enpen?dn|ipen?dn|pen?dn|e(?:npen?dan|pe(?:dn|nd(?:an|ende)))|ndepeden)(ce|t(?:ly)?)\b(?<!\bependants?)(?<!'independance)"replace="$1ependen$2"/><!--avoid dependant, (L/l)'independance-->
<Typoword="dependent on"find="\b((?:are|be(?:e(?:c(?:ame|omes?)|n))?|is|w(?:as|ere))\s+(?:al(?:l|so)\s+|+ly\s+|becoming\s+|more\s+|no\s+|often\s+|still\s+|very\s+)?)dependant\s+on\b"replace="$1dependent on"/>
<Typoword="Depict"find="\b()espict(ions?|s?)\b"replace="$1epict$2"/>
<Typoword="Derivative"find="\b()erivia?ti(ons?|ves?)\b"replace="$1erivati$2"/>
<Typoword="Derive"find="\b()(?:eriviat|iriv)(ations?|e?|ing)\b"replace="$1eriv$2"/>
<Typoword="Derogatory"find="\b()erogtory\b"replace="$1erogatory"/>
<Typoword="Derrière"find="\b()er+ier+e(s)?\b"replace="$1errière$2"/>
<Typoword="Descendant"find="\b()e(?:cendnt|s(?:cendand|endnt))(s)?\b"replace="$1escendant$2"/>
<Typoword="Descriptor"find="\b()e(?:cri?|sc(?:ri?)?)ipter(s)?\b"replace="$1escriptor$2"/>
<Typoword="Desiccate"find="\b()es+cat(e?|ions?)\b"replace="$1esiccat$2"/>
<Typoword="Design(ate)"find="\b()(?:e(?:isgn|s(?:gin|ing|sigi?n))|is(?:gin|i(?:gn|ng)|sigi?n))(at(?:e?|ors?)|e(?:d|rs?)|ing|s?)\b"replace="$1esign$2"/>
<Typoword="Desktop"find="\b()esktiop(s)?\b"replace="$1esktop$2"/>
<Typoword="Desperate"find="\b()esprat(e(?:ly)?|ion)\b"replace="$1esperat$2"/>
<Typoword="Destroy"find="\b()est(?:ory|roi)(e(?:d|rs?)|ing|s?)\b"replace="$1estroy$2"/>
<Typoword="(Non/In)Destruct"find="\b((?!istructs?\b)|nd|ond)ist?ruct(*)\b"replace="$1estruct$2"/><!--avoid "distruct" (district?)-->
<Typoword="Detach"find="\b()etatch(able|e|ing|ments?)?\b"replace="$1etach$2"/>
<Typoword="Detail"find="\b()e(?:ati|tail)l(ed|ing|s?)\b"replace="$1etail$2"/>
<Typoword="(In)Detect"find="\b(|nd)ectect(*)\b"replace="$1etect$2"/>
<Typoword="(Un)Detectable"find="\b(|n)etecabl()\b"replace="$1etectabl$2"/>
<Typoword="Détente"find="\b()etente\b"replace="$1étente"/>
<Typoword="Deterrent"find="\b()eter(?:|ra)n(ce|ts?)\b"replace="$1eterren$2"/>
<Typoword="Deteriorate"find="\b()ete(?:or|r(?:ior)?)iat(e?|i(?:ng|on))\b"replace="$1eteriorat$2"/>
<Typoword="Determine"find="\b()et(?:e(?:m|rmin)|rm)in(at(?:e|ions?)|e?|ing)\b"replace="$1etermin$2"/>
<Typoword="(De/Nu)triment"find="\b(e|nu)trment(al|s?)\b"replace="$1triment$2"/>
<Typoword="Devastate"find="\b()ev(?:asa?|st?a)t(e?|i(?:ng|on))\b"replace="$1evastat$2"/>
<Typoword="Develop"find="\b()ev(?!il per)(?:al+\w?|el(?:?|l(?:?|l+?|\w?))|il+\w?|l+\w?|l+\w?)p(e|ing|s?|ment(?:al(?:ly)?|s?))\b"replace="$1evelop$2"/>
<Typoword="Developed/Developer"find="\b()evel(?:eop|op(?:o|pe))(d|rs?)\b"replace="$1evelope$2"/>
<Typoword="Development"find="\b()e(?:levop?men|v(?:el(?:ope?mn|p?men)|olp?men))t(al|s?)\b"replace="$1evelopment$2"/>
<Typoword="Device"find="\b()ivice(s)?\b"replace="$1evice$2"/>
<Typoword="Diabolical"find="\b()i(?:ab|bo)lical(ly)?\b"replace="$1iabolical$2"/>
<Typoword="Diameter"find="\b()iamater(s)?\b"replace="$1iameter$2"/>
<Typoword="Diamonds"find="\b()iamons\b"replace="$1iamonds"/>
<Typoword="Diarrhea"find="\b()iarea\b"replace="$1iarrhea"/>
<Typoword="Dichotomy"find="\b()ichtom(ies|y)\b"replace="$1ichotom$2"/>
<Typoword="Didn't"find="\b()idin?t\b"replace="$1idn't"/>
<Typoword="(In)Different"find="\b(|nd)if(?:e?|f?)rene?(+)\b"replace="$1ifferen$2"/>
<Typoword="Differentiate"find="\b()iff??ren(?:iat|tiatiat)(e?|i(?:ng|ons?))\b"replace="$1ifferentiat$2"/>
<Typoword="Difficult"find="\b()if(?:cu(?:il|l)|f(?:cu(?:il|l)|icu(?:il|li))|icu(?:il|li?))t(ies|ly|y?)\b"replace="$1ifficult$2"/>
<Typoword="Diffuse"find="\b()ifus(e(?:?|ly|ness|rs?)|i(?:ng|on|ve))\b"replace="$1iffus$2"/>
<Typoword="Dilapidate"find="\b()(?:e|il)lapidat(e?|ion)\b"replace="$1ilapidat$2"/>
<Typoword="Dilemma"find="\b()ill?e(?:m(?:mm+|n)|nm)a(s)?\b"replace="$1ilemma$2"/>
<Typoword="_Dilemma"find="\bdil(?:e|lem?)ma(s)?\b"replace="dilemma$1"/>
<Typoword="Dimension"find="\b()ime(?:nt?|sn)ion(al(?:ity|ly)?|s?)\b"replace="$1imension$2"/>
<Typoword="Diminish"find="\b()em+inish(abl|e|ing|ments?)?\b"replace="$1iminish$2"/>
<Typoword="Diminutive"find="\b()iminuiti(+)\b"replace="$1iminuti$2"/>
<Typoword="Dining"find="\b()inning\s+(reas?|(?:ars?|lubs?)|alls?|ooms?|ables?)\b"replace="$1ining $2"/>
<Typoword="Diocese"find="\b()ioses(an|es?)\b"replace="$1ioces$2"/>
<Typoword="Diplomacy"find="\b()iplmancy\b"replace="$1iplomacy"/>
<Typoword="(In)Directly"find="\b(|nd)(?:irect|riectl)y\b"replace="$1irectly"/>
<Typoword="Disability"find="\b()isibilit(ies|y)\b"replace="$1isabilit$2"/>
<Typoword="Disaster"find="\b()iaster(s)?\b"replace="$1isaster$2"/>
<Typoword="Disastrous"find="\b()isa(?:ste|t)rous(ly)?\b"replace="$1isastrous$2"/>
<Typoword="Disciple"find="\b()iipl(es?|in*)\b"replace="$1iscipl$2"/>
<Typoword="(Un)Discipline 1"find="\b(|nd)i(?:ciplin|sc(?:iplin|pline?))()?\b"replace="$1iscipline$2"/>
<Typoword="(Un)Discipline 2"find="\b(|nd)iic?plin(+)\b"replace="$1isciplin$2"/>
<Typoword="Discography"find="\b()is(?:cograp|ograph)(ies|y?)\b"replace="$1iscograph$2"/>
<Typoword="(Re)Discover"find="\b(|ed)iover(e|i(?:es|ng)|?)\b"replace="$1iscover$2"/>
<Typoword="Discrepancy"find="\b()iscrepen(ies|y)\b"replace="$1iscrepanc$2"/>
<Typoword="Discuss"find="\b()(?:es|i)cs?uss(e|i(?:ng|ons?))?\b"replace="$1iscuss$2"/>
<Typoword="Disdain"find="\b()istain(ed|ful(?:ly|ness)?|ing|s?)\b"replace="$1isdain$2"/>
<Typoword="(Dis)enchanted"find="\b(ise|)nchanged\b"replace="$1nchanted"/>
<Typoword="Disguise"find="\b()i(?:g|sq)uis(e?|ing)\b"replace="$1isguis$2"/>
<Typoword="Disparagingly"find="\b()isparingly\b"replace="$1isparagingly"/>
<Typoword="Display"find="\b()i(?:apla|spal)y(ed|s?)\b"replace="$1isplay$2"/>
<Typoword="displease"find="\bunplease()?\b"replace="displease$1"/>
<Typoword="Displease"find="\bUnplease()?\b"replace="Displease$1"/>
<Typoword="Dissident"find="\b()is(?:d|s(?:d|ida|od|s+d))n(ce|ts?)\b"replace="$1issiden$2"/>
<Typoword="(In)Distinct_"find="\b(|nd)is(?:ctinc|inc|t(?:ic|n(?=ti)))t(i(?:on|ve(?:ly)?)|ly)?\b"replace="$1istinct$2"/><!--avoid Distin-->
<Typoword="(Un)Distort"find="\b(|nd)isort(+)\b"replace="$1istort$2"/>
<Typoword="Distribute"find="\b()i(?:si)?tribut(e?|i(?:ng|ons?)|ors?)\b"replace="$1istribut$2"/>
<Typoword="Distribution"find="\b()istribusion\b"replace="$1istribution"/>
<Typoword="Divide_"find="\bdevi(d(?:e?|ing)|sions?)\b"replace="divi$1"/><!--avoid surname Devide-->
<Typoword="Division"find="\b()iv(?:is|si)on(al|s?)\b"replace="$1ivision$2"/>
<Typoword="Doctrines"find="\b()ocine(s)?\b"replace="$1octrine$2"/>
<Typoword="(Un)Document"find="\b(|nd)(?:c+ument|oc(?:c?u(?:eme?nt|m(?:ant|etn|net))|cument))(*)\b"replace="$1ocument$2"/>
<Typoword="Does"find="\b()oe(?:ns|se)\b"replace="$1oes"/>
<Typoword="Doesn't"find="\b()o(?:ens|se?n)?t\b(?<!Wilma Doesnt)"replace="$1oesn't"/><!--avoid Wilma Doesnt-->
<Typoword="Doing"find="\b()o(?:i(?:gn|mg|nd)|nig)\b"replace="$1oing"/>
<Typoword="Dollar"find="\b()oller(s)?\b(?<!Mikhail Doller)"replace="$1ollar$2"/><!--avoid ]-->
<Typoword="Don't"find="\b()ont\b?(?!\s+(?:des?|elles?|ils?|ls?|une?)\b)(?!a\s+Hightower|'a\s+Hightower)"replace="$1on't"/><!--avoid Dont'a Hightower--><!--avoid correct French via lookahead-->
<Typoword="Double"find="\b()oulbe()?\b"replace="$1ouble$2"/>
<Typoword="Dramatic"find="\b()rami?tic(ally|s?)\b"replace="$1ramatic$2"/>
<Typoword="Draughtsman"find="\b()ra(f|ugh)t(mn*|person|womn)\b"replace="$1ra$2ts$3"/>
<Typoword="Dravidian"find="\b()ravadian(s)?\b"replace="$1ravidian$2"/>
<Typoword="Dream"find="(?!\bDeram\b)\b()eram(ers?|ing|s?)\b"replace="$1ream$2"/><!--avoid Deram (Records)-->
<Typoword="Dreams"find="\b()(?:erams|reasm)\b"replace="$1reams"/>
<Typoword="Drink"find="\b()rnik(ers?|ing|s?)\b"replace="$1rink$2"/>
<Typoword="Drummer"find="\b()rum(ers?|ing)\b"replace="$1rumm$2"/>
<Typoword="Dumbbell"find="\b()umbell(s)?\b"replace="$1umbbell$2"/>
<Typoword="Duplicate"find="\b()upil?cat(+)\b"replace="$1uplicat$2"/>
<Typoword="du Pré"find="\b(Hil+ary|Iris|Jacqueline)\s+u\s*r(?:éeé?|e(?:é?|èe?)|èe?)\b"replace="$1 du Pré"/>
<Typoword="Durrës"find="\bDurrs\b"replace="Durrës"/>
<Typoword="(D/L/T)ying"find="\b()ieing\b"replace="$1ying"/>

E

<Typoword="(En/De)cipher"find="\b(e|n)cypher(s)?\b"replace="$1cipher$2"/>
<Typoword="(Endo/Mega/Mono)liths"find="\b(ndo|(?:ega|ono))lithes\b"replace="$1liths"/>
<Typoword="(Ex/In/Pro)hibition"find="\b(x|n|ro)(?:hib|ibi)tion(iss?|s?)\b"replace="$1hibition$2"/>
<Typoword="Each other"find="\b()achother\b"replace="$1ach other"/>
<Typoword="Each"find="\b()ahc\b"replace="$1ach"/>
<Typoword="Earlier"find="\b()a(?:li|r(?:i|ly?))e(r|st)\b(?<!Earler)"replace="$1arlie$2"/>
<Typoword="Early"find="(?!\bEraly\b)\b()(?:alr|earl|ral)(ie(?:r|st)|y)\b"replace="$1arl$2"/>
<Typoword="(L/Y)Earning"find="\b(|e|ele|nle|e)arnign(s)?\b"replace="$1arning$2"/>
<Typoword="Ecc-"find="\b()c(entric*|lesiast*)\b"replace="$1cc$2"/>
<Typoword="écla(t/ir)"find="\becla(irs?|t)\b"replace="écla$1"/>
<Typoword="Eclectic"find="\b()(?:cc|g)lectic(ally|ism|s?)\b"replace="$1clectic$2"/>
<Typoword="Eclipse"find="\b()clisps?(e?|ing)\b"replace="$1clips$2"/>
<Typoword="(Un)Economic"find="\b(|ne)comonic(al(?:ly)?|s?)\b"replace="$1conomic$2"/>
<Typoword="Economy"find="\b()conom(+)\b"replace="$1conom$2"/>
<Typoword="Ecstasy"find="\b()sctasy\b"replace="$1cstasy"/>
<Typoword="Edit"find="\b()ditt(ed|ing|or(?:ials?|s?))\b"replace="$1dit$2"/>
<Typoword="Education"find="\b()duac?t(e?|ing|ion(?:al(?:ly)?)?|ors?)\b"replace="$1ducat$2"/>
<Typoword="* Education"find="\b()duction\b(?<=(?:oards?\s{1,9}of|o(?:llege|mmunity)|epartment\s{1,9}of|(?:arly|lementary)|(?:ormal|urther)|igher|inist(?:ers?|ry)\s{1,9}(?:for|of)|(?:hysical|rimary)|(?:e(?:condary|x)|chools?\s{1,9}of|pecial)|ertiary)\s{1,9}duction)\b"replace="$1ducation"/><!--avoid eduction-->
<Typodisabled="Eels"find="\b()les\b"replace="$1els"/>
<Typoword="(In)Efficient"find="\b(|ne)ff(?:eci?|ic)en(+)\b"replace="$1fficien$2"/>
<Typoword="Eighteen"find="\b()ight?teen(s?|ths?)\b"replace="$1ighteen$2"/>
<Typoword="Eighth"find="\b()igth\b"replace="$1ighth"/>
<Typoword="Eighty"find="\b()igt?h(ies|y)\b"replace="$1ight$2"/>
<Typoword="Either"find="\b()iter\b"replace="$1ither"/>
<Typoword="(S)Elect"find="\b(|e)llect(*)\b"replace="$1lect$2"/>
<Typoword="Electric"find="\b()let+ric(*)\b"replace="$1lectric$2"/>
<Typoword="Electricity"find="\b()le(?:ctric|trici)(ans?|ty)\b"replace="$1lectrici$2"/>
<Typoword="Elemental"find="\b()limenta(l|ry)\b"replace="$1lementa$2"/>
<Typoword="Elephant"find="\b()lphant(s)?\b"replace="$1lephant$2"/>
<Typoword="Eleventh"find="\b()levn?eth\b"replace="$1leventh"/>
<Typoword="(In)Eligible"find="\b(|ne)l(?:egi|iga?|lig)b(ility|le)\b"replace="$1ligib$2"/>
<Typoword="Eliminate"find="\b()l(?:emin|imi)at(e?|i(?:ng|ons?))\b"replace="$1liminat$2"/>
<Typoword="Elliptic(al/ally)"find="\b()liptic(al(?:ly)?)?\b"replace="$1lliptic$2"/>
<Typoword="Else(where)"find="\b()sle(where)?\b"replace="$1lse$2"/>
<Typoword="Emanate"find="\b()mnat(ations?|e?)\b"replace="$1manat$2"/>
<Typoword="Embarrass"find="\b()mbar(?:as|ra)s(e|ing(?:ly)?|ments?)?(?!\s+River\b)\b"replace="$1mbarrass$2"/><!--avoid Embarras River-->
<Typoword="Embarrassment"find="\b()mbar(?:s?|ra)se?(ed|ing|ments?)\b"replace="$1mbarrass$2"/>
<Typoword="Embezzle"find="\b()mbezz?ell(e?|ing|ment)\b"replace="$1mbezzl$2"/>
<Typoword="Emblematic"find="\b()mblamatic(ally)?\b"replace="$1mblematic$2"/>
<Typoword="Émigré"find="\bEmigr(es?|s?)\b"replace="Émigré$1"/>
<Typoword="émigré"find="\bemigr(es?|s?)\b"replace="émigré$1"/><!--avoid ]-->
<Typoword="Émile Zola"find="\bmile\s+ola\b"replace="Émile Zola"/>
<Typoword="(E/Pro/Im/Pree)minent"find="\b(|m|r(?:ee|o))minan(c(?:es?|y)|t(?:ly)?)\b"replace="$1minen$2"/>
<Typoword="Emissary"find="\b()m(?:is(?:ar?|s+ar)|mis(?:ar?|s+ar))r(ies|y)\b"replace="$1missar$2"/>
<Typoword="(E/O)mission"find="\b()m(?:i|m(?:i+|m+i))ion(s)?\b"replace="$1mission$2"/>
<Typoword="(E/O)mitted"find="\b()m(?:i|mit?)t(e|ing)\b"replace="$1mitt$2"/>
<Typoword="Emphasi(s/z)e"find="\b()mphai(e?)\b"replace="$1mphasi$2"/>
<Typoword="Emphasis"find="\b()mphis(ed?|ing)?\b"replace="$1mphasis$2"/>
<Typoword="Emperor"find="\b()mp(?:ere|or|r)r(s(?:hips?)?)?\b"replace="$1mperor$2"/>
<Typoword="Emphysema"find="\b()mphsma\b"replace="$1mphysema"/>
<Typoword="Empirical"find="\b()mperic(al(?:ly)?|is)\b"replace="$1mpiric$2"/>
<Typoword="(Un)Employ"find="\b(|ne)mply(ab*|e?s?|ing|ment|s?)\b"replace="$1mploy$2"/>
<Typoword="Employ"find="\bImploy(e(?:d|rs?)|ing|ments?|s?)\b"replace="Employ$1"/>
<Typoword="employ"find="\bimploy(e(?:d|rs?)|ing|ments?|s?)\b"replace="employ$1"/>
<Typodisabled="Encyclopedia (1)"find="\b()ncyl?c?l?opa?ea?di(as?|c)\b(?<!ncyclopedis?)"replace="$1ncyclopedi$2"/>
<Typoword="Encyclopedia (2)"find="\b()nc(?:lyclop|y(?:c(?:lo|o(?:lp|pl?))|lc?op))(ae|)di(as?|c)\b"replace="$1ncyclop$2di$3"/>
<Typoword="Encyclopædia (Iranica|Metropolitana)"find="\bEncyclopa?edia\s+(Iranica|Metropolitana)\b"replace="Encyclopædia $1"/>
<Typoword="Encyclopaedia Judaica"find="\bEncyclop?dia\s+udaica\b"replace="Encyclopaedia Judaica"/>
<Typoword="Encyclopædia Britannica(1)"find="\bncyclo?p(?:ae?|?)dia\s+Brit(?:a(?:n(?:ic*|n+i(?:cc)?)|n+ic+)|t+a(?:n(?:ic*|n+i(?:cc)?)))a+\b"replace="Encyclopædia Britannica"/><!--correct "Britannica"-->
<Typoword="Encyclopædia Britannica(2)"find="\bncycl(?:op(?:ae|e?)|pa?e)dia\s+rit+an+ic*a+\b"replace="Encyclopædia Britannica"/><!--correct "Encyclopædia"-->
<Typoword="Endeavo(u)r"find="\b()ndevo(u)?r(ed|ing|s?)\b"replace="$1ndeavo$2r$3"/>
<Typoword="Ending"find="\b()ndig\b"replace="$1nding"/>
<Typoword="(Arch)Enemy (1)"find="\b(rche|)(?:m|n(?:en|i))m(ies|y)\b"replace="$1nem$2"/><!--avoid "Archey"-->
<Typoword="(Arch)Enemy (2)"find="\b(rche|)nemie\b"replace="$1nemy"/>
<Typoword="Engineer"find="\b()ng(?:e(?:ne)?|i(?:ene|n)|ne)er(ed|ing|s?)\b"replace="$1ngineer$2"/>
<Typoword="Enhancement"find="\b()nchancement(s)?\b"replace="$1nhancement$2"/>
<Typoword="Enlightenment"find="\b()n(?:glight(?:en?|n?)|lightn?)ment(s)?\b"replace="$1nlightenment$2"/>
<Typoword="Enmity"find="\b()(?:mn|nem)ity\b"replace="$1nmity"/>
<Typoword="Ennoble"find="\b()nobl(ed?|ing)\b"replace="$1nnobl$2"/>
<Typoword="Enormous"find="\b()nourmous(ly)?\b"replace="$1normous$2"/>
<Typoword="Enough"find="\b()nou(?:ght|pht?)\b"replace="$1nough"/>
<Typoword="Ensconced"find="\b()nsconsed\b"replace="$1nsconced"/>
<Typoword="(Dis)Entangle"find="\b(ise|)ntagle(?|ments?)\b"replace="$1ntangle$2"/>
<Typoword="Enthusiasm"find="\b()nt(?:husia|usias)(ms?|t(?:ic\w?|s?))\b"replace="$1nthusias$2"/>
<Typoword="Entire"find="\b()n(?:itr|tri)e(y)?(?<!\w Entrie)\b"replace="$1ntire$2"/><!--avoid name Entrie-->
<Typoword="Entire(l/t)y"find="\b()ntie?ri?(ly|t(?:ies|y))"replace="$1ntire$2"/>
<Typoword="(Non)Entity"find="\b(|one)ntitit(ies|y)\b"replace="$1ntit$2"/>
<Typoword="Entrepreneur (2)"find="\b()nterpreneur(*)\b"replace="$1ntrepreneur$2"/>
<Typoword="Entrepreneur"find="\b()ntrep(?:e(?:n(?:eu|ue?)|rneu)|renue?)r(*)\b"replace="$1ntrepreneur$2"/>
<Typoword="Entrusted"find="\bIntrust(ed|ing|s?)\b(?!\s+(?:Bank|Financial|Super))"replace="Entrust$1"/><!--avoid Intrust Super Cup, Intrust Bank, Intrust Financial Corp-->
<Typoword="entrusted"find="\bintrust(ed|ing|s?)\b"replace="entrust$1"/>
<Typoword="Envelop"find="\benvelope(s?\s+(?:h(?:er|im)|me|them|us))\b"replace="envelop$1"/>
<Typoword="Environment"find="\b()nvi?(?:orn?|r(?:ion?|o))ment(+)\b"replace="$1nvironment$2"/>
<Typoword="Épée"find="\bEpe(s)?\b"replace="Épée$1"/>
<Typoword="épée"find="\bepe(s)?\b"replace="épée$1"/>
<Typoword="Episode"find="\b()p(?:i(?:dsod|s(?:do|iod|oid|pod))|osd|sis?od)(es?|ic(?:al(?:ly)?)?)\b"replace="$1pisod$2"/>
<Typoword="Eponymous"find="\b()p(?:nymo|onym)us(ly)?\b"replace="$1ponymous$2"/>
<Typoword="Equator"find="\b()quitorial(ly)?\b"replace="$1quatorial$2"/>
<Typoword="Equilibrium"find="\b()quilibrum\b"replace="$1quilibrium"/>
<Typoword="(Non)Equilibrium"find="\b(|one)quil(?:ib|libr?)(at(?:e?|ing)|i(?:a|ums?))\b"replace="$1quilibr$2"/>
<Typoword="Equipment"find="\b()q(?:i(?:p?|up?)|u(?:ip?)?)(?:pi?)?(?<!quip)ment\b"replace="$1quipment"/>
<Typoword="Equipped"find="\b()qu(?:ip|p(?:|pi))(ed|ing)\b"replace="$1quipp$2"/>
<Typoword="Equivalen(ce/t)"find="\b()qui(?:ale|le|v(?:la|le|lal))n(ces?|t(?:ly|s?))\b"replace="$1quivalen$2"/>
<Typoword="Eradicate"find="\b()rradica(+)\b"replace="$1radica$2"/>
<Typoword="Erect"find="\b()rrect(ed|i(?:ng|ons?)|ly|s?)\b"replace="$1rect$2"/>
<Typoword="Erratically"find="\b()ratica?ly\b"replace="$1rratically"/>
<Typoword="Erroneous"find="\b()r(?:oni?|roni?)ous(ly)?\b"replace="$1rroneous$2"/>
<Typoword="Erupt"find="\b()rrupt(ed|i(?:ng|ons?)|s?)\b"replace="$1rupt$2"/>
<Typoword="Especially"find="\b()(?:cspec(?:ail|ial)|spe(?:c(?:al?|ia)|sial?)|xpecial?)ly\b"replace="$1specially"/>
<Typoword="espresso"find="\bexpresso\b"replace="espresso"/><!--avoid ]-->
<Typoword="Essence"find="\b()ssense(s)?\b"replace="$1ssence$2"/>
<Typoword="(Non/Quint)Essential"find="\b(|one|uinte)s(?:se(?:n(?:cia|t(?:ai|ua))|sita)|enia)l(*)\b"replace="$1ssential$2"/>
<Typoword="Essentially"find="\b()s+enial+y(?<!ssentially)\b"replace="$1ssentially"/>
<Typoword="Establishes"find="\b()a?stabi?l?ish?e?(?<!stablish)(e?|ing|ments?)?\b"replace="$1stablish$2"/>
<Typoword="(Dis)Establishment"find="\b(ise|)stablishement(*)\b"replace="$1stablishment$2"/>
<Typoword="Estimate"find="\b()sitmat(e?|i(?:ng|ons?))\b"replace="$1stimat$2"/>
<Typoword="Etc."find="\b(?:and\s+)?()(?:tc\b(?<!/etc)()|ct\b\.*)"replace="$1tc.$2"/><!--avoid /etc the Unix file directory-->
<Typoword="Ethnic"find="\b()(?:nthn?i|t(?:hin|ni))c(ally|it(?:ies|y))?\b"replace="$1thnic$2"/><!--avoid Ethenic-->
<Typoword="European"find="\bur(?:op(?:eo|ia)|po?ea)n(i(?:ation|e?)|s?)\b"replace="European$1"/>
<Typoword="A European"find="\b()n\s+ur(?:op(?:eo|ia)|po?ea)n(i(?:ation|e?)|s?)\b"replace="$1 European$2"/>
<Typoword="Evaluate"find="\b()valt(e?|i(?:ng|on|ve)|ors?)\b"replace="$1valuat$2"/>
<Typoword="Eventual"find="\b()ven(?:htu|ti?)al(it(?:ies|y)|ly)?\b"replace="$1ventual$2"/>
<Typoword="Every"find="\b()veyr\b"replace="$1very"/>
<Typoword="Every-"find="\b()vey?r(body|one|thing|where)\b"replace="$1very$2"/>
<Typoword="Evidently"find="\b()videntall?y\b"replace="$1vidently"/>
<Typoword="Evil"find="\b()fel\b"replace="$1vil"/>
<Typoword="Evolution"find="\b()nvolution(*)\b"replace="$1volution$2"/>
<Typoword="Exacerbate"find="\b()xerbat(e?|i(?:ng|ons?))\b"replace="$1xacerbat$2"/>
<Typoword="(In)Exact"find="\b(|ne)xcac?t(ly)?\b"replace="$1xact$2"/>
<Typoword="Exaggerate"find="\b()xag(?:er?|ger)rat(+)\b"replace="$1xaggerat$2"/>
<Typoword="Exalted"find="\b()xhalted\b"replace="$1xalted"/>
<Typoword="(Un)Examined"find="\b(|ne)xaminated\b"replace="$1xamined"/>
<Typoword="Example"find="\b()x(?:em|ma)ple(s)?\b"replace="$1xample$2"/>
<Typoword="Excavate"find="\b()xacavat(e?|i(?:ng|ons?)|ors?)\b"replace="$1xcavat$2"/>
<Typoword="Exceeded"find="\b()xx?ced(ed|ing(?:ly)?)\b"replace="$1xceed$2"/>
<Typoword="Excel"find="\b(?!\bExcell\b)()xcell(s)?\b"replace="$1xcel$2"/><!--avoid Excell-->
<Typoword="Excellent"find="\b()x(?:cel|el(?:|l+a))n(c|t(?:ly)?)\b"replace="$1xcellen$2"/>
<Typoword="Except"find="\b()xept(able|ed|i(?:ng|ve*|on(?:a(?:bl+|l*)|less|s?))|s?)\b"replace="$1xcept$2"/>
<Typoword="Exchange"find="\b()xc(?:ang|ha(?:gn|nch))(e?|ing)\b"replace="$1xchang$2"/>
<Typoword="Excitement"find="\b()xcitment\b"replace="$1xcitement"/>
<Typoword="Exciting"find="\b()xict(e|ing)\b"replace="$1xcit$2"/>
<Typoword="Execute"find="\b()x(?:cecut|ectu?t?)(e?|i(?:ng|ons?|ves?))\b"replace="$1xecut$2"/>
<Typoword="Exempt"find="\b()x(?:a|ce)mpt(ed|i(?:ng|ons?)|s?)\b"replace="$1xempt$2"/>
<Typoword="Exercise"find="\b()x(?:cercis|e(?:cis|r(?:cies|si)))(e?|ing)\b"replace="$1xercis$2"/>
<Typoword="Exerted"find="\b()xtered\b"replace="$1xerted"/>
<Typoword="Exhaust"find="\b()x(?:au|hua)st(ed|i(?:ng|on|ve*)|s?)\b"replace="$1xhaust$2"/>
<Typoword="Exhibit"find="\b()x{2,5}t(?<!xhibit)(ed|i(?:ng|on(?:ists?|s?))|ors?|s?|ted)\b(?<!xbibits?)"replace="$1xhibit$2"/>
<Typoword="Exile"find="\b()xlile()?\b"replace="$1xile$2"/>
<Typoword="Exist"find="\b()x(?:cis|isi|sis)t(e(?:d|nce)|ing|s?)\b"replace="$1xist$2"/>
<Typoword="(Non/Pre/Co)Existence"find="\b(oe||one|ree)xistnse\b"replace="$1xistence"/>
<Typoword="Exonerate"find="\b()xonorate()?\b"replace="$1xonerate$2"/>
<Typoword="Expand"find="\b()xpan(able|ed|ing|s)\b"replace="$1xpand$2"/>
<Typoword="Expansion"find="\b()xapansi(ons?|ve(?:ly)?)\b"replace="$1xpansi$2"/>
<Typoword="(Un)Expectant"find="\b(|ne)xpectand(ly)?\b"replace="$1xpectant$2"/>
<Typoword="(Un)Expected"find="\b(|ne)xpeced\b"replace="$1xpected"/>
<Typoword="Expedition"find="\b()xpidition(ary|s?)\b"replace="$1xpedition$2"/>
<Typoword="(In)Experience"find="\b(|ne)p(?:er(?:ei|ia)|iere)nc(e?|ing)\b"replace="$1xperienc$2"/>
<Typoword="Experience"find="\b()(?:sp(?:erience?|rience)|xp(?:erienc|rience))()?\b"replace="$1xperience$2"/>
<Typoword="Experiment"find="\b()xpeiment(al(?:ist|ly)?|rs?|s?)\b"replace="$1xperiment$2"/>
<Typoword="Explain"find="\b()xp(?:ali|la)n(ing|s?)\b"replace="$1xplain$2"/>
<Typoword="Explanation"find="\b()xpla?inat(ions?|ory)\b"replace="$1xplanat$2"/>
<Typoword="(Ex/Im)plicitly"find="\b(x|m)plic(?:il?t|tl)y\b"replace="$1plicitly"/>
<Typoword="Exploitation"find="\b()xplo(?:iti|ta)ti(ons?|ve(?:ly)?)\b"replace="$1xploitati$2"/>
<Typoword="Express"find="\b()xress(ed|i(?:ng|ons?|ve))?\b"replace="$1xpress$2"/>
<Typoword="Expropriate"find="\b()xpropiat(e?|i(?:ng|ons?))\b"replace="$1xpropriat$2"/>
<Typoword="(Over)Extension"find="\b(|vere)xtens?tion(s)?\b"replace="$1xtension$2"/>
<Typoword="External"find="\b()x(?:ertern|t(?:e|rn))al(ly)?\b"replace="$1xternal$2"/>
<Typoword="Extinct"find="\b()x(?:inct|tint)(ions?)?\b"replace="$1xtinct$2"/>
<Typoword="Extra- (no hyphen)"find="\b()xtra-(judicial(?:ly)?|mu(?:ndane|rals?)|ordinar(?:ily|y)|p(?:osable|rovincial)|terr(?:estrials?|itorial(?:ity)?))\b"replace="$1xtra$2"/>
<Typoword="Extradition"find="\b()xtradiciotn(s)?\b"replace="$1xtradition$2"/>
<Typoword="Extraordinary"find="\b()xtr?ordinar(il)?y\b"replace="$1xtraordinar$2y"/>
<Typoword="Extravagant"find="\b()xtrav(?:an?ge|en?g)n(ces?|t(?:ly)?)\b"replace="$1xtravagan$2"/>
<Typoword="Extremely"find="\b()xt(?:eme|rem(?:em)?)le?y\b"replace="$1xtremely"/>
<Typoword="Extremist"find="\b()xtermist(s)?\b"replace="$1xtremist$2"/>
<Typoword="Extremophile"find="\b()xtremeophile(s)?\b"replace="$1xtremophile$2"/>

F

<Typoword="Facilitate"find="\b()acil(?:i(?:|te)|lita|t)t(e?|i(?:ng|ons?)|ors?)\b"replace="$1acilitat$2"/>
<Typoword="Factor_"find="\b()acter(ed|i(?:es|ng|ze?)|)\b"replace="$1actor$2"/><!--avoid "Facter" (software)-->
<Typoword="Fahrenheit"find="\b(?:fa(?:hr|rh?)|Farh?)enheit\b"replace="Fahrenheit"/>
<Typoword="(In)Fallible"find="\b(|nf)al+ab(ility|le)\b"replace="$1allib$2"/>
<Typoword="(Un)Familiar"find="\b(|nf)am(?:il(?:ai?|lia)|milia)(l|r(?:ity|ly)?)\b"replace="$1amilia$2"/>
<Typoword="Families"find="\b()(?:amil(?:esl?|lies)|imilies)\b"replace="$1amilies"/>
<Typoword="Family"find="\b()(?:amily|imily)\b"replace="$1amily"/>
<Typoword="(In)Famous"find="\b(|nf)(?:am(?:eous|ous)|emous)(ly)?\b"replace="$1amous$2"/>
<Typoword="Fanaticism"find="\b()anatism\b"replace="$1anaticism"/>
<Typoword="Fasci(nate/st)"find="\b()aci(nat(?:e?|ing(?:ly)?)|s(?:m|t(?:ic|s?)))\b"replace="$1asci$2"/>
<Typoword="Fasciitis"find="\b()ascitis\b"replace="$1asciitis"/>
<Typoword="favo(u)rite"find="\b()avo(u)?(?:ite|rit)(s)?\b"replace="$1avo$2rite$3"/>
<Typoword="Feature"find="\b()(?:aetur|ea(?:tu(?:re)?|utu?re?))(e?|ing)\b"replace="$1eatur$2"/>
<Typoword="(Con/Non)Federal"find="\b(onf||onf)ed(?:ar|re)a(c(?:ies|y)|l(?:iss?|ly)?|t(?:e?|ions?))\b"replace="$1edera$2"/>
<Typoword="Feud"find="\b()ued(al*|ed|ing|s?)\b"replace="$1eud$2"/>
<Typoword="Fiancé"find="\b()ianc(e)?\b"replace="$1iancé$2"/>
<Typoword="Fictitious"find="\b()ictious(ly)?\b"replace="$1ictitious$2"/>
<Typoword="Field_"find="\b()eild(\b(?<!Feild)|able|e(?:d|rs?)|ing\b(?<!Feilding)|)\b"replace="$1ield$2"/><!--avoid surnames Feild, Feilding-->
<Typoword="Fierce"find="\b()eirce(ly|ness|r?|st)\b"replace="$1ierce$2"/>
<Typoword="Fiery"find="\bfire?y\b"replace="fiery"/>
<Typoword="Fifteen"find="\b()i(?:f(?:et|th)?|t|ve?t)een(s?|ths?)\b"replace="$1ifteen$2"/>
<Typoword="Fight"find="\b((?:iref)?)igt?h(ers?|ing|s?)\b"replace="$1ight$2"/>
<Typoword="filmmak(er/ing)"find="\bfilmak(ers?|ing)\b"replace="filmmak$1"/><!--avoid "Filmaker", which could be "Filemaker"-->
<Typoword="Finally"find="\b()inl?y\b(?<!Finaly)"replace="$1inally"/><!--avoid surname Finaly-->
<Typoword="Find"find="\b()idn\b"replace="$1ind"/>
<Typoword="Finite"find="\b()i(?:anite|n(?:te|it))(ly|ness|s?)\b"replace="$1inite$2"/><!--see also "-finite" & "-finit(iv)e"; avoid "Finet"-->
<Typoword="First (1)"find="\b()i(?:r(?:sr|ts)|srt)\b"replace="$1irst"/>
<Typoword="First (2)"find="\b()rst(ly|s?)\b"replace="$1irst$2"/>
<Typoword="First (3)"find="\b()r?ist\s*()\s*(aid|b(?:ases?|orns?)|class|floors?|hand|l(?:ad(?:ies|y)|y)|p(?:ersons?|laces?)|r(?:ater?|ounds?)|s(?:ergeants?|trings?)|time|water|years?)\b"replace="$1irst$2$3"/>
<Typoword="First (3)"find="\b()r?ist\s*()\s*(aid|b(?:ases?|orns?)|class|floors?|hand|l(?:ad(?:ies|y)|y)|p(?:ersons?|laces?)|r(?:ater?|ounds?)|s(?:ergeants?|trings?)|time|water|years?)\b"replace="$1irst$2$3"/>
<Typoword="Flamboyant"find="\b()lamb+yn(ce|t(?:ly)?)\b"replace="$1lamboyan$2"/>
<Typoword="(In)Flammable"find="\b(|inf)lamable\b"replace="$1lammable"/>
<Typoword="Fledge"find="\b()leg(e(?:d|ing|ling)|ing|ling)\b"replace="$1ledg$2"/>
<Typoword="Flemish"find="\bflem+ish\b"replace="Flemish"/>
<Typoword="Flourish"find="\b()lu?orish(e|ing)?\b"replace="$1lourish$2"/>
<Typoword="Fluoresce"find="\b()l(?:ou?rsc?|rsc?|u(?:orosc?|rsc?))(e?|en(?:ce|t)s?\b(?<!lorescen(?:ces?|ts?))|ing)\b"replace="$1luoresc$2"/><!--avoid Florescent & Florescence-->
<Typoword="Fluorine"find="\b(if||(?:exaf|ydrof)|entaf|(?:etraf|rif))lour(o|esc(?:e?|en(?:ce|t)|ing)|i(?:c|des?|dat(?:e?|i(?:ng|on))|nes?))\b"replace="$1luor$2"/>
<Typoword="Foie gras"find="\b()ois?+()ras\b"replace="$1oie $2ras"/>
<Typoword="Follow"find="\b()olw(e(?:d|rs?)|ing|s?)\b"replace="$1ollow$2"/>
<Typoword="Fomalhaut"find="\bormalhaut\b"replace="Fomalhaut"/>
<Typoword="Forbidden"find="\b()orbid(en|ing)\b"replace="$1orbidd$2"/>
<Typoword="Foreign"find="\b()or(?:eing|iegn)(ers?|isms?)?\b"replace="$1oreign$2"/>
<Typoword="Forerunner"find="\b()or+unner(s)?\b"replace="$1orerunner$2"/>
<Typoword="Foreword"find="\b()or(?:ewa|wo)rd\b"replace="$1oreword"/>
<Typoword="Forfeit"find="\b()ore?fie?t+(e(?:d|rs?)|ing|s?|ures?)\b"replace="$1orfeit$2"/>
<Typoword="(Un)Forgettable"find="\b(|nf)orgetbl()\b"replace="$1orgettabl$2"/>
<Typoword="Formalise"find="\b()ormalli(e?)\b"replace="$1ormali$2"/>
<Typoword="((D/M)is)In/De/Re/…)Formation"find="\b(onf|(?:ef|isinf)||nf|(?:alf|isinf)|ef|ef|ransf)o(?:m+ati|rm(?:at|ti))(on|ve(?:ly)?)\b"replace="$1ormati$2"/>
<Typoword="Formed"find="\b()r?omed\b"replace="$1ormed"/>
<Typoword="Formerly"find="\b()o(?:mer|rm(?:e(?:l?|rl))?)le?y\b"replace="$1ormerly"/>
<Typoword="(Mis/Un)Fortunate"find="\b(|isf|nf)or(?:etunte|tu(?:ante|n(?:t|ite?)))(ly|ness|s?)\b(?<!Fortunat)"replace="$1ortunate$2"/><!--avoid surname Fortunat-->
<Typoword="(Mis/Un)Fortunately"find="\b(|isf|nf)ortunetle?y\b"replace="$1ortunately"/>
<Typoword="(Mis/Un)Fortune"find="\b(|isf|nf)ourtun(+)\b(?<!Fourtune)"replace="$1ortun$2"/><!--avoid the wrestling team previously known as ]-->
<Typoword="Forty"find="\b()ourt(ie(?:s|ths?)|y)\b"replace="$1ort$2"/>
<Typoword="Forward"find="\b()o(?:rw|wa)rd(e(?:d|rs?)|ing|s?)\b"replace="$1orward$2"/>
<Typoword="Foundation"find="\b()o(?:nd|ud?n)ation(al(?:ly)?|less|s?)\b(?<!ondations?)"replace="$1oundation$2"/><!--avoid Fondation, french-->
<Typoword="Foundry"find="\b()oundar(ies|y)\b"replace="$1oundr$2"/>
<Typoword="(Four/Five/...)fold"find="\b((?:i(?:ft(?:een|y)|ve)|o(?:rty|ur(?:teen)?))|(?:even|ix)(?:t(?:een|y))?|(?:ight(een|y?)|leven)|ine(?:t(?:een|y))?|w(?:e(?:lve|nty)|o)|undred)\s+fold(?!-)\b"replace="$1fold"/>
<Typoword="Fourth"find="\b()or?uth\b"replace="$1ourth"/>
<Typoword="Franchise_"find="\b()ranchiz(e?|ing)(?!\s+oy)\b"replace="$1ranchis$2"/>
<Typoword="Franciscan"find="\bransiscan(s)?\b"replace="Franciscan$1"/>
<Typoword="Franz Lehár"find="\bFranz\s+Lehar\b"replace="Franz Lehár"/>
<Typoword="(Un)Friend_"find="\b(|nf)(?:ire|re?i)nd(*)\b(?<!Fr(?:eind(?:lich)?|ind(?:all|le|sbury)))"replace="$1riend$2"/><!--avoid Frindall, Frindle, Frindsbury, Freind, and Freindlich-->
<Typoword="From"find="\b()rmo\b"replace="$1rom"/>
<Typoword="from_"find="\bfrome\b"replace="from"/>
<Typoword="Frontier"find="\b()roniter(s)?\b"replace="$1rontier$2"/>
<Typoword="Front-page"find="\b()ront\s+page(?=\s+(?:a(?:polog(?:ies|y)|rticles?)|banners?|co(?:lumns?|verage)|editorials?|feature|headlines?|lead|news(?:papers?)?|obituar(?:ies|y)|p(?:hoto(?:graphs?|s?)|ictures?)|re(?:ports?|views?)|s(?:pace|tor(?:ies|y)))\b)"replace="$1ront-page"/>
<Typoword="Fuchsia"find="\b()uschia(s)?\b"replace="$1uchsia$2"/>
<Typoword="Frustum"find="\b()rustr(a|ums?)\b"replace="$1rust$2"/>
<Typoword="Fulfill"find="\b(|nf)u(?:fil?|lfill+)l(ed|ing|ment|s?)\b"replace="$1ulfill$2"/>
<Typoword="Fulfilled"find="\b()ulfiled\b"replace="$1ulfilled"/>
<Typoword="(Dis/Dys/Mal/Co)Function"find="\b(of|sf||alf)ution(*)\b"replace="$1unction$2"/>
<Typoword="Fundamental"find="\b()und?men?t(*)\b"replace="$1undament$2"/>
<Typoword="Funeral"find="\b()urneral(s)?\b"replace="$1uneral$2"/>
<Typoword="Further"find="\b()u(?:r(?:thu|uthe)|the)r(ances?|ed|ing|mo(?:re|st)|s?)\b(?<!Furthur)"replace="$1urther$2"/><!--avoid Furthur, name of a bus-->

G

<Typoword="Government"find="\b()ov(?:e(?:m|nr?m|r(?:mn?|n(?:m|mn)))|orn?m)en?t(al(?:ly)?|s?)\b"replace="$1overnment$2"/><!--20230202-->
<Typoword="(Inter)Galactic"find="\b(|nterg)alatic\b"replace="$1alactic"/>
<Typoword="Galaxy"find="\b()allax(ies|y)\b"replace="$1alax$2"/>
<Typoword="Galvanize"find="\b()alvini(ation|e?|ing)\b"replace="$1alvaniz$2"/>
<Typoword="Games"find="\b()anes\b(?!\s+reek)"replace="$1ames"/>
<Typoword="* Gandhi"find="\b(Indira|Mahatma|Mohandas(?:\s+K\.)?|Rahul|Sonia)\s+(?:ah|ha)ndi\b"replace="$1 Gandhi"/>
<Typoword="Gandhi"find="\bghandi\b"replace="Gandhi"/>
<Typoword="Gangster"find="\b()anster(s)?\b"replace="$1angster$2"/>
<Typoword="garrison_"find="\bgariss?on(ed|s?)\b"replace="garrison$1"/><!--avoid surnames-->
<Typoword="Gauge"find="\b()uag(e?|ing)\b"replace="$1aug$2"/>
<Typoword="Genealogy"find="\b()enea?olog(+)\b"replace="$1enealog$2"/>
<Typoword="General"find="\b()e(?:mer|n(?:ar|re))al(*)\b"replace="$1eneral$2"/>
<Typoword="(Re/De)Generate"find="\b(eg||eg)en(?:erat|ra)t(+)\b"replace="$1enerat$2"/>
<Typoword="(Gen/Nem)esis"find="\b(en|em)s()s\b"replace="$1es$2s"/>
<Typoword="Genital"find="\b()enetal(ia|ly|s?)\b"replace="$1enital$2"/>
<Typoword="Genius"find="\b()en{2}us\b"replace="$1enius"/>
<Typoword="General Motors'"find="\bGeneral\s+Motors\s+"replace="General Motors' "/>
<Typoword="Georg(e/ia/etown)"find="\bGe(?:ogr?|rog)(e(?:town)?|ian?s?)\b"replace="Georg$1"/>
<Typoword="George"find="\bGoerg(e(?:town)?|ian?s?)\b(?<!Geroge)"replace="Georg$1"/><!--avoid Goerges & Geroge-->
<Typoword="Gérard Depardieu"find="\brard\s+epardieu\b"replace="Gérard Depardieu"/>
<Typoword="Gewürztraminer"find="\bewurt?ztraminer\b"replace="Gewürztraminer"/>
<Typoword="Ghanaian"find="\bhanian(s)?\b"replace="Ghanaian$1"/>
<Typoword="Girlfriend"find="\b()irfr(?:ei|ie)nd(s)?\b"replace="$1irlfriend$2"/>
<Typoword="Given"find="\b()ievn\b"replace="$1iven"/>
<Typoword="Gjirokastër"find="\bGjirokaster\b"replace="Gjirokastër"/>
<Typoword="(Eye/Sun)Glasses"find="\b(yeg||ung)lases\b"replace="$1lasses"/>
<Typoword="Glögg"find="\b()logg\b"replace="$1lögg"/>
<Typoword="Goddess"find="\b()odess(es)?\b"replace="$1oddess$2"/>
<Typoword="Godunov"find="\b()odounov\b"replace="$1odunov"/>
<Typoword="(On/Fore/Out)Going"find="\b(oreg||(?:ng|utg))o(?:ign|nig)\b"replace="$1oing"/>
<Typoword="Golem"find="\b()ollem(s)?\b"replace="$1olem$2"/>
<Typoword="Götterdämmerung"find="\bot+erdam+erung\b"replace="Götterdämmerung"/>
<Typoword="Gottlieb"find="\bottleib\b"replace="Gottlieb"/>
<Typoword="Governance"find="\b()over(?:a|ne)nce\b"replace="$1overnance"/>
<Typoword="Governor"find="\b()(?:o(?:uvene|ve(?:ne|rne))|uver?n|venro)r(s(?:hips?)?)?\b"replace="$1overnor$2"/>
<Typoword="Graduate"find="\b(|ostg|nderg)(?:a(?:dua?|rdua)|ra(?:du|uda))t(e?|i(?:ng|ons?))\b"replace="$1raduat$2"/>
<Typoword="Graffiti"find="\b()raf(?:fit|it?)t(i(?:sts?)?|o)(?<!Porno Graffitti)\b"replace="$1raffit$2"/><!--avoid Porno Graffitti-->
<Typoword="gramophone_"find="\bgramaphone(s)?\b"replace="gramophone$1"/>
<Typoword="grammar_"find="\bgrammer(ians?|s?)\b"replace="grammar$1"/>
<Typoword="(Un)Grammatical"find="\b(|ng)ramatical(*)\b"replace="$1rammatical$2"/>
<Typoword="Grandfather/mother/..."find="\b()ran(?:d-)?(aunt|child(?:ren)?|daughter|father|mother|n(?:ephew|iece)|parent|s(?:on|tand)|uncle)(?<!rand-(?:aunt|n(?:ephew|iece)|uncle)|Granson)(s)?\b"replace="$1rand$2$3"/>
<Typoword="grandson_"find="\bgranson(s)?\b"replace="grandson$1"/>
<Typoword="-Graph-"find="(?<=\b(?:*g|+g|))rpah(*)\b"replace="raph$1"/><!--cheapened expensive beginning-->
<Typoword="(Un)Grateful"find="\b(|ng)re?atful(*)\b"replace="$1rateful$2"/>
<Typoword="_Great"find="(?!\bGerat\b)\b()(?:erat|rae?t)(est|ly)?\b(?<!nstant+grat)"replace="$1reat$2"/><!--avoid grater or proper noun Gerat-->
<Typoword="grief_"find="\bgreif\b"replace="grief"/><!--avoid surname Greif-->
<Typoword="Grievous"find="\b()r(?:eiv|ievi)ous(*)\b"replace="$1rievous$2"/>
<Typoword="(Re/Un)Group"find="\b(|eg|ng)r(?:opu|uop)(ed|ing|s?)\b"replace="$1roup$2"/>
<Typoword="Grow"find="\b()rwo()?\b"replace="$1row$2"/>
<Typoword="Guadalupe"find="\buadulupe\b"replace="Guadalupe"/>
<Typoword="Guanine"find="\b()(?:au|una)nine\b"replace="$1uanine"/>
<Typoword="Guarana"find="\b()auarana\b"replace="$1uarana"/>
<Typoword="Guarantee"find="(?!\bGarante\b)\b()(?:a(?:r|ur)|u(?:are|r))nte+(?|ing)\b"replace="$1uarantee$2"/><!--avoid surname Garante-->
<Typoword="(Body/Un)Guard"find="\b(odyg||ng)aurd(ed(?:ly)?|i(?:ans?|ng)|s?)\b"replace="$1uard$2"/>
<Typoword="(Mis)Guidance"find="\b(|isg)uidnce\b"replace="$1uidance"/>
<Typoword="Guideline"find="\b()uidline(s)?\b"replace="$1uideline$2"/>
<Typoword="Guinness"find="\buin(?:es?|ne)s\b"replace="Guinness"/>
<Typoword="Guttural"find="\b()ut(?:|t)ral(ism|ly|ness|s?)\b"replace="$1uttural$2"/>

H

<Typoword="Habeas"find="\b()aba?eus\b"replace="$1abeas"/>
<Typoword="Habitué"find="\b()abitue(es?|s?)\b"replace="$1abitué$2"/>
<Typoword="Ha(d/s/t)"find="\b()()a\b"replace="$1a$2"/>
<Typoword="Halloween"find="\bal(?:lowea|owe?)n\b"replace="Halloween"/>
<Typoword="Happen"find="\b()apen(ed|ing|s?)\b"replace="$1appen$2"/>
<Typoword="Happened"find="\b()ap(?:ene|pen(?:e)?)d\b"replace="$1appened"/>
<Typoword="Harass"find="\b()ar(?:as|r(?:as+e?|r+as+e))(e|ing(?:ly|s?)|ments?)\b"replace="$1arass$2"/><!--avoid name Haras-->
<Typoword="Harassment"find="\b()ar(?:asse|r+as+)ment\b"replace="$1arassment"/>
<Typoword="Hardware"find="\b()arware\b"replace="$1ardware"/>
<Typoword="Harold(son)"find="\bHarlod(son)?\b"replace="Harold$1"/>
<Typoword="Have"find="\b()(?:aev|vae)\b"replace="$1ave"/>
<Typoword="(S)Having"find="\b(|h)(?:ave|va)ing\b"replace="$1aving"/>
<Typoword="He"find="\b()ge\b"replace="$1e"/>
<Typoword="Headquarters"find="\b()(?:aed|ea?d?)?ua(?:rt|tr?)e?r?(?<!e(?:adquarter| quarter))(ed|s?)\b"replace="$1eadquarter$2"/>
<Typoword="Heard"find="\b()eared\b"replace="$1eard"/>
<Typoword="Heart"find="(?!\bHerat\b)\b()erat(s)?\b"replace="$1eart$2"/><!--avoid city Herat-->
<Typoword="Height"find="\b()(?:eighth|i(?:eght|ghth))(s?|en(?:e(?:d|rs?)|ing|s?))\b"replace="$1eight$2"/>
<Typoword="Heirs"find="\b()ier(ess(?:es)?|s)(?<!Hiers)\b"replace="$1eir$2"/><!--avoid hier, French/German word or surname Hiers-->
<Typoword="Helicopter"find="\b()e(?:ilocopte|l(?:copte|i(?:copto|copte)))r(s)?\b"replace="$1elicopter$2"/>
<Typoword="Helmet"find="\b()elment(s)?\b"replace="$1elmet$2"/>
<Typoword="Help"find="\b()(?:al|elp|le)p(*)\b(?<!H(?:alp(?:an|e(?:nny|r(?:in|?))|hen|in|ov|rin)|elppie))"replace="$1elp$2"/><!--avoid surnames Halper(n), Halperin, Halphen, Halpin, Halprin, Halpov, Halpert, Halpenny Helppie-->
<Typoword="Hemorrhage"find="\b()(?:aemorrag|em(?:mor?rh?ag|orh?ag))(e?|i(?:c|ng))\b"replace="$1emorrhag$2"/>
<Typoword="Heredity"find="\b()eridit(ar)?y\b"replace="$1eredit$2y"/>
<Typoword="Hergé"find="\bHerge\b"replace="Hergé"/>
<Typoword="Heritage"find="\b()er(?:|r)tage?(s)?\b"replace="$1eritage$2"/>
<Typoword="_heroes"find="\bheros\b"replace="heroes"/><!--avoid proper noun Heros-->
<Typoword="(Kilo/Mega/Giga)Hertz"find="\b(iga||ilo|ega)ertzs\b"replace="$1ertz"/>
<Typoword="Hesitant"find="\b()esistn(cy|t(?:ly)?)\b"replace="$1esitan$2"/>
<Typoword="Heyday"find="\b()eyd()ys\b"replace="$1eyd$2y"/>
<Typoword="Hiatus"find="\b()aitus\b"replace="$1iatus"/>
<Typoword="Hierarchy"find="\b()(?:ei|ie)ra(?:ch|rc)(ies|ic(?:al*)?|y?|(?:al*)?)\b"replace="$1ierarch$2"/>
<Typoword="Hieroglyph"find="\b()(?:eirogly|ierogl)ph(ic(?:al*|s?)|s?)\b"replace="$1ieroglyph$2"/>
<Typoword="High"find="\b()(?:eigh|ig)(e(?:r|st)|ness|way(?:s|\b(?<!Heighway)))\b"replace="$1igh$2"/><!--avoid surname Heighway-->
<Typoword="Highlight"find="\b()iglh?ight(ed|ing|s?)\b"replace="$1ighlight$2"/>
<Typoword="Hilarity"find="\b()illari(ous*|ty)\b"replace="$1ilari$2"/>
<Typoword="Hindrance"find="\b()ind(?:er|ren?)nce(s)?\b"replace="$1indrance$2"/>
<Typoword="Hippopotamus"find="\b()ip(?:op?|pop)potamus(es)?\b"replace="$1ippopotamus$2"/>
<Typoword="Hirsute"find="\b()rsuit\b"replace="$1irsute"/>
<Typoword="(Pre)Historic"find="\b(|reh)(?:istoric|sitor)i(ans?|c*)\b"replace="$1istori$2"/>
<Typoword="History"find="\b()(?:is|st)or(i(?:c*|es)|y)\b"replace="$1istor$2"/>
<Typoword="Homepage"find="\b()ome?age(s)?\b"replace="$1omepage$2"/>
<Typoword="(Dis)Hono(u)r"find="\b(ish|)ouno(u)?r(abl|e|i(?:fics?|ng)|s?)\b"replace="$1ono$2r$3"/>
<Typoword="Hono(u)rary"find="\b()on(?:ar(?:ar)?|o(u)?ra)y\b"replace="$1ono$2rary"/>
<Typoword="Horrify"find="\b()or(?:iff?y?|rifi?)(ing)?\b"replace="$1orrify$2"/>
<Typoword="House fire"find="\b()ousefire(s)?\b"replace="$1ouse fire$2"/>
<Typoword="However"find="\b()(?:ow|woe)ver\b"replace="$1owever"/>
<Typoword="http:"find="\b()t(?:p|t(?:pL|tp))"replace="$1ttp:"/>
<Typoword="http://"find="\b()ttp:\\\\"replace="$1ttp://"/>
<Typoword="Humanities"find="\b()umn(?:it|ti)es\b"replace="$1umanities"/>
<Typoword="Humiliate"find="\b()umilat(e?|i(?:ng|on|ve)|or?)\b"replace="$1umiliat$2"/>
<Typoword="Humor"find="\b()umer\b"replace="$1umor"/>
<Typoword="Humoral"find="\b()umoural\b"replace="$1umoral"/>
<Typoword="Humorous"find="\b()um(?!erous\b)rous(ly|ness)?\b"replace="$1umorous$2"/>
<Typoword="Hundred"find="\b()undere?d(s?|ths?)\b"replace="$1undred$2"/>
<Typoword="Husband"find="\b()usban(ry|s?)\b"replace="$1usband$2"/>
<Typoword="Hydrogen"find="\b()ydogen\b"replace="$1ydrogen"/>
<Typoword="Hydrophile/phobe"find="\b()ydrp(il|ob)(es?|i(?:a|c(?:ity)?))\b"replace="$1ydroph$2$3"/>
<Typoword="Hygiene"find="\b()ygein(e|i(?:cs?|sts?))\b"replace="$1ygien$2"/>
<Typoword="Hypocrisy"find="\b()yp+ocr(?:a|ic)(ies|y)\b"replace="$1ypocris$2"/>
<Typoword="Hypocrite"find="\b()yp+ocrit(s)?\b"replace="$1ypocrite$2"/>

I

<Typoword="Iconoclast"find="\b()conclast(ic|s?)\b"replace="$1conoclast$2"/>
<Typoword="Idea"find="\b()dae(s)?\b(?<!\b\p{Lu}\.\s+idae)(?!'')"replace="$1dea$2"/><!--avoid species-->
<Typoword="Identifier"find="\b()dentife(d|rs?)\b"replace="$1dentifie$2"/>
<Typoword="Identi(f/t)y"find="\b()denti()iy\b"replace="$1denti$2y"/>
<Typoword="Idiosyncra(c/s)y (2)"find="\b()d(?:eosynch?|iosynch)ra(+)\b"replace="$1diosyncra$2"/>
<Typoword="i.e."find="\bi(?:e\.|\.?e)()(?<!\.ie\.?.|ie|\-ie)"replace="i.e.$1"/><!--don't generalize to capital Ie; avoid matching website.ie; avoid matching 'ie' used as syllable; added \s to a look behind, solved the false positive Tala’ie -->
<Typoword="Illegal"find="\b()l(?:+|l+{2,})gal(ly)?\b(?<!\bEl Ilegal)"replace="$1llegal$2"/>
<Typoword="Illinois"find="\b(?:l(?:ia?noi|l(?:anoi|l+noi?|noi)|l+(?:ani?o|i(?:ni?o|oni)))s|illinois)\b"replace="Illinois"/>
<Typoword="Illness"find="\b()lless(es)?\b"replace="$1llness$2"/>
<Typoword="Illusion"find="\b()llution(s)?\b"replace="$1llusion$2"/>
<Typoword="Illustrate"find="\b()ll?(?:s(?:r|tr?)|tr)(?<!ll(?:itr|ustr))(at+|ious*)\b"replace="$1llustr$2"/>
<Typoword="Imagine"find="\b()magen(a(?:ry|tion)|e?)\b"replace="$1magin$2"/>
<Typoword="Imagined"find="\b()magin()\b"replace="$1magine$2"/><!--avoid "Imagin"-->
<Typoword="Immediate"find="\b()m(?:ea?di?|m+(?:e(?:adi?|d)|idi?|mea?di?))ate?(ly)?\b"replace="$1mmediate$2"/>
<Typoword="Immediately"find="\b()m+ediate?ley\b"replace="$1mmediately"/>
<Typoword="Imminent"find="\b()mnent(ly)?\b"replace="$1mminent$2"/>
<Typoword="Impedance"find="\b()mpedence(s)?\b"replace="$1mpedance$2"/>
<Typoword="Implement"find="\b()mplment(a(?:l|tions?)|e?|ing|s?)\b"replace="$1mplement$2"/>
<Typoword="Important"find="\b()mport(?:am?|na)(ce|t(?:ly)?)\b"replace="$1mportan$2"/>
<Typoword="Impress"find="\b()m(?:mp(?:ers?|res?)|p(?:ers?|re))s(e|i+)?\b"replace="$1mpress$2"/><!--avoid impresión etc.-->
<Typoword="Imprison"find="\bmpris*on*e?(ed|ings?|ments?|s?)\b(?<!Imprison(?:ed|ings?|ments?|s?))"replace="Imprison$1"/><!--avoid self-->
<Typoword="imprison"find="\bmpris*on*e?(ed|ings?|ments?|s?)\b(?<!imprison(?:ed|ings?|ments?|s?))"replace="imprison$1"/><!--avoid self-->
<Typoword="Improv(e/ise)"find="\b()mp(?:or|re)v(+)\b"replace="$1mprov$2"/>
<Typoword="Inaccurate"find="\b()n(?:a|nac?)cura(c+|te*)\b"replace="$1naccura$2"/>
<Typoword="Inaugurates"find="\b()naugure()\b"replace="$1naugurate$2"/>
<Typoword="Incinerate"find="\b()(?:cin|n(?:cina|sin)|sina)rat(+)\b"replace="$1ncinerat$2"/>
<Typoword="Include"find="\b()nclud(s)?\b"replace="$1nclude$2"/>
<Typoword="Including"find="\b()n(?:c(?:lud|udi)|lcudi)ng\b"replace="$1ncluding"/>
<Typoword="Incorporate"find="\b()ncor(?:op(?:or(?:at|ta)|rat)|p(?:orta|rat))(e?|i(?:ng|on))\b"replace="$1ncorporat$2"/>
<Typoword="Increase"find="\b()ncraes(e|ing(?:ly)?)\b"replace="$1ncreas$2"/>
<Typoword="Increment"find="\b()ncrment(al(?:ly)?|s?)\b"replace="$1ncrement$2"/>
<Typoword="Incunabula"find="\b()ncunabla\b"replace="$1ncunabula"/>
<Typoword="India(na)"find="\bndai(n(?:an?s?|ian?s?|s?))?\b"replace="India$1"/>
<Typoword="Indiana University"find="\bniversity\s+of\s+ndiana\b"replace="Indiana University"/>
<Typoword="Indicate"find="\b()ndecat(e?|ing|ors?)\b"replace="$1ndicat$2"/>
<Typoword="Indict"find="\b()ndite\b"replace="$1ndict"/>
<Typoword="Indictment"find="\b()ndic?tement(s)?\b"replace="$1ndictment$2"/>
<Typoword="Indigenous"find="\b()nd(?:egen|ig(?:eni|ine?))ous(ly)?\b"replace="$1ndigenous$2"/>
<Typoword="Indiscernible"find="\b()ndisernabl(+)\b"replace="$1ndiscernibl$2"/>
<Typoword="Individual (2)"find="\b()(?:div|ndv)ia?dual(ly|s?)\b"replace="$1ndividual$2"/>
<Typoword="Indulge"find="\b()ndulgue(?|nces?)\b"replace="$1ndulge$2"/>
<Typoword="Industry"find="\b()n(?:d(?:istr|sutr|u(?:sr?t|tr))|udstr)(i(?:al*|es)|y)\b"replace="$1ndustr$2"/>
<Typoword="Ine(…)ible"find="\bune(d|lig|x(?:haust|press))b(ility|l)\b"replace="ine$1ib$2"/>
<Typoword="Inevitable"find="\b()nev(?:ati|iti(?:ta)?)bl()\b"replace="$1nevitabl$2"/>
<Typoword="In(evi/fla/imi/jec)table"find="\b()n(evi|fla|imi|jec)tibl(es?|y)\b"replace="$1n$2tabl$3"/>
<Typoword="Infantry"find="\b()nf(?:ant|rantr)y(mn|person|womn)?\b"replace="$1nfantry$2"/>
<Typoword="(Non)Infectious"find="\b(|oni)nfectuous(*)\b"replace="$1nfectious$2"/>
<Typoword="Infiltrate"find="\b()nfilitrat(e?|i(?:ng|ons?)|ors?)\b"replace="$1nfiltrat$2"/>
<Typoword="Inflammation"find="\b()flama(b(?:ility|l)|t(?:ions?|ory))\b"replace="$1nflamma$2"/>
<Typoword="Influence"find="\b()nfluente()?\b"replace="$1nfluence$2"/>
<Typoword="Influential"find="\b()nf(?:luen(?:c|tu)|uen)al(ly)?\b"replace="$1nfluential$2"/>
<Typoword="Infringement"find="\b()nfrige?ment(s)?\b"replace="$1nfringement$2"/>
<Typoword="Inhabitants"find="\b()nhabitans\b"replace="$1nhabitants"/>
<Typoword="Inheritance"find="\b()nhertence(s)?\b"replace="$1nheritance$2"/>
<Typoword="Inherit(s/ance/ed)"find="\b()nheret(ances?|ed|ing|s?)\b"replace="$1nherit$2"/>
<Typoword="Initial"find="\b()(?:n(?:it|nit?|ti(?:ti?)?)|titi?)a(?:l|(?=ly\b))(e(?:d|rs?)|i(?:ng|sms?|(?:ations?|e?|ing)|t(?:ies|y))|l(?:ed|ing|y)|ness|s?)\b"replace="$1nitial$2"/>
<Typoword="Initiative/Initiation"find="\b()ni(?:cia|t(?:a|i(?:ai)?))ti(ons?|ves?)\b"replace="$1nitiati$2"/>
<Typoword="Injured"find="\b()njured\b"replace="$1njured"/>
<Typoword="Innocence"find="(?!\bInnosense\b)\b()n(?:noens|osenc)e\b"replace="$1nnocence"/><!--avoid group Innosense-->
<Typoword="Inoculate"find="\b()n(?:noc?|oc)cula(+)\b"replace="$1nocula$2"/>
<Typoword="Input"find="\b()mput(s?|t(?:ed|ing))\b"replace="$1nput$2"/>
<Typoword="Insofar"find="\b()n(?:so\s+|\s+so)far\b"replace="$1nsofar"/><!--"insofar" is proper American English, "in so far" proper British; thus correct only mixed usage-->
<Typoword="Inspection"find="\b()npect(ions?|ors?)\b"replace="$1nspect$2"/>
<Typoword="Inspire"find="\b()ps?ir(ation*|e?|ing)\b"replace="$1nspir$2"/>
<Typoword="Instead"find="\b()nst(?:ade|ed)\b"replace="$1nstead"/>
<Typoword="Instrument"find="\b()n(?:s(?:ru|tur?)|t(?:ru|st?ru))ment(s?|al(?:it(?:ies|y)|iss?|ly|s?)|ation)\b"replace="$1nstrument$2"/>
<Typoword="Integer"find="\b()nterg(ers?|rity|ra(?:b(?:ility|le)|ls?|ns?|t(?:e?|ors?)|ti(?:ng|on*|ve)))\b"replace="$1nteg$2"/>
<Typoword="Intellectual"find="\b()ntelectual(ly|s?)\b"replace="$1ntellectual$2"/>
<Typoword="Intelligence"find="\b()ntel(?:|l)gn(cer?s?|t(?:ly|sia)?)\b"replace="$1ntelligen$2"/>
<Typoword="(Dis)Interest"find="\b(isi|)(?:nt(?:er|re)|tnere)st(ed|ing(?:ly)?|s?)\b"replace="$1nterest$2"/>
<Typoword="Interim"find="\b()nter(?:ri|u?)m\b"replace="$1nterim"/>
<Typoword="International"find="\b()nte(?:natio?|r(?:atio?|nati))nal(*)\b"replace="$1nternational$2"/>
<Typoword="(Mis/Re)Interpret"find="\b(|isi|ei)nt(?:erper?e?|repre)t(*)\b(?<!nterpet(?:aloids?|iolar))"replace="$1nterpret$2"/>
<Typoword="Interpreter"find="\b()ntepretator(s)?\b"replace="$1nterpreter$2"/>
<Typoword="(Un)Interrupt"find="\b((?<!Lemon\s{1,9})|ni)nterr?uppt(ed|i(?:ng|ons?)|s?)\b"replace="$1nterrupt$2"/>
<Typoword="(Un)Interrupted"find="\b(|ni)nter+uped\b"replace="$1nterrupted"/>
<Typoword="Intervenes"find="\b()ntervine()?\b"replace="$1ntervene$2"/>
<Typoword="Into"find="\b()not\b"replace="$1nto"/>
<Typoword="Intra- (no hyphen)"find="\b()ntra-(murals?|state|uterine|venous(?:ly)?)\b"replace="$1ntra$2"/>
<Typoword="(Re)Introduce"find="\b(|ei)(?:n(?:ctr?|t(?:r?|ru?))|tnro)duc?(e?|ing|t(?:ions?|ory))\b"replace="$1ntroduc$2"/>
<Typoword="Intuition"find="\b()nti?uti(ons?|ve(?:ly)?)\b"replace="$1ntuiti$2"/>
<Typoword="Invasion"find="\b()nvassion(s)?\b"replace="$1nvasion$2"/>
<Typoword="Investigate"find="\b()nv(?:esti(?:a(?:ga?t|t)|es(?:igat|ta?gat?)|g(?:a(?:it)?|ngat|t))|stigat)(e?|i(?:ng|ons?|ve)|or?)\b"replace="$1nvestigat$2"/>
<Typoword="Investment"find="\b()nvesment(s)?\b"replace="$1nvestment$2"/>
<Typoword="Invincible"find="\b()nvinc(?:a|e?)b(ilit(?:ies|y)|l(?:e(?:ness)?|y))\b"replace="$1nvincib$2"/>
<Typoword="Iridescent"find="\b()rridescen(ce|t(?:ly)?)\b"replace="$1ridescen$2"/>
<Typoword="Irreparable"find="\b()rrep(?:ai|e)rabl()\b"replace="$1rreparabl$2"/>
<Typoword="Irritate"find="\b()r(?:i|ra)ta(bl|t(?:e?|i(?:ng(?:ly)?|on)))\b"replace="$1rrita$2"/>
<Typoword="Isn't"find="\b()sn?t\b"replace="$1sn't"/>
<Typoword="Israel"find="\b(?:isr(?:ae|ea)|Isrea)l(i(?:s?|tes?))?\b"replace="Israel$1"/>
<Typoword="(It/My)self"find="\b(t|y)sefl?\b"replace="$1self"/>

J

<Typoword="Jalapeño"find="\b()alapeo(s)?\b(?!\s+ecords?)\b"replace="$1alapeño$2"/><!--avoid Jalapeno Records-->
<Typoword="Janáček"find="\bJan(?:ác|)ek\b"replace="Janáček"/>
<Typoword="Jardinière"find="\b()ardiniere\b"replace="$1ardinière"/>
<Typoword="Jeopardy"find="\b()eapardy\b"replace="$1eopardy"/>
<Typoword="Jersey"find="\b()ersy\b"replace="$1ersey"/>
<Typodisabled="Jewel(le)ry"find="\b()ewl(le)?e?ry\b"replace="$1ewel$2ry"/>
<Typodisabled="Jewellery"find="\b()ewel(?:e|la)ry\b"replace="$1ewellery"/>
<Typoword="Joan Miró"find="\boan\s+iro\b"replace="Joan Miró"/>
<Typoword="Johnnie"find="\bjohn+ie\b"replace="Johnnie"/>
<Typoword="José Ferrer"find="\bJos\s+Ferrer\b"replace="José Ferrer"/>
<Typoword="Joseph"find="\bo(?:esp|spe)h\b"replace="Joseph"/>
<Typoword="Journ(al/ey)"find="\b()ounr?(al(?:i(?:ng|ss?)|ling|s?)|ey(?:ed|ing|mn|s?|womn))\b"replace="$1ourn$2"/>
<Typoword="Journeyed"find="\b()our?nie?(ed|s)\b"replace="$1ourney$2"/>
<Typoword="Judaism"find="\b(?:ewism|uada?ism)\b"replace="Judaism"/>
<Typoword="Judg(e)ment"find="\b()ugd?(e)?ment(al(?:ly)?|s?)\b(?<!\be\s{1,9}ugement\b)"replace="$1udg$2ment$3"/><!--avoid Le jugement-->
<Typoword="Judicial"find="\b()ud(?:i(?:c|su)|uci)a(l|ry)\b"replace="$1udicia$2"/>
<Typoword="(Jun/Sen)ior"find="\b(u|e)(?:ino|noi)r(ity|s?)\b"replace="$1nior$2"/>
<Typoword="Jurisdiction"find="\b()uri(?:d|st)iction(al(?:ly)?|s?)(?!\s+(d(?:es?|u)|sur)\b)\b"replace="$1urisdiction$2"/><!--avoid French juridiction de/des/du/sur-->
<Typoword="Just(ify)"find="\b()s(?:tu|ut)(ice|if(?:i+|y)|ly)?\b"replace="$1ust$2"/>
<Typoword="Juvenile"find="\b()uvnil(e*|i(?:a|ty))\b"replace="$1uvenil$2"/>

K

<Typoword="Kåldolmar"find="\b()aldolmar\b"replace="$1åldolmar"/>
<Typoword="Kindergarten"find="\b()inerga(?:rd|t)en(s)?\b"replace="$1indergarten$2"/>
<Typoword="Kingdom"find="\b()indgom(s)?\b"replace="$1ingdom$2"/>
<Typoword="Knife"find="\b()nive\b"replace="$1nife"/>
<Typoword="(Ac)Knowledge"find="\b(ck|)nowl(?:deg|ed?)(e(?:ab+|?|ments?)|ing)\b"replace="$1nowledg$2"/>
<Typoword="(best/well) known"find="\b(est|ell)-known(?<!the (?:best-known|well-known))(?=\s+(?:a(?:broad|cross|fter|mou?ng(?:st)?|round|)|b(?:ecause|y)|du(?:e|ring)|enough|f(?:o(?:llowing|r)|rom)|in(?:ternationally)?|locally|nationally|o(?:n|utside)|t(?:h(?:at|ere|rough(?:out)?)|o)|un(?:der|til)|w(?:hen|ith(?:in)?|orldwide))\b)"replace="$1 known"/>
<Typodisabled="Kraków"find="\b()rakow\b(?<!(?:Jonah|Kenneth(?: K\.)?|46977) Krakow)(?!\s+ownship)"replace="$1raków"/><!--avoid proper names & minor planet-->
<Typoword="Kroužek"find="\b()rouzek\b"replace="$1roužek"/>
<Typodisabled="Kümmel"find="\b()ummel\b(?<!Bernhard Kummel)(?!\s+19\d\d\b|19\d\d\b)"replace="$1ümmel"/><!--avoid Bernhard Kummel i.e (Kummel 1964)-->

L

<Typoword="La bohème"find="\bLa\s+()oheme\b"replace="La $1ohème"/>
<Typoword="Labelled"find="\b()abl(ed|ing)\b"replace="$1abell$2"/>
<Typoword="Laboratory"find="\b()ab(?:a|or|ra)tor(ies|y)\b"replace="$1aborator$2"/>
<Typoword="Laborious"find="\b()abo(?:r{1,2}|uriou)s(*)\b(?<!aborista)"replace="$1aborious$2"/>
<Typoword="Lacquer"find="\b()aquer(e(?:d|rs?)|ing|s?)\b"replace="$1acquer$2"/>
<Typoword="L'Âge d'or"find="\bL'(?:ge\s+(?:D||O)|ge\s+)r\b"replace="L'Âge d'or"/>
<Typoword="Laid"find="\b()ayed\b"replace="$1aid"/>
<Typoword="Ländler"find="\b()andler\b"replace="$1ändler"/>
<Typoword="Landmark"find="\b()and\s+mark(s)?\b"replace="$1andmark$2"/>
<Typoword="Language"find="\b()a(?:gua|ng(?:a(?:ua?)?|u(?:an?)?))gu?e(?<!anguage)(s)?\b"replace="$1anguage$2"/>
<Typoword="Lantern"find="\b()atern(s(?<!Laterns))?\b"replace="$1antern$2"/><!--avoid place name Laterns-->
<Typoword="Large"find="\b()arg(ly|st)?\b"replace="$1arge$2"/>
<Typoword="Largely"find="\b()arg(?:el(?:e|le?)|le)y\b"replace="$1argely"/>
<Typoword="Larvae"find="\b()avr?ae\b"replace="$1arvae"/>
<Typoword="Laser"find="\blazer(s)?\b"replace="laser$1"/>
<Typoword="Lasso"find="\b()as+oo\b"replace="$1asso"/>
<Typoword="Last"find="\b()(?:astr|sat)(ly)?\b"replace="$1ast$2"/>
<Typoword="Late"find="\b()aste(r(?<!Laster)|st)\b"replace="$1ate$2"/><!--avoid Laster, a surname & a Transformer-->
<Typoword="Latitude"find="\b()attit+ud(es?|inal)\b"replace="$1atitud$2"/>
<Typoword="(Col)League"find="\b(oll|)ea(?:g|ugu?)e(?|rs?)\b(?<!Leager)"replace="$1eague$2"/><!--avoid surname Leager-->
<Typoword="(Un/Re)Learn"find="\b(|el|nl)eran(ed|ing|?)\b(?<!Leran)"replace="$1earn$2"/><!--avoid place name Leran-->
<Typoword="least"find="\belast\b"replace="least"/>
<Typoword="Left"find="\b()efted\b"replace="$1eft"/>
<Typoword="(L/R)egion"find="\b()eagion(s?|al(?:i(?:s(?:e?|m)|ze?)|ly|s?)|ar(?:ies|y))\b"replace="$1egion$2"/>
<Typoword="Légion d'honneur"find="\begion\s+onneur\b"replace="Légion d'honneur"/>
<Typoword="Legionnaire"find="(?!\bLegionaires\b)\b()egionaire?(s)?\b"replace="$1egionnaire$2"/><!--avoid Oshawa Legionaires-->
<Typoword="(Il)Legitimate"find="\b(ll|)(?:egit(?:m|imi|m)|igit(?:m|m))(c*|t*)\b"replace="$1egitima$2"/>
<Typoword="(Il)Legitima(cy/te)"find="\b(ll|)egit?ma(cy|te(?:ly)?)\b"replace="$1egitima$2"/>
<Typodisabled="Leibniz"find="\beibnitz\b"replace="Leibniz"/><!--avoid town & parish Leibnitz-->
<Typoword="Leisure"find="\b()iesure(ly)?\b"replace="$1eisure$2"/>
<Typoword="(Wave)Length"find="\b(|avel)en(?:ght?|th)(en(?:e|ing|s?)|i(?:ly|ness)|?|w(?:ays|ise))\b"replace="$1ength$2"/>
<Typoword="Les Misérables"find="\bLes\s+Miserables\b"replace="Les Misérables"/>
<Typoword="Lethal"find="\b()eathal(ity|ly)?\b"replace="$1ethal$2"/>
<Typoword="Levitate"find="\b()evtat(e?|i(?:ng|ons?)|ors?)\b"replace="$1evitat$2"/>
<Typoword="Li(k/v)elihood"find="\b(i)elyho+d(s)?\b"replace="$1elihood$2"/>
<Typoword="Liaison"find="\b()iasi?on(s)?\b"replace="$1iaison$2"/>
<Typoword="Libel"find="\b()ibell(s)?\b"replace="$1ibel$2"/>
<Typoword="Library"find="\b()ib(?:ar|r(?:arr|er))(i(?:ans?|es)|y)\b"replace="$1ibrar$2"/>
<Typoword="Licen(s/c)e"find="\b()isc?en()(e(?:d?|e+s?|s?)|ing|ors?|ures?)\b"replace="$1icen$2$3"/>
<Typoword="Lieutenant"find="\b(){2,3}t{1,2}nt?{1,2}(?<!ieutena)n(cy|ts?)\b"replace="$1ieutenan$2"/>
<Typoword="Lifetime (1)"find="\b()iftime(s)?\b"replace="$1ifetime$2"/>
<Typoword="Lifetime (2)"find="\b((?:uring|n)\s*(?:h(?:er|is)|its|my|their|your))\s*life?+time\b"replace="$1 lifetime"/>
<Typoword="Lifetime (3)"find="\b()ife?+time\s*(chievement|an|ember)\b"replace="$1ifetime $2"/>
<Typoword="Liked"find="\b()i(?:ek|uke)()?\b"replace="$1ike$2"/>
<Typoword="Limit"find="\b()mit(*)\b"replace="$1imit$2"/>
<Typoword="Lipizzaner"find="\bip(?:i|piz?)zaner(s)?\b"replace="Lipizzaner$1"/>
<Typoword="Liquor"find="\b()iqour(ed|ices?|s?)\b"replace="$1iquor$2"/>
<Typoword="Listen/Glisten/Moisten"find="\b(l||o|nl)istn(able|e(?:d|r(?:s(?:hips?)?)?)|ing|s?)\b"replace="$1isten$2"/>
<Typoword="(Il)Literate"find="(?!\bLitteral\b)\b(ll|)it(?:ara|eri?|tera)(y|l(?:iss?|ly)?|t(?:es?|im?|ure))\b"replace="$1itera$2"/><!--avoid surname Litteral-->
<Typoword="Literature"find="\b()itr?ture\b"replace="$1iterature"/>
<Typoword="Littérateur"find="\b()itrateur(s)?\b"replace="$1ittérateur$2"/>
<Typoword="Little"find="(?!\bLittel\b)\b()itt(?:el|tle)\b"replace="$1ittle"/><!--avoid surname Littel-->
<Typoword="Live"find="(?!\bLiev Schreiber\b)\b()iev(ly)?\b"replace="$1ive$2"/><!--avoid actor Liev Schreiber-->
<Typoword="Lived"find="\b()ieved\b"replace="$1ived"/>
<Typoword="(Long/Short)-lived"find="\b(ong|hort)lived\b"replace="$1-lived"/>
<Typoword="Lo(ne/rd/ve/w)liness"find="(?!\bLovelines\b)\b()o(ne|rd|ve|w)l(?:ine|ynes?)s\b"replace="$1o$2liness"/>
<Typoword="Loosely"find="\b()osely\b"replace="$1oosely"/>
<Typoword="Love"find="\b()(?:oev|v(?:eo|oe))\b"replace="$1ove"/>

M

<Typoword="Mackerel"find="\b()ackeral\b"replace="$1ackerel"/>
<Typoword="Macramé"find="\b()acrame\b"replace="$1acramé"/>
<Typoword="Ma(d/k)e"find="\bAm((?:es?|ing))\b(?<!\bAmde)"replace="Ma$1"/><!--avoid Amde-->
<Typoword="ma(d/k)e"find="\bam((?:es?|ing))\b"replace="ma$1"/>
<Typoword="Magazine"find="\b()agasine(s)?\b"replace="$1agazine$2"/>
<Typoword="Mainly"find="\b()ailny\b"replace="$1ainly"/>
<Typoword="Maintain"find="\b()ant(?:ai|ia)n(ab+|e|ing|s?)\b"replace="$1aintain$2"/>
<Typoword="Maintenance"find="\b()a(?:i?nt(?:a(?:in|n)?|e(?:in|ne)?|ian)|ntena)nce\b"replace="$1aintenance"/>
<Typoword="Majority"find="\b()a(?:joro?|rjori)ty\b"replace="$1ajority"/>
<Typoword="Make"find="\b()k(?:ae|ea)(s)?\b"replace="$1ake$2"/>
<Typoword="Makes"find="\b()akse\b"replace="$1akes"/>
<Typoword="Makeshift"find="\b()ake-shift\b"replace="$1akeshift"/>
<Typoword="Mammal"find="\b()amal(ian|s?)\b"replace="$1ammal$2"/>
<Typoword="(Mis)Manage_"find="\b((?:ism)?)an(?:ag|ege?|ge)(d|ab(?:ility|l(?:e(?:ness)?|y))|ments?)\b"replace="$1anage$2"/>
<Typoword="Manager"find="\b()anger(e(?:s(?:ess?|sess?)?)?|s?)(?<=(?:(?:ccount(?:ing)?|ss(?:et|istant))|(?:an|usiness)|(?:lient|ost)|ngineering|o(?:o{1,9}tbal{1,9}|tbal{1,9}|rmer)|eneral|otel|and|(?:a(?:rketing|terials)|iddle|oney)|ffice|(?:e(?:ople|rsonnel)|ro(?:cess|duct*|gram{1,9}e?|ject))|isk|(?:ales|enior|tress|ystems?)|(?:eam|ime)|pper|aste)\s{1,9}anger(?:e(?:s(?:ess?|sess?)?)?|s?))\b"replace="$1anager$2"/>
<Typoword="(Mis)Managing"find="\b((?:ism)?)an(?:age|g)ing\b"replace="$1anaging"/>
<Typoword="(Out)Maneuver"find="\b(|utm)an(o)?(?:e|ue?)ver(ed|ing|s?)\b"replace="$1an$2euver$3"/>
<Typoword="(Un)Manoeuvrable"find="\b(|nm)anouverable\b"replace="$1anoeuvrable"/>
<Typoword="Manifestation"find="\b()ani(?:fes|sfesta)tion(s)?\b"replace="$1anifestation$2"/>
<Typoword="(Re/Un)Manufacture"find="\b(|em|nm)(?!anufactur)n(?:a?fr?ac?|fr?ac?|?fr?ac?)ur(ab(?:ility|le)|e(?:ab(?:ility|le)|?|rs?)|ing)\b"replace="$1anufactur$2"/>
<Typoword="Manufactures"find="\b()anufact?ur()?\b"replace="$1anufacture$2"/>
<Typoword="mark"find="\bmrak(s)?\b"replace="mark$1"/><!--made lowercase to avoid surnames Markes & Mrak-->
<Typoword="Marked"find="\b()aked(ly)?\b"replace="$1arked$2"/>
<Typoword="Marriage"find="\b()ar(?:|ia?|r(?:ai?||r+))ge(able|s?)\b(?!\s+(?:lanc\b|\b))(?<!\b(?:(?:es?|u)|es?|n)\s+\bar(?:|ia?|r(?:ai?||r+))ge(?:able|s?)\b(?!\s+(?:lanc\b|\b)))"replace="$1arriage$2"/><!--avoid valid French term thru use of lookaround to find French articles-->
<Typoword="Mariage (French) (1)"find="\b()arriage(s)?\b(?<=\b(?:(?:es?|u)|es?|n)\s+\barriages?\b)"replace="$1ariage$2"/>
<Typoword="Mariage (French) (2)"find="\b()arriage(s)?\b(?=\s+(?:lanc\b|\b))"replace="$1ariage$2"/>
<Typoword="Married"find="\b()arryi?ed\b"replace="$1arried"/>
<Typoword="Masquerade"find="\b()asquarad(+)\b"replace="$1asquerad$2"/>
<Typoword="Masturbate"find="\b()asterbat(*)\b"replace="$1asturbat$2"/>
<Typoword="Material"find="\b((?:ater|etamater))ai?l(is(?:m|ts?)|s?)\b"replace="$1ial$2"/>
<Typoword="Mathematician"find="\b()athe(?:+tic|m*tic|tic)i?an(s)?\b(?<!athematicians?)"replace="$1athematician$2"/><!--avoid self-->
<Typoword="Mathematic*"find="\b()ath?matica?(al*|s?)\b(?<!athematic(?:a(?:l*)?|s))(?<!ica)"replace="$1athematic$2"/>
<Typoword="Mayonnaise"find="\b()ayon(?:ais?|nais)se(s)?\b"replace="$1ayonnaise$2"/>
<Typoword="Mayoral"find="\b()ayorial(ty)?\b"replace="$1ayoral$2"/>
<Typoword="Meant"find="\bmenat\b"replace="meant"/><!--avoid Egyptian goddess Menat-->
<Typoword="Medi(a)eval"find="\b()ed(?:e(ia?)e?v|(ia)e?v)l(iss?|ly)?\b"replace="$1ed$2$3eval$4"/>
<Typoword="Medicine"find="\b()ed(?:acine|iciney)\b"replace="$1edicine"/>
<Typoword="Medieval"find="\b()(?:ede|id(?:e|ie))vi?al\b"replace="$1edieval"/>
<Typoword="(Re/Dis)Member"find="\b(ism||em)emeber(ed|ing|s?)\b"replace="$1ember$2"/>
<Typoword="Memoir"find="\b()emior(ists?|s?)\b"replace="$1emoir$2"/>
<Typoword="memorable"find="\brememberable\b"replace="memorable"/>
<Typoword="Memorable"find="\bRememberable\b"replace="Memorable"/>
<Typoword="Men'?s_ (1)"find="\b()ens?s?\s+(as(?:eball|ketball)|(?:lothing|rew)|itness|olf|ealth|ournal|acrosse|agazine|ooms?|ports?|e(?:ams?|nnis)|and\s+omen?s)\b"replace="$1en's $2"/>
<Typoword="Men's (2)"find="\b()enss?\s+"replace="$1en's "/><!--avoid "mens" without apostrophe (L.); see also "-men's"-->
<Typoword="Ménage à trois"find="\b()(?:énage\s+|enage\s+)\s+trois\b"replace="$1énage à trois"/>
<Typoword="Mental"find="\b()enally\b"replace="$1entally"/>
<Typoword="Mention"find="\b()aintion(ed|ing|s?)\b"replace="$1ention$2"/>
<Typoword="Mercantile"find="\b()ercentile\b"replace="$1ercantile"/>
<Typoword="Merchandise"find="\b()e(?:cha|rche)ndi()(e(?:?|rs?)|ings?)\b"replace="$1erchandi$2$3"/>
<Typoword="Mérimée"find="\bM(?:er+im+|érr?imm?e)e?\b"replace="Mérimée"/>
<Typoword="Message"find="\b()es(?:a|se)g(e?|ing)\b"replace="$1essag$2"/>
<Typoword="Messaging"find="\b()essnging\b"replace="$1essaging"/>
<Typoword="Messenger"find="\b()essanger(s)?\b"replace="$1essenger$2"/>
<Typoword="Metallic"find="\b(im||onm)et(?:a|tal?)l(ic(?:a(?:lly)?)?|iferous|o(?:graph+|id*)|urg*)\b(?<!Metal(?:oids?|urgica))"replace="$1etall$2"/><!--avoid Metaloid(s) (see ]), Metalurgica (part of company name) -->
<Typoword="Metaphor"find="\b()ethaphor(ical*|s?)\b"replace="$1etaphor$2"/>
<Typoword="Meteorite"find="\b()eterorite(s)?\b"replace="$1eteorite$2"/>
<Typoword="Meteorology"find="\b()eto?erolog(i(?:c*|sts?)|y)\b"replace="$1eteorolog$2"/>
<Typoword="Metropolitan"find="\b()etr(?:op(?:l(?:iti?|ti)|oli?ti)|p(?:liti|ol(?:iti?|ti)))(ans?|ic(?:al)?)\b"replace="$1etropolit$2"/>
<Typoword="Microscope"find="\b()icoscop(es?|ic(?:ally)?|y)\b"replace="$1icroscop$2"/>
<Typoword="Milieu"find="\b()(?:elieu|ilea?u)(x)?\b"replace="$1ilieu$2"/>
<Typoword="Military"find="\b(em||onm|aram)il(?:atar|i(?:atr|rat|t(?:er|ra?))|lit(?:r|ra?)|tar)(y|i(?:es|ly|s(?:+|s?|tic)|z+))\b"replace="$1ilitar$2"/>
<Typoword="Millennium_"find="\bmil(?:en?|le)ni(a(?:l*)?|um)\b"replace="millenni$1"/>
<Typoword="M/B/Trillion"find="(?!\bMillon\b)\b(|r)ilon(aires?|s)\b"replace="$1illion$2"/><!--avoid surname Millon-->
<Typoword="Mimicking"find="\b()imic(ed|ing)\b"replace="$1imick$2"/>
<Typoword="Mineral"find="\b()in(?:eri|ir)al(s)?\b"replace="$1ineral$2"/>
<Typoword="Miniature"find="\b()intur(es?|iz+)\b"replace="$1iniatur$2"/>
<Typoword="Minimum"find="\b()inum(a|um)\b(?<!Minuma)(?!-ku)\b"replace="$1inim$2"/><!--avoid ], ]-->
<Typoword="(Min/Max/Opt)imum"find="\b((?:ax|in)|pt)i(?:miu?|nu)m(s)?\b"replace="$1imum$2"/>
<Typoword="Minion"find="\b()(?:inia|yni)n(s)?\b"replace="$1inion$2"/>
<Typoword="Minister (2)"find="\b((?:(?:abinet|hief)|efene|(?:inance|oreign)|rime)\s+)ina?ster(s)?\b"replace="$1inister$2"/>
<Typoword="Minister (1)"find="\b()in(?:en?s|ins|si?)t(er(?:ed|ing|s?\b(?<!insters?)))\b"replace="$1inist$2"/>
<Typoword="Ministry"find="\b()in(?:en?st|i(?:nst|ste)|si?t)r(ies|y)\b"replace="$1inistr$2"/>
<Typoword="Mirror"find="\b()irr?orr(ed|ing|s?)\b"replace="$1irror$2"/>
<Typoword="Miscellaneous"find="\b()iscel(?:ane|lani?)ous\b"replace="$1iscellaneous"/>
<Typoword="Mischief"find="\b()ischei(f|vous*)\b"replace="$1ischie$2"/>
<Typoword="Mischievous"find="\b()isch(?:ei?v?|iev)?ous(*)\b"replace="$1ischievous$2"/>
<Typoword="Misogyny"find="\b()ysogyn(ist|y)\b"replace="$1isogyn$2"/>
<Typoword="Missile"find="\b()isle(s)?\b"replace="$1issile$2"/>
<Typoword="(Ad/E/Inter/O/…)Mission"find="(?<=\b(?:d|om|e(?:ad|com|sub|trans)||nter||er|e(?:ad|com|sub|trans)?|ub|rans)?)mis(bl|on(?:ar(?:ies|y)|s?)|ve(?:ly)?)\b"replace="missi$1"/><!--cheapened expensive beginning-->
<Typoword="Misspell"find="\b()is(?:-s|ss+)?pell(ed|ings?|s?)\b"replace="$1isspell$2"/>
<Typoword="Mithraic"find="\bythraic\b"replace="Mithraic"/>
<Typoword="Mizzen"find="\bmissen\b"replace="mizzen"/><!--avoid surname Missen-->
<Typoword="Model"find="\b()odle(s)?\b"replace="$1odel$2"/>
<Typoword="Modem"find="\b()oderm(s)?\b"replace="$1odem$2"/>
<Typoword="Modifie(d/r/s)"find="\b()odife(|rs?)\b"replace="$1odifie$2"/>
<Typoword="Moisture"find="\b()osture\b"replace="$1oisture"/>
<Typoword="Molecule"find="\b()oleclu(ar|es?)\b"replace="$1olecul$2"/>
<Typoword="Moment"find="\b()om(?:em|men)t(ar(?:ily|y)|s?)\b"replace="$1oment$2"/>
<Typoword="Monastery"find="\b()on(?:asta?|est?)r(i(?:al|es)|y)\b"replace="$1onaster$2"/>
<Typoword="Money"find="\b()oeny(ed)?\b"replace="$1oney$2"/>
<Typodisabled="Moniker"find="\b()onicker(s)?\b"replace="$1oniker$2"/><!--disabled per https://www.dictionary.com/browse/monicker-->
<Typoword="Monkeys"find="\b()onkies\b(?<!Funkie Monkies)"replace="$1onkeys"/><!--avoid Funkie Monkies-->
<Typoword="Monotype"find="\b()ona?typ(es?|ic)\b"replace="$1onotyp$2"/>
<Typoword="_month"find="\bmounth(ly|s?)\b"replace="month$1"/><!--avoid Mounth-->
<Typoword="More"find="\bomre\b"replace="more"/>
<Typoword="More(over)"find="\b()roe(over)?\b"replace="$1ore$2"/>
<Typoword="Alanis Morissette"find="\blan+is\s+or+isette\b"replace="Alanis Morissette"/><!--avoid Bill Morrisette-->
<Typoword="Mortar"find="\b()orter(ed|ing|s)\b"replace="$1ortar$2"/><!--avoid surname Morter-->
<Typoword="Mortgage"find="\b()orgag(e?|ing)\b"replace="$1ortgag$2"/>
<Typoword="Motivate"find="\b()otiviat(e?|i(?:ng|on))\b"replace="$1otivat$2"/>
<Typoword="Mountain"find="\b()o(?:ntai?n|u(?:ntai?ni|tain))(ee?r(?:ed|ing|s|(?<!Montaner))|ous*|s(?:ides?)?|tops?|y?)(?!\s+(?:Berton|wax))(?<!Chris\s+Montan|Eva\s+Montan|Karl\s+Montan|La\s+Montan|Nils\s+Montan|Patrick\s+Montan|Saint-Montan)\b"replace="$1ountain$2"/><!--avoid Montan Berton/wax, Chris/Eva/La/Nils/Patrick/Saint- Montan-->
<Typoword="Movie"find="\b()ovei(s)?\b"replace="$1ovie$2"/>
<Typoword="Mucous"find="\b()ucuou?s\b"replace="$1ucous"/>
<Typoword="Multiple"find="\b()ut?lipl(e?|i(?:able|c(?:a(?:nds?|ti*)|ity)|e)|y(?:ing)?)\b"replace="$1ultipl$2"/>
<Typoword="Multiplier"find="\b()ultiple(d|rs?)\b"replace="$1ultiplie$2"/>
<Typoword="Municipal (1)"find="\b()uni?(?:c?p??la?l?e?|p?c??la?l?e?)(?<!nicipal)(??t(?:es|ies|y))?(?<!nicipale)\b"replace="$1unicipal$2"/>
<Typoword="Municipal (2)"find="\b()un(?:i(?:c(?:ipi|pi?)|nc?pi?|pi?)|cip|nicip)al(*)\b"replace="$1unicipal$2"/>
<Typoword="Murder"find="\b()uder(e(?:d|rs?)|ing|s?)\b"replace="$1urder$2"/>
<Typoword="Museum"find="\b()(?:u(?:es(?:eu?|ue?)|s(?:e(?:su|ue)?|ueu?)))m(s)?\b"replace="$1useum$2"/>
<Typoword="Musical"find="\b()usci?al(?|ity|ly)\b(?<!Musial)"replace="$1usical$2"/><!--avoid surname Musial-->
<Typoword="Musician"find="\b()uscician(s)?\b"replace="$1usician$2"/>
<Typoword="Mutilate"find="\b()utilat(e?|i(?:ng|ons?))\b"replace="$1utilat$2"/>
<Typoword="Myriad"find="\b()yraid\b"replace="$1yriad"/>
<Typoword="Mysterious"find="\b()(?:ister|yster)ous(*)\b"replace="$1ysterious$2"/>
<Typoword="Mystery"find="\b()ister(ies|y(?<!Mistery))\b"replace="$1yster$2"/>

N

<Typoword="Name"find="\b()mae(?|ly)\b"replace="$1ame$2"/>
<Typoword="Napoleonic (1)"find="\bapoleonian\b"replace="Napoleonic"/>
<Typoword="(Inter)National"find="\b(ntern|)ato?inal(*)\b"replace="$1ational$2"/>
<Typoword="Nationality"find="\b()ationalt(ies|y)\b"replace="$1ationalit$2"/>
<Typoword="(Inter)Nationally"find="\b(ntern|)ationall?y-"replace="$1ationally "/>
<Typoword="Native Americans"find="\b(?:native\s+|Native\s+a)mericans\b"replace="Native Americans"/><!--avoid singular: context dependent, additional look-around needed to reinstate-->
<Typoword="(Un)Natural"find="\b(|nn)aturual(ly|s?)\b"replace="$1atural$2"/>
<Typoword="(Un)Naturally"find="\b(|nn)atur(?:a|el?|uru?al?)ly\b"replace="$1aturally"/>
<Typoword="Nazareth"find="\b(?:Naze|naz)re(nes?|th)\b"replace="Nazare$1"/>
<Typoword="(Un)necessary"find="\b(|nn)ec+a?i?e?a?s++r+?(?<!ecessar)(ily|y)\b"replace="$1ecessar$2"/><!--Fuzzy rule, extends & completely replaces existing rule "Unnecessary"-->
<Typoword="(Un)Necessary"find="\b(|nn)e(?:c(?:assa|es+e)|s+s+a)r(il)?y\b"replace="$1ecessar$2y"/>
<Typoword="Necessity"find="\b()ec(?:ces?|e)sit(at(?:e?|ing)|ies|y)\b"replace="$1ecessit$2"/>
<Typoword="Née"find="()n\b"replace="$1née"/>
<Typoword="Négligée"find="\b()(?:églige|egligé)e?(s)?\b"replace="$1égligée$2"/><!--avoid ]-->
<Typoword="Negligible"find="\b()egli(?:ga)?bl()\b"replace="$1egligibl$2"/>
<Typoword="(Re)Negotiate"find="\b(|en)ego(?:cia|ta)(b(?:ility|l)|t(?:ed?|i(?:ng|on)|or)s?|nt(?<!ciant)s?)\b"replace="$1egotia$2"/>
<Typoword="Neighbo(u)r"find="\b()+*bh?(?:o?(u)??r|ro?(u)?o?)(?<!eighbou?r)(ed|hoods?|ing|l(?:iness|y)|s?)\b(?<!N(?:e(?:br|iber)|i(?:eb(?:hur|oer|ur)|gh?bor)))"replace="$1eighbo$2$3r$4"/>
<Typoword="Never"find="\b()ver\b"replace="$1ever"/>
<Typoword="(Never/None)theless"find="\b((?:ever|one))(?:th(?:e\s+)?|\s+the)\s?less\b"replace="$1theless"/>
<Typoword="New Delhi"find="\bNew\s*ehli\b"replace="New Delhi"/>
<Typoword="New"find="\b()we(s)?\b(?!-|\s+(?:N(?:kwo|we)|nkwo|rie)\b)(?<!Nwe)"replace="$1ew$2"/><!--avoid names Nwe- & Nwe-->
<Typoword="Newsletter"find="\b()ewetter(s)?\b"replace="$1ewsletter$2"/>
<Typoword="Newspaper"find="\b()epaper(mn|s?|womn)\b"replace="$1ewspaper$2"/>
<Typoword="Newsstand"find="\b()ewstand(s)?\b"replace="$1ewsstand$2"/>
<Typoword="NF-κB"find="\b?\b"replace="NF-κB"/>
<Typoword="Niccolò Machiavelli"find="\bic+ol+o\s+ac+hi?avel+i\b"replace="Niccolò Machiavelli"/>
<Typoword="Nickel_"find="(?!\bNickle\b)\b()ickle(i(?:c|ferous)|o(?:deons?|us))?\b"replace="$1ickel$2"/><!--avoid surname Nickle-->
<Typoword="Nickname"find="\b()ick+nam(e?|ing)\b"replace="$1icknam$2"/>
<Typoword="Niece"find="\b()eice(s)?\b"replace="$1iece$2"/>
<Typoword="Nighttime"find="\b()ightime\b"replace="$1ighttime"/>
<Typoword="Ninety/teen"find="\b()int(een(?:s?|ths?)|ie(?:s|ths?)|y)\b"replace="$1inet$2"/>
<Typoword="Ninth"find="\b()ineth(s)?\b"replace="$1inth$2"/>
<Typoword="Noël Coward"find="\boel\s+oward\b"replace="Noël Coward"/>
<Typoword="Nonetheless"find="\b()ontheless\b"replace="$1onetheless"/>
<Typoword="Nonoperational"find="\bunoperational\b"replace="nonoperational"/>
<Typoword="Nonoperational"find="\bUnoperational\b"replace="Nonoperational"/>
<Typoword="Nonsense"find="\b()onsenc(e|ical*)\b"replace="$1onsens$2"/>
<Typoword="North"find="\b()o(?:rht|th)(east|er(?:ly|n*)|w(?:ard|est))?\b(?<!Noth)"replace="$1orth$2"/><!--allow surname Noth-->
<Typoword="North(ea/we)stern"find="\b()orth+(ea|we)stern(*)\b"replace="$1orth$2stern$3"/>
<Typoword="Northern_"find="\b()o(?:her|r(?:ht?h?er|the)|ther?)(ly|n(?:ers?|most)?)\b(?<!Northen)"replace="$1orther$2"/><!--avoid surname Northen-->
<Typoword="Notably"find="\b()ota(?:b(?:il|le)|l)y\b"replace="$1otably"/>
<Typoword="Notice"find="\b()otive()?\b"replace="$1otice$2"/>
<Typoword="Notoriety"find="\b()oteriety\b"replace="$1otoriety"/>
<Typoword="Nouméa"find="\boumea\b"replace="Nouméa"/>
<Typoword="Nouveau"find="\b()oveau(x)?\b"replace="$1ouveau$2"/>
<Typoword="Now"find="\b()(?:owe?s|wo)\b"replace="$1ow"/>
<Typoword="Nowadays"find="\b()ow\s?(a\s)?days\b"replace="$1owadays"/>
<Typoword="nth-season something"find="\b(\d+(?:d|st|th)|e(?:ight(?:eenth|h|ieth)|leventh)|f(?:i(?:ft(?:eenth|h|ieth)|rst)|o(?:rtieth|urt(?:eenth|th)))|hundredth|nint(?:eenth|h|ieth)|s(?:e(?:cond|ven)|ixt(?:eenth|h|ieth))|t(?:enth|hir(?:d|t(?:eenth|ieth))|we(?:lfth|ntieth)))\b\s+season(?=\s+(?:c(?:ast|liffhanger)|episode|finale(?!\s+loss)|premiere(?!d)))"replace="$1-season"/>
<Typoword="non-title bout/fight/match"find="\bnon\s+title(?=\s+(?:bouts?\b|fights?\b|match\b))"replace="non-title"/>
<Typoword="nth-round something"find="\b(\d+(?:d|st|th)|e(?:ight(?:eenth|h|ieth)|leventh)|f(?:i(?:ft(?:eenth|h|ieth)|rst)|o(?:rtieth|urt(?:eenth|h)))|hundredth|nint(?:eenth|h|ieth)|s(?:e(?:cond|vent(?:eenth|h|ieth))|ixt(?:eenth|h|ieth))|t(?:enth|h(?:ir(?:d|t(?:eenth|ieth))|ousandth)|we(?:lfth|ntieth)))\b\s+round(?=\s+(?:decisions?|game|knockouts?|KOs?|newspaper\s+decisions?|technical\s+knockouts?|TKOs?))"replace="$1-round"/>
<Typoword="Nuclear"find="\b()ucule?ar\b"replace="$1uclear"/>
<Typoword="Nuisance"find="\b()u(?:isans|sanc)e(s)?\b"replace="$1uisance$2"/>
<Typoword="Nullarbor"find="\bullabour\b"replace="Nullarbor"/>
<Typoword="Numerical"find="\b()umbercal(ly)?\b"replace="$1umerical$2"/>
<Typoword="Numerous"find="\b()um(?:bero|e(?:or|rio))us(*)\b"replace="$1umerous$2"/>
<Typoword="Nuptial"find="\b()uptual(s)?\b"replace="$1uptial$2"/>
<Typoword="Nurturing"find="\b()utur(e?|ing)\b"replace="$1urtur$2"/>
<Typoword="n-round something"find="\b(\d+|e(?:ight(?:een|y?)|leven)|f(?:i(?:ft(?:een|y)|ve)|o(?:rty|ur(?:teen)?))|hundred|nine(?:t(?:een|y))?|one|s(?:even|ix)(?:t(?:een|y))?|t(?:en|h(?:irt(?:een|y)|ousand|ree)|w(?:e(?:lve|nty)|o)))\b\s+round(?=\s+(?:d(?:ecisions?|raws?)|knockouts?|KOs?|match(?:es)?|newspaper\s+decisions?|technical\s+knockouts?|TKOs?))"replace="$1-round"/><!--"A n-something" won't catch all useful, esp. boxing-related things-->
<Typoword="n-something contract/deal/run/etc."find="\b((?<!,)\d{1,3}|e(?:ight(?:een|y?)|leven)|f(?:i(?:ft(?:een|y)|ve)|o(?:rty|ur(?:teen)?))|hundred|nine(?:t(?:een|y))?|one|s(?:even|ix)(?:t(?:een|y))?|t(?:en|hr(?:ee|irt(?:een|y))|w(?:e(?:lve|nty)|o)))(?:&nbsp;|\s+)(album|book|episode|fi(?:ght|lm)|game|movie|picture|record)(?=\s+(?:contract|deal|run|s(?:e(?:ason|ries)|uspension|weep))\b)"replace="$1-$2"/><!--entertainment-related hyphen combos-->
<Typoword="n-time champion/winner_"find="\b(\d+*|e(?:ight(?:een|y?)|leven)|f(?:i(?:ft(?:een|y)|ve)|o(?:rty|ur(?:teen)?))|hundred|nine(?:t(?:een|y))?|one|s(?:even|ix)(?:t(?:een|y))?|t(?:en|h(?:irt(?:een|y)|ousand|ree)|w(?:e(?:lve|nty)|o)))\b\s+time(?=\s+(?:champions?|defending\s+champions?|losers?|nominees?|winners?))"replace="$1-time"/>

O

<Typoword="(Dis)Obedient"find="\b(iso|)bedian(ce|t(?:ly)?)\b"replace="$1bedien$2"/>
<Typoword="Obituary"find="\b()bit(?:au?|ia|u)r(ies|y)\b"replace="$1bituar$2"/>
<Typoword="Obsess"find="\b()b(?:es|s(?:e|ses?))s(e|i(?:ng|ons?|ve)(?:ly)?|ors?)?\b"replace="$1bsess$2"/>
<Typoword="Obsolete"find="\b()bselete(?|ly)\b"replace="$1bsolete$2"/>
<Typoword="Obstacle (1)"find="\b()bsta(?:cal|ncle)(s)?\b"replace="$1bstacle$2"/>
<Typoword="Obstacle (2)"find="\b()b(?:st(?:acal|ica?le?)|t(?:ac(?:al|le)|ica?le?))(s)?\b"replace="$1bstacle$2"/>
<Typoword="Occasion"find="\b()c(?:a(?:is+|s(?:s+|t)?|t)|ca(?:is+|s(?:s+|t)|t))i?on+(al*|ed|ing|s?)\b"replace="$1ccasion$2"/>
<Typoword="Occupied"find="\b()ccupate()\b"replace="$1ccupie$2"/>
<Typoword="Occupy"find="\b()ccupate?(ing)?\b"replace="$1ccupy$2"/>
<Typoword="(Un)Occupy"find="\b(|no)c(?:cup|up?)p(a(?:nts?|tion*)|ie|y(?:ing)?)\b"replace="$1ccup$2"/>
<Typoword="Occur"find="\b()c(?:co?ur|ur?)r(s)?\b"replace="$1ccur$2"/>
<Typoword="(Re)Occurred/ing/ence"find="\b(|eo)c(?:cur|ur+)(e(?:d|n(?:ces?|t))|ing)\b"replace="$1ccurr$2"/>
<Typoword="Occurrence"find="\b()c(?:curr?a|ur(?:|r(?:|r+e)))n(ces?|t)\b"replace="$1ccurren$2"/>
<Typoword="Octahedron"find="\b()ctohedr(al?(?:ly)?|ons?)\b"replace="$1ctahedr$2"/>
<Typoword="Octave"find="\b()ctiv(al|es?)\b"replace="$1ctav$2"/>
<Typoword="Oeuvre"find="\b()uevre(s)?\b"replace="$1euvre$2"/>
<Typoword="Of...descent"find="\b(f\s++(?:an|ese|i(?:c|sh))\s+de)cs?ent\b"replace="$1scent"/>
<Typoword="Of(f) course"find="\b(ff?)course\b"replace="$1 course"/>
<Typoword="Officer"find="\b()ffcer(s)?\b"replace="$1fficer$2"/>
<Typoword="(Un)Official"find="\b(|no)ffic(?:ai?|cia)l(dom|ism|ly|s?)\b"replace="$1fficial$2"/><!--avoid foreign word oficial-->
<Typoword="(Un)Officially"find="\b(|no)f+(?:cial|ica)ly\b"replace="$1fficially"/>
<Typoword="Oft(en)times"find="\b()ft(en)?+times\b"replace="$1ft$2times"/>
<Typoword="Often"find="\b()ftenly\b"replace="$1ften"/>
<Typoword="Olympic"find="\b()l(?:my?p|ym?)ic(s)?\b"replace="$1lympic$2"/>
<Typoword="Omelette"find="\b()mlette(s)?\b"replace="$1melette$2"/>
<Typoword="Ominous"find="\b()m(?:en|min|ni)ous(ly)?\b"replace="$1minous$2"/>
<Typoword="Once/Twice"find="\b(n|wi)ced\b"replace="$1ce"/>
<Typoword="Only"find="\b()nyl\b"replace="$1nly"/>
<Typoword="Onomatopoeia"find="\b()nomatopeo?i(a|c*)\b"replace="$1nomatopoei$2"/>
<Typoword="Opening"find="\b()p+enn(ed|ings?)\b"replace="$1pen$2"/>
<Typoword="Operate"find="\b()perrat(+)\b"replace="$1perat$2"/>
<Typoword="Ophthalmology"find="\b()pthal?m(ic|olog(?:ists?|y))\b"replace="$1phthalm$2"/>
<Typoword="Opioid"find="\b()piod(s)?\b"replace="$1pioid$2"/>
<Typoword="Opossum"find="\b(p|)(?:os(?:|so)|pos(?:|s))m(ons?|s?|us|woods?)\b"replace="$1ossum$2"/>
<Typoword="Oppo(nent/site)"find="\b()ppe(nents?|s(?:e?|i(?:ng|tes?)))\b"replace="$1ppo$2"/>
<Typoword="Opponent"find="\b()ppono?nent(s)?\b"replace="$1pponent$2"/>
<Typoword="Opportunity"find="\b()p+(?:er|or?|ror?|ur)t?uni(?<!pportuni)(s(?:s?|tic*)|t(?:ies|y))\b"replace="$1pportuni$2"/>
<Typoword="(Un)Oppose"find="\b(|no)p+oss(e?|ing)\b"replace="$1ppos$2"/>
<Typoword="(O/Su/Presu)ppose"find="\b(|resu|u)pos(?!teg(?:a|idae))(+)\b(?<!Reta Oposta)(?<!pos(?:hchnaya|sums?|tegidae?|ura))"replace="$1ppos$2"/>
<Typoword="Opposite"find="\b()pp(?:asite|os(?:ate|it))(ly|s?)\b"replace="$1pposite$2"/>
<Typoword="Opposition"find="\b()pp?ositition\b"replace="$1pposition"/>
<Typoword="Optimism"find="\b()pto?mi(s(?:ations?|e?|ing|m|t*)|z(?:ations?|e?|ing))\b"replace="$1ptimi$2"/>
<Typoword="Orchestra"find="\b()rch?stra(*)\b"replace="$1rchestra$2"/>
<Typoword="(Un)Ordered"find="\b(|no)rded\b"replace="$1rdered"/>
<Typoword="Ordinary"find="\b()ridinar(il)?y\b"replace="$1rdinar$2y"/>
<Typoword="Ordnance (Survey/…)"find="\bOrdinance\s+(Board|Corps|Department|Group|Museum|S(?:quadron|urvey)|Testing)\b"replace="Ordnance $1"/>
<Typoword="(Dis/Re)Organi(s/z)e"find="\b(iso||eo)(?:grani|rg(?:an|ini|ni))((?:ation(?:al|s?)|e?|ing))\b"replace="$1rgani$2"/>
<Typoword="Origin"find="\b()r(?:gin|ign)(s)?\b"replace="$1rigin$2"/>
<Typoword="(Un)Original"find="\b(|no)r(?:g(?:ini?|ni)|i(?:g(?:i(?:ni|on)|ni?)|ng(?:ini?|ni))|ng(?:ini?|ni))a(l(?:ly)?|t(?:e?|i(?:ng|ons?)|ors?))\b"replace="$1rigina$2"/>
<Typoword="Originally"find="\b()rig(?:nn?a|i(?:n(?:a|al?)|onal?)|onal?)ly\b"replace="$1riginally"/>
<Typoword="Orphanage"find="\b()rphan?ge(s)?\b"replace="$1rphanage$2"/>
<Typoword="Orthogonal"find="\b()rthagnl(ly|s?)\b"replace="$1rthogonal$2"/>
<Typoword="Other"find="\b()(?:hte|teh)r(s)?\b"replace="$1ther$2"/>
<Typoword="Others"find="\b()ther\b"replace="$1thers"/>
<Typoword="Out_"find="\botu\b\s+"replace="out "/><!--allow surname and place name Otu but not Ma'afu'otu'itonga; restored space-->
<Typoword="Outer"find="\b()utter(most|wear)?\b"replace="$1uter$2"/>
<Typoword="Output"find="\b()t?uput(s?|t(?:ed|ing))\b"replace="$1utput$2"/>
<Typoword="Overridden"find="\b()ver(?:id?|ri)den\b"replace="$1verridden"/>
<Typoword="Override"find="\b()ver(id(?:den|es?|ing)|ode)\b"replace="$1verr$2"/>
<Typoword="(Over/Under)whelm"find="\b(v|nd)erw(?:ea?l|heli)m(ed|ing|s?)\b"replace="$1erwhelm$2"/>
<Typoword="Oxymoron/Oxygen"find="\b()xi(ge|moro)n\b"replace="$1xy$2n"/>

P

<Typoword="Political"find="\b()ol(?:i(?:c|t|tici)|tic)al(ly)?\b"replace="$1olitical$2"/><!--updated 20240811-->
<Typoword="Palme d'Or"find="\balme?\s+r\b"replace="Palme d'Or"/>
<Typoword="Pamphlet"find="\b()amlet(ing|s?)\b"replace="$1amphlet$2"/>
<Typoword="Pantomime"find="\b()antomine(s)?\b"replace="$1antomime$2"/>
<Typoword="Paper"find="\b()apaer(ed|ing|s?)\b"replace="$1aper$2"/>
<Typoword="Papier-mâché"find="\b()ap(?:er+aché|ier(?:+aché| mâché))\b"replace="$1apier-mâché"/><!--avoid ]-->
<Typoword="Parade"find="\b()erade()\b"replace="$1arade$2"/>
<Typoword="(Un)Parallel"find="\b(|np)ar(?:alel?|el+e|ral(?:el?|le)|r+alle)l(i(?:s(?:e?|ms?)|ze?)|e(?:d|pipeds?)|ograms?|s?)\b"replace="$1arallel$2"/>
<Typoword="Parallelly"find="\b()arr?al(?:ell|lel)?y\b"replace="$1arallelly"/>
<Typoword="Paraphernalia"find="\b()araphr?enalia\b"replace="$1araphernalia"/>
<Typoword="Parenthesis"find="\b()aranthe(ss|tic+)\b"replace="$1arenthe$2"/>
<Typoword="Parishioner (1)"find="\b()arishner(s(?:hip)?)?\b"replace="$1arishioner$2"/>
<Typoword="Parishioner (2)"find="\b()ar(?:is+?|r+is+h?i?)oner(s(?:hip)?)?\b"replace="$1arishioner$2"/>
<Typoword="Parliament"find="(?!\bParlament\b)\b()ar?li?ment(ar+|s?)\b(?<!mentarisch*)"replace="$1arliament$2"/><!--avoid common proper name for foreign parliament "Parlament"-->
<Typoword="Parmesan"find="\bparmesan\b"replace="Parmesan"/>
<Typoword="Participate"find="\b()a+?c*pa?(?<!articipa)(n(?:c|ts?)|t(?:e?|i(?:ng|on)|or?))\b"replace="$1articipa$2"/>
<Typoword="Particular (1)"find="\b()a(?:rticlu?|ticul)a(+)\b"replace="$1articula$2"/>
<Typoword="Particular (2)"find="\b()ar(?:itucla|ticual)r(*)\b"replace="$1articular$2"/>
<Typoword="Particularly"find="\b()articu(?:a(?:l?|ri?l)|l+a(?:lr|r(?:l+)?)|llarl)y\b"replace="$1articularly"/>
<Typoword="Party"find="\b()ary\b"replace="$1arty"/>
<Typoword="(Sur)pass"find="\b(p|urp)as(e|ing)\b"replace="$1ass$2"/><!--avoid Pasing, a place in Germany-->
<Typoword="Passenger"find="\b()as(?:en|se)ger(s)?\b"replace="$1assenger$2"/>
<Typoword="Passer-by"find="\b()asser\s+bye?r?(s)?\b"replace="$1asser$2-by"/>
<Typoword="Passers(-)by"find="\b()asser(-)?bye?r?s\b"replace="$1assers$2by"/>
<Typoword="Pastime"find="\b()astime(s)?\b"replace="$1astime$2"/>
<Typoword="Pastoral"find="\b()astural\b"replace="$1astoral"/>
<Typoword="Patent"find="\b()attent(ed|ing|s?)\b"replace="$1atent$2"/>
<Typoword="(Im)Patience"find="\b(mp|)aitien(ce|t)\b"replace="$1atien$2"/>
<Typoword="Patrolling"find="\b()atrol(e|ing)\b"replace="$1atroll$2"/>
<Typoword="Pavilion"find="\b()avillion(s)?\b(?!, yoming\b| yoming\b)"replace="$1avilion$2"/><!--avoid ]-->
<Typoword="Pejorative"find="\b()erjorti(ons?|ve*)\b"replace="$1ejorati$2"/>
<Typoword="Peloton"find="\b()eleton\b"replace="$1eloton"/>
<Typoword="Penélope Cruz"find="\benelope\s+ruz\b"replace="Penélope Cruz"/>
<Typoword="Peninsula"find="\b()en(?:is|ni(?:ns|s)|sin)ula(r)?\b"replace="$1eninsula$2"/>
<Typoword="People (1)"find="\b()(?:eop|oeple)()?\b"replace="$1eople$2"/>
<Typoword="People (2)"find="\b()o?eo(?:lpe|pel)()?\b"replace="$1eople$2"/>
<Typoword="(Un/Mis/Ap)Perceive"find="\b(pp|isp||np)(?:ercie|rec+)v(abl|e?|ing)\b"replace="$1erceiv$2"/>
<Typoword="Percent"find="\b()recent(ages?)?\b(?<!f precent)"replace="$1ercent$2"/><!--avoid typo in "if present"-->
<Typoword="Perform"find="\b()e(?:for|rfo(?:re)?)m(a(?:ble|nces?)|e(?:d|rs?)|ing|s?)\b"replace="$1erform$2"/>
<Typoword="(Non)Performance"find="\b(onp|)(?:er?|re)form(?:a|en+|na)ce(s)?\b"replace="$1erformance$2"/>
<Typoword="Performs"find="\b()erfore?mes\b"replace="$1erforms"/>
<Typoword="Perhaps"find="\b()er(?:h(?:asp|eaps|pas)|phas)\b"replace="$1erhaps"/>
<Typoword="Perimeter"find="\b()erimiter(s)?\b"replace="$1erimeter$2"/>
<Typoword="Period"find="\b()(?:e|rer?)iod(s|ic(?:al(?:ly|s?))?)?\b"replace="$1eriod$2"/>
<Typoword="Peripatetic"find="\b()eripathetic\b"replace="$1eripatetic"/>
<Typoword="Peripheral"find="\b()eripherial(ly|s?)\b"replace="$1eripheral$2"/>
<Typoword="Perjury"find="\b()erjerr?y\b"replace="$1erjury"/>
<Typoword="(Im)Permanent"find="\b(mp|)er(?:m(?:an|n)|nm)n(c|t*)\b"replace="$1ermanen$2"/>
<Typoword="Perpendicular"find="\b()erpindicular(ly)?\b"replace="$1erpendicular$2"/>
<Typoword="Perseverance"find="\b()erservern(ce|t(?:ly)?)\b"replace="$1erseveran$2"/>
<Typoword="Persevere"find="\b()erserver(e?|ing)\b"replace="$1ersever$2"/>
<Typoword="Persistent"find="\b()eristen(c|t(?:ly)?)\b"replace="$1ersisten$2"/><!--avoid persistant, a concept in ontology-->
<Typoword="Personage"find="\b()ersonn+age(s)?\b"replace="$1ersonage$2"/>
<Typoword="Personal"find="\b()eros?nal(ity|ly)?\b"replace="$1ersonal$2"/>
<Typoword="Personnel"find="\b()ersonn?ell\b"replace="$1ersonnel"/>
<Typoword="Persuade"find="\b()(?:ersu|u(?:rsua|susa))(d(?:e?|ing)|si+)\b"replace="$1ersua$2"/>
<Typoword="Perturbation"find="\b()ertub(ations?|ed)\b"replace="$1erturb$2"/>
<Typoword="Pessary"find="\b()essiary\b"replace="$1essary"/>
<Typoword="(Com)Petition"find="\b(omp|)etetion(ed|ing|s?)\b"replace="$1etition$2"/>
<Typoword="Pharaoh"find="\b()haroah(s)?\b(?!\s+Sanders)(?<!(?:A(?:merican|shley)|Jay)\s+Pharoah|illage\s+of\s+the\s+Pharoahs)"replace="$1haraoh$2"/>
<Typoword="Phenomenal"find="\b()heno(?:menon|n(?:em|men))a(l(?:ly)?)?\b"replace="$1henomena$2"/>
<Typoword="Phenomenally"find="\b()henomenonly\b"replace="$1henomenally"/>
<Typoword="Phenomenon"find="\b()heno(?:m(?:enom|on(?:enom|on(?:on)?))|nmon)\b"replace="$1henomenon"/>
<Typoword="Philanthropy"find="\b()hila(?:nt(?:hr?|r)|thr)oph?(?<!lanthrop)(i(?:es|sts?)|ic(?:al(?:ly)?)?|)\b"replace="$1hilanthrop$2"/>
<Typoword="Philosophical"find="\b()h(?:ill?i|yll?o)sophical(ly)?\b"replace="$1hilosophical$2"/>
<Typoword="Philosophy"find="\b()hil(?:so|osa?|so)ph(ers?|i(?:c*|es|+)|y)\b"replace="$1hilosoph$2"/>
<Typoword="Pho(n/t)ograph"find="\b()ho()a?graph(ers?|ic*|)?\b"replace="$1ho$2ograph$3"/>
<Typoword="Phoenician"find="\bhonecin(s)?\b"replace="Phoenician$1"/>
<Typoword="Physics"find="\b()hisic(al(?:i(?:ss?|ty)|ly|s?)|i(?:ans?|sts?|ze?)|s?)\b"replace="$1hysic$2"/>
<Typoword="Piña Colada"find="\bPina\s+ol+ada(s)?\b"replace="Piña Colada$1"/>
<Typoword="Picture"find="\b()citur(e?|ing)\b"replace="$1ictur$2"/>
<Typoword="Piece"find="\b()eic(e(?:?|meal|work)|ing)\b"replace="$1iec$2"/>
<Typoword="Pilgrimage"find="\b()ilgr(?:a|im)mage(s)?\b"replace="$1ilgrimage$2"/>
<Typoword="Pineapple"find="\b()inn?app?le(s)?\b"replace="$1ineapple$2"/>
<Typoword="Pinocchio"find="\bPin(?:noc?|o)chio\b"replace="Pinocchio"/>
<Typoword="Pioneer"find="\b()i(?:on(?:ee|n(?:ee)?)|non)e+r(ed|ing|s?)\b"replace="$1ioneer$2"/>
<Typoword="Place"find="\b()alce(?!phalo)(*)\b"replace="$1lace$2"/><!--avoid palcephalopoda & variants-->
<Typoword="(Dis/Em/Mis/Re)Placement"find="\b(isp|mp|isp||ep)lacment(s)?\b"replace="$1lacement$2"/>
<Typoword="Plácido Domingo"find="\bPlacido\s+omingo\b"replace="Plácido Domingo"/>
<Typoword="Plagiarism"find="\b()lagaris()\b"replace="$1lagiaris$2"/>
<Typoword="Plague"find="\b()laug(e?|ing)\b"replace="$1lagu$2"/>
<Typoword="Plaintiff"find="\b()lantiff?(s)?\b"replace="$1laintiff$2"/>
<Typoword="_plant life"find="(?!\bPlantlife\b)\b()lant?life\b"replace="$1lant life"/><!--avoid proper n. Plantlife-->
<Typoword="Plantation"find="\b()latation(s)?\b"replace="$1lantation$2"/><!--planation is a word-->
<Typodisable="Plaque"find="\b()lacque(s)?\b"replace="$1laque$2"/><!--avoid placque http://www.merriam-webster.com/medical/placque-->
<Typoword="Plateau"find="\b()lateu(s)?\b"replace="$1lateau$2"/>
<Typoword="Platform"find="\b()lataform(s)?\b"replace="$1latform$2"/>
<Typoword="Platinum"find="\b()lat(?:ini|ni?)um(s)?\b"replace="$1latinum$2"/>
<Typoword="Playwright"find="\b()lay(?:right|writer?)(s)?\b"replace="$1laywright$2"/>
<Typoword="(Un)Pleasant"find="\b(|np)l(?:aesa|e(?:ase|sa))nt(ly|ness)?\b"replace="$1leasant$2"/>
<Typoword="Plebiscite"find="\b()lebite(s)?\b"replace="$1lebiscite$2"/>
<Typoword="Plummet"find="\b()lum(?:et?|met)t(ed|ing|s?)(?<!Rue Plumet)\b"replace="$1lummet$2"/>
<Typoword="Poem"find="\b()eom(s)?\b"replace="$1oem$2"/>
<Typoword="Poetry"find="\b()(?:eotr|oet)y\b"replace="$1oetry"/>
<Typoword="Point"find="\b(pp|isapp|)iont(e(?:d|rs?)|ing|ments?|s?)\b"replace="$1oint$2"/>
<Typoword="Poison"find="\b()o(?:isi|sio)n(ed|ing|ous|s?)\b"replace="$1oison$2"/>
<Typoword="Politician"find="\b()ol(?:iti(?:c|ti)|tici)an(s)?\b"replace="$1olitician$2"/>
<Typoword="Pollinate"find="\b()olinat(+)\b"replace="$1ollinat$2"/>
<Typoword="Pollute"find="\b()olut(e?|i(?:ng|on))\b"replace="$1ollut$2"/>
<Typoword="Pölsa"find="\b()olsa\b"replace="$1ölsa"/>
<Typoword="Polyphonic"find="\b()olyphonyi?c\b"replace="$1olyphonic"/>
<Typoword="Polysaccharide"find="\b()olysacc?(?:aride|charid)(s)?\b"replace="$1olysaccharide$2"/>
<Typoword="Pomegranate"find="\b()omegranite(s)?\b"replace="$1omegranate$2"/>
<Typoword="Popular"find="\b()opulare\b"replace="$1opular"/>
<Typoword="(Pop/Reg)ularity"find="\b(op|eg)ulraty\b"replace="$1ularity"/>
<Typoword="Popularly"find="\b()opular(?:l)?y\b"replace="$1opularly"/>
<Typoword="Population"find="\b()op(?:luatio|oulatio|ulati)n(s)?\b"replace="$1opulation$2"/>
<Typoword="Portrait"find="\b()r?o(?:rt|tr)a(it(?:s?|ures?)|y(?:als?|ed|ing|s?))\b"replace="$1ortra$2"/>
<Typoword="Portraying"find="\b()ortraing\b"replace="$1ortraying"/>
<Typoword="Position"find="\b()(?:osi|soi)tion(al(?:ly)?|ed|s?)\b"replace="$1osition$2"/>
<Typoword="(Dis/Im/Re/Com/Sup)Position"find="\b(omp|isp|mp||ep|upp)os(?:i(?:sti|titi?)|osti|ti)(on(?:al(?:ly)?|ed|ing|s?)|ve(?:ly|s?))\b"replace="$1ositi$2"/>
<Typoword="(Dis/Re)Possess"find="\b(isp||ep)os(?:es?|se)s(e|i(?:ng|ons?|ve(?:ly|ness|s?))|ors?)\b"replace="$1ossess$2"/>
<Typoword="Possesses"find="\b()ossessess\b"replace="$1ossesses"/>
<Typoword="(Im)Possibility"find="\b(mp|)os(?:ib(?:ili|li)|sibli)t(ies|y)\b"replace="$1ossibilit$2"/>
<Typoword="(Im)Possible"find="(?<!\bè\s{0,9})\b(mp|)os(?:ib|s(?:ab|ibi))l()\b"replace="$1ossibl$2"/>
<Typoword="Posthumous"find="\b()ost(?:h(?:omous|umo(?:s|usl))|umos)(ly)?\b"replace="$1osthumous$2"/>
<Typoword="Postpone"find="\b()oston(e?|ing)\b"replace="$1ostpon$2"/>
<Typoword="Potato"find="\b()otatoe\b"replace="$1otato"/>
<Typoword="Potsdam"find="\bpostdam\b"replace="Potsdam"/>
<Typoword="Power"find="\b()woer(ed|ful(?:ly)?|s?)\b"replace="$1ower$2"/>
<Typoword="Powerful"find="\b()o(?:ver|we)ful\b"replace="$1owerful"/>
<Typoword="Practical"find="\b()racticle\b"replace="$1ractical"/>
<Typoword="Practice"find="\b()ratic(al(?:ly)?|e?|ing)\b"replace="$1ractic$2"/>
<Typoword="Practitioner"find="\b()racti(?:ci)?oner(s)?\b"replace="$1ractitioner$2"/>
<Typoword="Prairie"find="\b()ra(?:iry|rie)(s)?\b"replace="$1rairie$2"/>
<Typoword="Pre-Columbian"find="\b()re?()olombian\b"replace="$1re-$2olumbian"/>
<Typoword="Precursor"find="\b()recu(?:rse|so)r(s)?\b"replace="$1recursor$2"/>
<Typoword="Predecessor"find="\b()re(?:cedesso|d(?:+es+|a(?:c(?:+es+|es)|s(?:+es+|es(?:|s+)))|e(?:c(?:+es+|es)|s(?:+es+|es(?:|s+)))|i(?:c(?:+es+|es)|s(?:+es+|es(?:|s+)))|+es+e))r(s)?\b"replace="$1redecessor$2"/>
<Typoword="Predictable"find="\b()redicatbl()\b"replace="$1redictabl$2"/>
<Typoword="Prediction"find="\b()rediciton(s)?\b"replace="$1rediction$2"/>
<Typoword="Predominately"find="\b()redomiantly\b"replace="$1redominately"/>
<Typoword="Preeminent"find="\b()reminen(ce|t)\b"replace="$1reeminen$2"/>
<Typoword="Preferably"find="\b()referrabl()\b"replace="$1referabl$2"/>
<Typoword="Pregnant"find="\b()reg(?:a(?:na)?|ne)n(c(?:ies|y)|t)\b"replace="$1regnan$2"/>
<Typoword="Premier(e)"find="\b()r(?:eme?i|imie)r(e?|ing|s?)\b"replace="$1remier$2"/>
<Typoword="Premillennial"find="\b()remillenial\b"replace="$1remillennial"/>
<Typoword="Preoccupy"find="\b()reocup(ations?|ie|y)\b"replace="$1reoccup$2"/>
<Typoword="Prerogative"find="\b()erogative(s)?\b"replace="$1rerogative$2"/>
<Typoword="Presence"find="\b()res(?:anc|cenc|ens)e\b"replace="$1resence"/>
<Typoword="Presidential"find="\b()res(?:edenti|idenit)al\b"replace="$1residential"/>
<Typoword="Prestigious"find="\b()res(?:it(?:eg|gi|ig)|t(?:eg|ige?|tig))ous(ly)?\b"replace="$1restigious$2"/>
<Typoword="Presumably"find="\b()resum(?:abe|ib)ly\b"replace="$1resumably"/>
<Typoword="Prevail"find="\b()reva(?:il)?l(ed|ing(?:ly)?)\b"replace="$1revail$2"/><!--avoid "Prevale"-->
<Typoword="Priest"find="\b()reist(hoods?|ly|s?)\b"replace="$1riest$2"/>
<Typoword="Priesthood"find="\b()riestood\b"replace="$1riesthood"/>
<Typoword="Primitive"find="\b()rimative(ly|s?)\b"replace="$1rimitive$2"/>
<Typoword="Primordial"find="\b()rimordal\b"replace="$1rimordial"/>
<Typoword="Princip(al/le)"find="\b()ri(?:ci|n(?:c|ici))p(al(?:ly|s?)|le?)\b"replace="$1rincip$2"/>
<Typoword="(Im)Prison"find="\b(mp|)rision(e(?:d|rs?)|ing|ment|s?)\b"replace="$1rison$2"/>
<Typoword="Private"find="\b()rivi?t(e(?:ly|s?)|i(?:ations?|e?|ing))\b"replace="$1rivat$2"/>
<Typoword="Privately (1)"find="\b()rivatell?y-"replace="$1rivately "/>
<Typoword="Privately (2)"find="\bprivately-(?<= is a privately-)"replace="privately "/>
<Typoword="Privilege"find="\b(|nderp)riv(?:ald?|el(?:d?|le)|il(?:|ed)|led)g(e?|ing)\b"replace="$1rivileg$2"/>
<Typoword="Probabilistic"find="\b()robablistic\b"replace="$1robabilistic"/>
<Typoword="Probability"find="\b()roba(?:bila|libi)t(ies|y)\b"replace="$1robability$2"/>
<Typoword="(Im)Probably"find="\b(mp|)ro(?:b(?:al?)?|pab)l()\b"replace="$1robabl$2"/>
<Typoword="Problem"find="\b()(?:orble|robel)m(s)?\b"replace="$1roblem$2"/>
<Typoword="Procedure"find="\b()roce(?:dger|edure)(s)?\b"replace="$1rocedure$2"/>
<Typoword="Proceed"find="\b()rocede?(ed|ings?|s?)\b"replace="$1roceed$2"/>
<Typoword="Process"find="\b()ro(?:c(?:ces*|e)|es?)s(e|i(?:ng|ons?)|ors?)?\b"replace="$1rocess$2"/>
<Typoword="Processor"find="\b()rocesser(s)?\b"replace="$1rocessor$2"/>
<Typoword="Proclaim"find="\b()roclam(e|ing)\b"replace="$1roclaim$2"/>
<Typoword="Profess_"find="\b()rof(?:ess+|fes?)s(e|ing)?\b"replace="$1rofess$2"/>
<Typoword="Profession"find="\b()roff?esion(s)?\b"replace="$1rofession$2"/>
<Typoword="(Non/Semi/Un)Professional"find="\b(emip|onp||Smip|np)rof(?:es(?:ion+al?|sion(?:al|nal?))|fes+ion+al?)l(i+|ly|s?)\b(?<!ofesional\b)"replace="$1rofessional$2"/><!--avoid Spanish word profesional-->
<Typoword="Professor"find="\b()rof(?:es(?:|se)|fess?)r(s)?\b(?!\s+de\b)(?<!\b(?:l|el||n)\s+\brof(?:es(?:|se)|fes(?:|s))rs?\b(?!\s+de\b))"replace="$1rofessor$2"/><!--avoid foreign "profesor" thru use of lookaround for various articles-->
<Typoword="Profesor (Spanish)"find="\b()rofessor(s)?\b(?<=\b(?:el|l)\s+\b()rofessor(s)?\b)"replace="$1rofesor$2"/>
<Typoword="Proficient"find="\b()rof(?:fii|iia)n(cy|t(?:ly)?)\b"replace="$1roficien$2"/>
<Typoword="Programmable"find="\b()rogramable\b"replace="$1rogrammable"/>
<Typoword="Progress"find="\b()(?:rog|togr)ess(ed|i(?:ng|ons?|ve*))\b"replace="$1rogress$2"/>
<Typoword="Proliferation"find="\b()reliferat(+)\b"replace="$1roliferat$2"/>
<Typoword="pro-life"find="\bpro\s*life(rs?)?\b"replace="pro-life$1"/><!--avoid cap. form due to various proper nouns-->
<Typoword="Prolific"find="\b()rofilic(ly)?\b"replace="$1rolific$2"/>
<Typoword="Promiscuous"find="\b()romiscous(ly)?\b"replace="$1romiscuous$2"/>
<Typoword="Promote"find="\b()(?:omo|rom(?:e|ot))t(e|i(?:ng|ons?))\b"replace="$1romot$2"/>
<Typoword="Prompt"find="\b()ropmt(ed|ing|s?)\b"replace="$1rompt$2"/>
<Typodisabled="Pronominal"find="\b()ronomial\b"replace="$1ronominal"/><!--avoid ]-->
<Typoword="Pronounced"find="\b()rou?nou+h?(?<!ronounc)(e?|ing|ments?)\b"replace="$1ronounc$2"/>
<Typoword="Pronouncement"find="\b()rouncement(s)?\b"replace="$1ronouncement$2"/>
<Typoword="Pronunciation"find="\b()ron(?:o(?:nci?ation|un(?:ci?ation|ici?ati?on))|u(?:ciation|n(?:c(?:ation|iaton)|ici?ati?on)))(s)?\b"replace="$1ronunciation$2"/>
<Typoword="Propaganda (1)"find="\b()r(?:apa|opo)gand(as?|i(?:s(?:e?|ts?)|ze?))\b"replace="$1ropagand$2"/>
<Typoword="Propaganda (2)"find="\b()ropogand(+)\b"replace="$1ropagand$2"/>
<Typoword="Propagate"find="\b()ropogat(e?|i(?:ng|on))\b"replace="$1ropagat$2"/>
<Typoword="proper"find="\bpropper(ly)?\b"replace="proper$1"/><!--avoid surname Propper-->
<Typoword="Prophecy"find="\b()rophac(ies|y)\b"replace="$1rophec$2"/>
<Typoword="Prophesied_"find="\b()rophec(ie(?:d|rs?)|ying)\b"replace="$1rophes$2"/>
<Typoword="(Dis)Proportion"find="\b(isp|)(?:opor|ropo)tion(a(?:l|te)(?:ly)?|s?)\b"replace="$1roportion$2"/>
<Typoword="(Dis)Proportionate"find="\b(isp|)roportiate(ly)?\b"replace="$1roportionate$2"/>
<Typoword="Proposition"find="\b()ropostion(ed|s?)\b"replace="$1roposition$2"/>
<Typoword="Proprietary"find="\b()ropietar(i(?:es|ly)|y)\b"replace="$1roprietar$2"/>
<Typoword="Proselytizing"find="\b()roseletyzing\b"replace="$1roselytizing"/>
<Typoword="Prosecutor"find="\b()rosecuter(ial|s?)\b"replace="$1rosecutor$2"/>
<Typoword="Prospect/Prosper"find="\b()ropse(ct(?:i(?:ng|ve)|us)?|r(?:ed|ity|ous)?)\b"replace="$1rospe$2"/>
<Typoword="Propose"find="\b()ropse()?\b"replace="$1ropose$2"/>
<Typoword="Protagonist"find="\b()rotganist(s)?\b"replace="$1rotagonist$2"/>
<Typoword="Protect"find="\b()retect(*)\b(?<!tect(?:al|o|um))"replace="$1rotect$2"/><!--avoid pretecto, pretectal, & pretectum-->
<Typoword="Protein"find="\b()rotie(ds?|n(?:ase|oid|uria)?s?)\b"replace="$1rotei$2"/>
<Typoword="Protestant_"find="\bprotestnt(ism|s?)\b"replace="Protestant$1"/>
<Typoword="Protocol"find="\b()rotocal(s)?\b"replace="$1rotocol$2"/>
<Typoword="Protuberance"find="\b()rot(?:ruber|ubere)n(ces?|t(?:ly)?)\b"replace="$1rotuberan$2"/>
<Typoword="(Ap/Im/Dis/Disap/Re)Prove"find="\b(pp|is(?:app|p)|mp||ep)roov(a(?:bl|l)|e?|ing*)\b"replace="$1rov$2"/>
<Typoword="Provide"find="\b()(?:orvid|rovd)(e(?:d|rs?)|ing)\b"replace="$1rovid$2"/>
<Typoword="Provincial"find="\b()rov(?:i(?:ci|ni?ci?)|ni?ci?)(?<!vinci)al(ly)?\b"replace="$1rovincial$2"/>
<Typoword="Provisional"find="\b()rovisonal(ly)?\b"replace="$1rovisional$2"/>
<Typoword="Provocative"find="\b()rovacative(ly)?\b"replace="$1rovocative$2"/>
<Typoword="Proximity"find="\b()roximty\b"replace="$1roximity"/>
<Typoword="Psyche+"find="\b()(?:hych|sy|ysc)(e(?:del?ics?|s?)|iatr+|o(?:ics?|log+|tics?))\b"replace="$1sych$2"/>
<Typoword="Public (domain/housing/library)"find="\b()ubic\s*(uildings?|omain|(?:ducation|nemy|vents?)|(?:eedback|und(?:ing|s))|atherings?|(?:earings?|o(?:spitals?|us(?:es?|ing)))|ibrar(?:ies|y))\b"replace="$1ublic $2"/>
<Typoword="Public school"find="\b()ubic\s*(){1,2}o+l\b"replace="$1ublic $2chool"/>
<Typoword="Publication"find="\b()ubica(+)\b"replace="$1ublica$2"/>
<Typoword="(Un)Published"find="\b(|np)ub(?:ish|lis)(able|e(?:?|rs?)|ing)?\b"replace="$1ublish$2"/>
<Typoword="Puccini"find="\bpucc?ini\b"replace="Puccini"/>
<Typoword="pumpkin"find="\bpumkin\b"replace="pumpkin"/><!--avoid Pumkin-->
<Typoword="Purchase"find="\b()u(?:cha|rch)s(e?|ing)\b"replace="$1urchas$2"/>
<Typoword="Purport"find="\b()(?:erpor?|urpo)t(*)\b"replace="$1urport$2"/><!--avoid -rated suffix-->
<Typoword="Purported"find="\b()roport(ed(?:ly)?|ing|s)\b"replace="$1urport$2"/><!--avoid Proport (a business term)-->
<Typoword="Purpose"find="\b()(?:rup|upr?)os(e(?|ful|less)(ly)?|ing)\b"replace="$1urpos$2"/>
<Typoword="Purposely"find="\b()urposedly\b"replace="$1urposely"/>
<Typoword="Pursue"find="\b()ersu(a(?:ble|n(?:ce|t))|e(?:?|rs?)|i(?:ng|ts?))\b"replace="$1ursu$2"/>

Q

<Typoword="(Ac)Quaint"find="\b(cq|)uiant(ance*|e(?:d(?:ly)?|st)|ing|ly|s?)\b"replace="$1uaint$2"/>
<Typoword="Qualify"find="\b(isq||nq)uai?l+?f(?<!alif)(i(?:cations?|e)|y(?:ing)?)\b"replace="$1ualif$2"/>
<Typoword="Qua-...-y"find="\b(isq|q||nq)au(l|nt)(f(?:i(?:cations?|e)|y(?:ing)?)|t(?:ies|y))\b"replace="$1ua$2i$3"/>
<Typoword="Quantity"find="\b()uan(?:it(?:it)?|t(?:at|iti))(ies|y)\b"replace="$1uantit$2"/>
<Typoword="Quarantine"find="\b()uar(?:anta|ent)ine()?\b"replace="$1uarantine$2"/>
<Typoword="Quarter_"find="\b()uater(?!cent|ma(?:in|ss)|n|pyr)(*)\b"replace="$1uarter$2"/>
<Typodisabled="Québécois"find="\bQu(?:eb|be)cois(es?)?\b"replace="Québécois$1"/>
<Typoword="Question"find="\b()ue(?:s(?:i(?:on|ton)|t(?:iom|oin))|tion)(e(?:d|rs?)|ing(?:ly)?|s?)\b"replace="$1uestion$2"/>
<Typoword="Questionable"find="\b()uest(?:ionn|on)ab(+)\b"replace="$1uestionab$2"/>
<Typoword="Questionnaire"find="\b()uestion+air(s)?\b"replace="$1uestionnaire$2"/>
<Typoword="Quintessential"find="\b()uinessential(ly)?\b"replace="$1uintessential$2"/>
<Typoword="Quizzes"find="\b()uize()\b"replace="$1uizze$2"/>

R

<Typoword="Rabbinical"find="\b()abin+ical(ly)?\b"replace="$1abbinical$2"/>
<Typoword="Radioactive"find="\b()adiactiv(+)\b"replace="$1adioactiv$2"/>
<Typoword="Railroad"find="\b()ail(?:oa|rao)d(e(?:d|rs?)|ing|s?)\b"replace="$1ailroad$2"/>
<Typoword="Rapid"find="\b()epid(s)?\b"replace="$1apid$2"/>
<Typoword="Raspberry"find="\b()as(?:ber+|+er|per+)(ies|y)\b"replace="$1aspberr$2"/>
<Typoword="Ratify"find="\b()adif(i(?:cation|e)|y)\b"replace="$1atif$2"/>
<Typoword="Raucous"find="\b()a(?:ca|uc)us(ly)?\b"replace="$1aucous$2"/>
<Typoword="Reach"find="\b()e(?:ac|ch)(e|ing)\b"replace="$1each$2"/>
<Typoword="Realistic"find="\b()ealsit(ic*|s?)\b"replace="$1ealist$2"/>
<Typoword="Realized"find="\b()eliz(ation|e?|ing)\b"replace="$1ealiz$2"/>
<Typoword="Really"find="\b()(?:ael|el?a)ly\b"replace="$1eally"/>
<Typoword="Rebell(ed|i(?:ng|on))"find="(?<!\ba\s{1,9})\b()eb(?:bel?|)l(ed|ing|ion(?!\s+(?:a\b|del?\b|en\b))s?|ious*)\b"replace="$1ebell$2"/><!--avoid Spanish word rebelion(sic) by looking for Spanish articles-->
<Typoword="Rebelión (1)"find="(?<=\ba\s{1,9})\b()ebelion\b"replace="$1ebelión"/>
<Typoword="Rebelión (2)"find="\b()ebelion(?=\s+(?:a\b|del?\b|en\b))\b"replace="$1ebelión"/>
<Typoword="Rebound"find="\b()ebounce\b"replace="$1ebound"/>
<Typoword="Recall"find="\b()eacll(ed|ing|s?)\b"replace="$1ecall$2"/>
<Typoword="Recipe"find="\b()ecipie(s)?\b"replace="$1ecipe$2"/>
<Typoword="Recipient"find="\b()ec(?:ei?|ie)pient(s)?\b"replace="$1ecipient$2"/>
<Typoword="Recognise"find="\b()ecoi((?:abl|e?|ing)|tions?)\b"replace="$1ecogni$2"/>
<Typoword="Recommend"find="\b()e(?:c(?:cm?men|om(?:en?|m(?:an|e)))|ommen)d(a(?:ble|t+)|e(?:d|rs?)|ing|s?)\b"replace="$1ecommend$2"/>
<Typoword="Reconciliation"find="\b()econil(?:li)?at(ions?|ory)\b"replace="$1econciliat$2"/>
<Typoword="Reconnaissance"find="\b()ec(?:c+on(?:+s++|n+(?:+s++|n+s++|s++)|s++)|on(?:+s++|n+(?:a(?:a(?:ss++ess++oss++uss++|*s(?:+|s(?:ai||s++)))|*s(?:+|s(?:ai||s++))|s++)|(?:+s(?:+|s(?:ai||s++))|s++|s++|us++)|n+s++|s++)|s++))nce(s)?\b"replace="$1econnaissance$2"/>
<Typoword="Record"find="\b()ecrod(e(?:d|rs?)|ings?|s?)\b"replace="$1ecord$2"/>
<Typoword="Recreate"find="\b()ecrat(e?|ion(?:al(?:ly)?)?|ing)\b"replace="$1ecreat$2"/>
<Typoword="Recruit"find="\b()ec(?:ru|ui)t(e(?:d|rs?)|ing|ments?|s?)\b"replace="$1ecruit$2"/>
<Typoword="Recurr(ed/ing)"find="\b()ea?c(?:cur?|u)r(e(?:d|n(?:ces?|t(?:ly)?))|ing)\b"replace="$1ecurr$2"/><!--avoid reoccuring-->
<Typoword="Redeem"find="\b()eedem(ed|ing|s?)\b"replace="$1edeem$2"/>
<Typoword="Refer"find="\b()efer(e(?:e?|n(?:(?:e?|ing)|t(?:ial|s?)))|s?)\b"replace="$1efer$2"/>
<Typoword="Referendum"find="\b()efr?edendum\b"replace="$1eferendum"/>
<Typoword="Referred"find="\b()ef(?:e|fe|rer?)r(als?|ed|ing)\b"replace="$1eferr$2"/>
<Typoword="Referring"find="\b()efr?eriang\b"replace="$1eferring"/>
<Typoword="Refers"find="\b()efr?(?:er|re)rs\b"replace="$1efers"/>
<Typoword="Refrigerate"find="\b()efridgerat(e?|i(?:ng|on)|ors?)\b"replace="$1efrigerat$2"/>
<Typoword="Refusal"find="\b()efusla(s)?\b"replace="$1efusal$2"/>
<Typoword="Regard"find="\b()eguard(ing|less|s)\b"replace="$1egard$2"/>
<Typoword="Regardless"find="\birr?egu?ardless\b"replace="regardless"/>
<Typoword="Regardless"find="\bIrr?egu?ardless\b"replace="Regardless"/>
<Typoword="Regards"find="\b()e(?:agrd|garde)s\b"replace="$1egards"/>
<Typoword="Regular"find="\b()egluar(ity|ly)?\b"replace="$1egular$2"/>
<Typoword="(Ir)Regularly"find="\b(rr|)egu(?:arly|lar(?:ily|y))\b"replace="$1egularly"/>
<Typoword="Regulation"find="\b()egulaion(s)?\b"replace="$1egulation$2"/>
<Typoword="Regulator"find="\b()egulaotr(s)?\b"replace="$1egulator$2"/>
<Typoword="Rehearse"find="\b()ehers(als?|e?|ing)\b"replace="$1ehears$2"/>
<Typoword="Reign"find="\b()eigin(ed|ing|s?)\b"replace="$1eign$2"/>
<Typoword="Reincarnation"find="\b()eicarnat(e?|i(?:ng|on))\b"replace="$1eincarnat$2"/>
<Typoword="Reinforce"find="\b()eenforc(e|ing|ments?)\b"replace="$1einforc$2"/>
<Typoword="(Re)iterate"find="\b(|ei)tterat(e?|i(?:ng|ons?|ve(?:ly)?)|or)\b"replace="$1terat$2"/>
<Typoword="Rejuvenate"find="\b()ejuvnat(e?|i(?:ng|on)|ors?)\b"replace="$1ejuvenat$2"/>
<Typoword="Relate"find="\b()eala?t(e?|ion(?:al|s?|ships?)|iv*)\b"replace="$1elat$2"/>
<Typoword="Relation"find="\b()elatiopn(s(?:hips?)?)?\b"replace="$1elation$2"/>
<Typoword="Relatively"find="\b()ea?lita?ve(ly|s?)\b"replace="$1elative$2"/>
<Typoword="Release (2)"find="\b()else()?\b"replace="$1elease$2"/>
<Typoword="Release (1)"find="\b()e(?:ala?|la?e)s(e?|ing)\b"replace="$1eleas$2"/>
<Typoword="(Ir)Relevant"find="\b(rr|)el(?:av|evea?|l+v)n(c|t(?:ly)?)\b"replace="$1elevan$2"/>
<Typoword="(Un)Reliability"find="\b(|nr)e(?:alibil|liabli)ty\b"replace="$1eliability"/>
<Typoword="Relief"find="\b()elei(fs?|v(?:e(?:?|rs?)|ing))\b"replace="$1elie$2"/>
<Typoword="Religion"find="\b()el(?:gio|ig(?:eo|ioi|o))(n(?:is|less|s?)|s(?:e|ity)|us*)\b"replace="$1eligio$2"/>
<Typoword="Religious"find="\b()eligios(ly|ness)?\b"replace="$1eligious$2"/>
<Typoword="Relinquish"find="\b()el(?:enqui|i(?:nque?|qui))sh(e|ing|ment)?\b"replace="$1elinquish$2"/>
<Typoword="Remain"find="(?!\bRemian\b)\b()e(?:ama?i|m(?:ai|ia))nd?(?<!emain)(ders?|ed|ing|s?)\b"replace="$1emain$2"/><!--avoid proper noun Remian-->
<Typoword="Remaining"find="\b()ema(?:ing(?:ing)?|ning)\b"replace="$1emaining"/>
<Typoword="Remember"find="\b()emeber(ed|ing|s?)\b"replace="$1emember$2"/>
<Typoword="Reminisce"find="\b()em(?:enis?|in(?:es?|i|si?))c(e(?:?|n*)|ing)\b"replace="$1eminisc$2"/>
<Typoword="Remnant"find="\b()emnnt(s)?\b"replace="$1emnant$2"/>
<Typoword="Renaissance"find="\b()en(?:ai|nais?)sance\b"replace="$1enaissance"/>
<Typoword="René Descartes"find="\bRene\s+Descartes\b"replace="René Descartes"/>
<Typoword="Rendezvous"find="\b()endeous\b"replace="$1endezvous"/>
<Typoword="Renewal"find="\b()enewl(s)?\b"replace="$1enewal$2"/>
<Typoword="Renown"find="\b()eknown(ed)?\b"replace="$1enown$2"/>
<Typoword="Renters"find="\b()entor(s)?\b"replace="$1enter$2"/>
<Typoword="Reorganization"find="\b()eorganision\b"replace="$1eorganization"/>
<Typoword="Repeated"find="\b()epetead(ly)?\b"replace="$1epeated$2"/>
<Typoword="(Un)Repentant"find="\b(|nr)epe(?:nte|t)n(ce|t(?:ly)?)\b"replace="$1epentan$2"/>
<Typoword="Repertoire"find="\b()epto(ires?|r(?:i(?:al|es)|y))\b"replace="$1eperto$2"/>
<Typoword="Replacement"find="\b()elpacement(s)?\b"replace="$1eplacement$2"/>
<Typoword="Reported"find="\b()eportad(ly)?\b"replace="$1eported$2"/>
<Typoword="Represent"find="\b()e(?:p(?:es+?+|p*es+?+|r(?:es+?+|+es+?+|sent))|r*es+?+)(?<!epres(?:ent|se))(ati(?:on(?:al|s?)|ves?)|ed|ing|s?)\b"replace="$1epresent$2"/>
<Typoword="Representation"find="\b()epres(?:anta|en)ti(on|ves?)\b"replace="$1epresentati$2"/>
<Typoword="Representative"find="\b()eprese?*ve?(?<!entative)(s)?\b"replace="$1epresentative$2"/>
<Typoword="Reprimand"find="\b()eprmnd(ed|ings?|s?)\b"replace="$1eprimand$2"/>
<Typoword="Require"find="\b()(?:e(?:cqui?re?|qu(?:ie?r|re?))|quire?)(?|ments?)\b"replace="$1equire$2"/>
<Typoword="Requiring"find="\b()(?:e(?:cqui?|qu)|qui)re?ing\b"replace="$1equiring"/>
<Typoword="Rescind"find="\b()eind(ed|ing|s?)"replace="$1escind$2"/>
<Typoword="Resemble"find="\b()es(?:emb|sembl)(ances?|e(?:?|nces?)|ing)\b"replace="$1esembl$2"/>
<Typoword="Reservoir"find="\b()esevoir(s)?\b"replace="$1eservoir$2"/>
<Typoword="Reside"find="\b()ecid(e(?:?|nts?)|ing)\b"replace="$1esid$2"/>
<Typoword="Resolute"find="\b()esollut(+)\b"replace="$1esolut$2"/>
<Typoword="Respect"find="\b(isr|)eps?ect(*)\b"replace="$1espect$2"/>
<Typoword="Respectively"find="\b()espec(?:itvely|tiv(?:elly|ley))\b"replace="$1espectively"/>
<Typoword="Response (1)"find="\b()e(?:pons|spo(?:ms|nc))(es?|ive(?:ly)?|ib+)\b"replace="$1espons$2"/>
<Typoword="Response (2)"find="\b()e(?:pons|spo(?:ms|n))\b"replace="$1esponse"/>
<Typoword="(Ir)Responsibility"find="\b(rr|)espon(?:is?bili|nsibili|s?bili|sib(?:il|li))t(?:i?t?(ies)|(e)(i)(s)|?t?(y))\b"replace="$1esponsibilit$2$4$3$5$6"/>
<Typoword="(Ir)Responsible"find="\b(rr|)espon(?:isb|s(?:b|ibi))l()\b"replace="$1esponsibl$2"/>
<Typoword="Restaurant"find="\b()e(?:s(?:au|t(?:?|u(?:?)?)?)|tau)ru?a?e?u?n?t(s)?(?<!estaurants?)(?<=\b{1,10}{1,10})\b"replace="$1estaurant$2"/>
<Typoword="Restaurateur"find="\b()est(?:arau?|era)ntu?r(s)?\b"replace="$1estaurateur$2"/><!--avoid ]-->
<Typoword="Result"find="\b()eult(ant|ed|ing|s?)\b"replace="$1esult$2"/>
<Typoword="Résumé"find="\b()(?:esumé|ésume)(s)?\b"replace="$1ésumé$2"/><!--avoid "resume"-->
<Typoword="Resurgence"find="\b()esurgan(ce|t)\b"replace="$1esurgen$2"/>
<Typoword="Resurrect"find="\b()esss?urect(ed|i(?:ng|on)|s?)\b"replace="$1esurrect$2"/>
<Typoword="Resuscitate"find="\b()es(?:cu(?:c?|s(?:c?|s+)?)|su(?:c?|s(?:c?|s+)?)|u(?:c?|s+))ita(t(?:e?|i(?:ng|ons?|ve)|ors?)|ble|nts?)\b"replace="$1esuscita$2"/>
<Typoword="Retaliate"find="\b()etalitate()?\b"replace="$1etaliate$2"/>
<Typoword="Retaliation"find="\b()etalitation\b"replace="$1etaliation"/>
<Typoword="Retrieve"find="\b()et(?:ire|rei)v(als?|e|ing)\b"replace="$1etriev$2"/>
<Typoword="Re(tro)spective"find="\b(e(?:tro)?)pective(ly|s?)\b"replace="$1spective$2"/>
<Typoword="Returned"find="\b()etu(?:nre|rn)d\b"replace="$1eturned"/>
<Typoword="Reversal"find="\b()everal(s)?\b"replace="$1eversal$2"/>
<Typoword="(R)Evolutionary"find="\b(|e)volutiona\b"replace="$1volutionary"/>
<Typoword="Rewrite"find="\b()ewriet(s)?\b"replace="$1ewrite$2"/>
<Typoword="Rewritten"find="\b()ewitten\b"replace="$1ewritten"/>
<Typoword="Reykjavik"find="\be(?:jkj?|kj)avik\b"replace="Reykjavik"/>
<Typoword="Rhinoceros"find="\b()hinocerous(es)?\b"replace="$1hinoceros$2"/>
<Typoword="Rhythm"find="\b()(?:h(?:tyh|yt(?:h)?)|yth?)m(i(?:c*|sts?)|s?)\b(?<!Pink Rythm)(?! Syndicate)"replace="$1hythm$2"/><!--avoid proper nouns Pink Rythm and Rythm Syndicate-->
<Typoword="Rhythmic"find="\b()hytmic(al(?:ly)?)?\b"replace="$1hythmic$2"/>
<Typoword="Ricochet"find="\b()ichochet(ed|s?)\b"replace="$1icochet$2"/>
<Typoword="Ridiculous"find="\b()edic+ulous(*)\b"replace="$1idiculous$2"/>
<Typoword="Rigueur"find="\b()igeur\b"replace="$1igueur"/>
<Typoword="Rockefeller"find="\bockerfeller\b"replace="Rockefeller"/>
<Typoword="Rococo"find="\b()ococco\b"replace="$1ococo"/>
<Typoword="Roommate"find="\b()oomate(s)?\b"replace="$1oommate$2"/>
<Typoword="Rose"find="\b()ised\b"replace="$1ose"/>
<Typoword="Rudimentary"find="\b()ud(?:menta|imentat)r(i+|y)\b"replace="$1udimentar$2"/>
<Typoword="Rule"find="\b()ulle()\b"replace="$1ule$2"/>
<Typoword="Rumors"find="\b()umer(ed|s)\b"replace="$1umor$2"/>
<Typoword="Running"find="\b()un(?:in|nun)g\b"replace="$1unning"/>
<Typoword="Russian"find="\b()ussi(?:na|on)(s)?\b"replace="$1ussian$2"/>

S

<Typoword="Sabotage"find="\b()abatg(e?|ing)\b"replace="$1abotag$2"/>
<Typoword="Sacrifice"find="\b()acrfic(e?|i(?:al(?:ly)?|ng))\b"replace="$1acrific$2"/>
<Typoword="Sadducee"find="\bad(?:d+uc|uc?)ce(an|e(?:ism|s?))\b"replace="Sadduce$1"/>
<Typoword="Safety"find="\bsafte?y\b"replace="safety"/><!--avoid surname Safty-->
<Typoword="Salvador Dalí"find="\bSalvador\s+Dali\b"replace="Salvador Dalí"/>
<Typoword="Same"find="\b()mae\b"replace="$1ame"/>
<Typoword="Sanction"find="\b()an(?:ction|tion?)n(ed|ing|s?)\b"replace="$1anction$2"/>
<Typoword="Sandwich"find="\b()andw(?:hi|it)ch(e|ing)?\b"replace="$1andwich$2"/>
<Typoword="Sanskrit"find="\b()anksrit?\b"replace="$1anskrit"/>
<Typoword="Satellite"find="\b()at(?:al?|e|il?|tl?)lite(s)?\b"replace="$1atellite$2"/>
<Typoword="Satirical"find="\b()atric(al(?:ly)?)?\b"replace="$1atiric$2"/>
<Typoword="Satisfy"find="\b(iss||ns)at(?:i(?:si)?|si)f(act(?:ion|or(?:i(?:ly|ness)|y))|ie|y(?:ing)?)\b"replace="$1atisf$2"/>
<Typoword="Saudi Arabia"find="\b(?:audia|uadi+)\s*rabia(n)?\b"replace="Saudi Arabia$1"/>
<Typoword="Sauté"find="\b()autt((?:ed|s?))\b"replace="$1aut$2"/><!--avoid ]-->
<Typoword="Savvy"find="\b()aavy\b"replace="$1avvy"/>
<Typoword="Saxon"find="\bsaxon(ism|?)\b"replace="Saxon$1"/>
<Typoword="Saxophone"find="\b()axaphon(es?|ists?)\b"replace="$1axophon$2"/>
<Typoword="Says"find="\b()(?:asy|yas)\b"replace="$1ays"/>
<Typoword="Scenario"find="\b(?!Senario\b)()(?:cene|en)rio(s)?\b"replace="$1cenario$2"/><!--avoid proper noun "Senario"-->
<Typoword="Schedule"find="\b()(?:c(?:edu?|hedu)|hedu?)l(e?|ing)\b"replace="$1chedul$2"/>
<Typoword="Scholarship"find="\b()cho(?:lar|olars)hip(s)?\b"replace="$1cholarship$2"/>
<Typoword="Scholastic"find="\b()choolastic(ally|s?)\b"replace="$1cholastic$2"/>
<Typoword="Schrödinger"find="\bchrod+ingg?er(*)\b"replace="Schrödinger$1"/>
<Typoword="Science"find="\b()cine?ce\b"replace="$1cience"/>
<Typoword="Scientific"find="\b()cient(?:fi|if)c(ally|ly)?\b"replace="$1cientific$2"/>
<Typoword="(Un)Screen"find="\b(|ns)cren(*)\b"replace="$1creen$2"/>
<Typoword="(Screen/Song)writer"find="\b((?:creen|ong))(?:nwri|wrigh|\s+wri|\-wri)ter(s)?\b"replace="$1writer$2"/>
<Typoword="Script"find="\b()cirpt(*)\b"replace="$1cript$2"/>
<Typoword="Scroll"find="\b()coll(s)?\b"replace="$1croll$2"/>
<Typoword="(Re)Search"find="\b(es|)each(e?s?|ing)?\b"replace="$1earch$2"/>
<Typoword="Second"find="\b()eco(?:dn?|nt)(ary|ly|s?)\b"replace="$1econd$2"/>
<Typoword="Secretary"find="\b()(?:cretar|ecretart)(i(?:ae?s?|es)|y)\b"replace="$1ecretar$2"/><!--see also "-etary"-->
<Typoword="(In)Security"find="\b(ns|)ec(?:rui|ui?re?)t(ies|y)\b"replace="$1ecurit$2"/>
<Typoword="Seeing"find="\b()eing\b"replace="$1eeing"/>
<Typoword="Segment"find="\b()egement(ations?|ed|ing|s?)\b"replace="$1egment$2"/>
<Typoword="Sei(z/n)e"find="\b()ie(n(?:e(?:?|rs?)|ing)|z(?:e?|ing|ures?))\b"replace="$1ei$2"/>
<Typoword="-self"find="\b((?:er|i)|t|y|(?:ne|ur)|he(?:ir|)|our)(?:esl|sle?)(f|ves)\b"replace="$1sel$2"/>
<Typoword="(Re)Semblance"find="\b(es|)emb(?:el|le)nce(s)?\b"replace="$1emblance$2"/>
<Typoword="Sense_"find="\b()ene?(?<!ense)(|less(?:ly|ness)?)\b"replace="$1ense$2"/>
<Typoword="(In/…)Sensitive"find="\b(ypers|ns|ons|vers|hotos|(?:upers)?|ns)ensa?tiv(e(?:ly)?|ity)\b"replace="$1ensitiv$2"/>
<Typoword="Sentence"find="(?!\bSentance\b)\b()entanc(e(?:?|rs?)|ings?)\b"replace="$1entenc$2"/><!--avoid surname Sentance-->
<Typoword="(In)Separable"find="\b(ns|)ep(?:area?|er|ra)(bl|t(?:e(?:?|ly)|i(?:ngs?|ons?|ss?)))\b"replace="$1epara$2"/>
<Typoword="Sepulcher"find="\b()epulch?ure\b"replace="$1epulcher"/>
<Typoword="Sergeant"find="\bsarg(?:a|ea?)nt\b"replace="sergeant"/><!--avoid surname Sargeant-->
<Typoword="Service"find="\b()evic(e?|ing)\b"replace="$1ervic$2"/>
<Typoword="Settle"find="\b(es||ns)etl(e(?:d?|ments?|rs?)|ing)\b"replace="$1ettl$2"/>
<Typoword="Settlement"find="\b()ett(?:ele|l)ment(s)?\b"replace="$1ettlement$2"/>
<Typoword="Seventeen"find="\b()eve(?:nt|te)en(s?|ths?)\b"replace="$1eventeen$2"/>
<Typoword="Sevent(h/y)"find="\b()evet(hs?|ie(?:s?|ths?)|y)\b"replace="$1event$2"/>
<Typoword="Sever(e/ely/ity/al/ance)"find="\b()erver(a(?:l*|nce)|e(?:ly)?|ity)\b"replace="$1ever$2"/>
<Typoword="Several"find="\b()e(?:rvera|v(?:ar(?:a|a?)|era?|ir(?:a|a?)))l\b"replace="$1everal"/>
<Typoword="(Over)Shadow"find="\b(vers|)hadd+ow(ed|ing|s?)\b(?<!\bShaddow)"replace="$1hadow$2"/><!--avoid surname Shaddow-->
<Typoword="she"find="\bseh\b(?<!-seh)"replace="she"/><!--avoid preceding dash-->
<Typoword="Shepherd"find="(?!\bSheperd\b)\b()heperd(ed|ing|s?)\b"replace="$1hepherd$2"/><!--avoid surname Sheperd-->
<Typoword="Sheriff (2)"find="\b(Deputy\s+S|High\s+S|s)herriff(s)?\b"replace="$1heriff$2"/><!--avoid surname Sherriff-->
<Typoword="Sheriff"find="\b()herr?if(s)?\b(?<!\bSherif)"replace="$1heriff$2"/><!--avoid surname Sherif-->
<Typoword="Shield_"find="\bsheild(ed|ing|s?)\b"replace="shield$1"/><!--avoid surname Sheilds-->
<Typoword="Shipped"find="\b(?!Shiping)()hip(ed|ing)\b"replace="$1hipp$2"/>
<Typoword="Shkodër"find="\bShkoder\b"replace="Shkodër"/>
<Typoword="Shortly"find="\b()horly\b"replace="$1hortly"/>
<Typoword="Should"find="\b()houdl\b"replace="$1hould"/>
<Typoword="Shouldn't"find="\b()houd(?:ln|en)t\b"replace="$1houldn't"/>
<Typoword="Shrewd"find="\b()hrewed(ly)?\b"replace="$1hrewd$2"/>
<Typoword="Shriek"find="\b()hrek(ed|ing|s?)\b"replace="$1hriek$2"/>
<Typoword="Shrunk"find="\b()hrinked\b"replace="$1hrunk"/>
<Typoword="(S/N)ibling"find="\b()i(?:bl|lbl?)ing(s)?\b"replace="$1ibling$2"/>
<Typoword="Sidereal"find="\b()edereal\b"replace="$1idereal"/>
<Typoword="(Be)Sie(g/v)e"find="\b(es|)ei((?:e?|ing))\b(?<!David\s+Seiving|(?:Leander|Pierre)\s+Seige)(?!\s+Monstracity)"replace="$1ie$2"/>
<Typoword="Signat(ure/ory)"find="\b()ignt()r(es?|ies|y)\b"replace="$1ignat$2r$3"/>
<Typoword="(In)Significant"find="\b(ns|)ig(?:i(?:fica|nifica)|n(?:fici?a|if(?:ac?|ca|iga)))n(ce|t(?:ly)?)\b"replace="$1ignifican$2"/>
<Typoword="(In/Non)Significant"find="\b(ns|ons|)ign(?:fi?(?:an)|if(?:acn|an|i(?:c(?:a|en)|gan)))(ce|t(?:ly)?)\b"replace="$1ignifican$2"/>
<Typoword="Signify"find="\b()ignf(ies?|y)\b"replace="$1ignif$2"/>
<Typoword="(Dis/Veri)Similar"find="\b(iss||eris)im(?:alari?|il(?:ari|iari?)|mili?ari?|ulari?)(ity|ly)?\b"replace="$1imilar$2"/>
<Typoword="Simply"find="\b()imp(?:ley|yl)\b"replace="$1imply"/>
<Typoword="Since"find="\b()icne\b"replace="$1ince"/>
<Typoword="Single-handedly"find="\b()ingle\s+handedll?y\b"replace="$1ingle-handedly"/>
<Typoword="Singsong"find="\b()ingsog\b"replace="$1ingsong"/>
<Typoword="Sinn Féin"find="\bSinn\s+F(?:ei|i)n\b"replace="Sinn Féin"/>
<Typoword="Sistine"find="\bixtine?\b"replace="Sistine"/>
<Typoword="Situate"find="\b()it(?:au|uta)t(e?|i(?:ng|ons?))\b"replace="$1ituat$2"/>
<Typoword="Skagerrak"find="\bkagerak\b"replace="Skagerrak"/>
<Typoword="(Endo/Exo)Skeleton"find="\b((?:ndos|xos)|)kelat(al|ons?)\b"replace="$1kelet$2"/>
<Typoword="Slaughter"find="\b()laugter(ed|houses?|ing|s?)\b"replace="$1laughter$2"/>
<Typoword="Sleight of hand"find="\b()light(\s+of\s|-of-)hand\b"replace="$1leight$2hand"/>
<Typoword="Slightly"find="\b()ligh(?:ltl?|t)y\b"replace="$1lightly"/>
<Typoword="Slowly"find="\b()lowy\b"replace="$1lowly"/>
<Typoword="Smooth"find="\b()moothe\b(?!\s+ylk)\b"replace="$1mooth"/>
<Typoword="Sneak"find="\b()neek(\b(?<!Sneek)|e(?:d|rs?)|i+|)\b"replace="$1neak$2"/><!--avoid Sneek-->
<Typoword="Sneeze"find="\b()ne+se()?\b"replace="$1neeze$2"/>
<Typoword="Snorkeled"find="\b()norkl(e(?:d|rs?)|ing)\b"replace="$1norkel$2"/>
<Typoword="Social"find="\b(?:(S)o(?:cal\B|ical)|(s)o(?:cal|ical))(i(?:ations?|e?|ing)|iss?|it(?:es?|ies?|y)|ly)?\b"replace="$1$2ocial$3"/><!--avoid Socal-->
<Typoword="Society/ies"find="\b()ocite?(ies|y)\b"replace="$1ociet$2"/>
<Typoword="Software"find="\b()of(?:ware|twares\b(?<!\bRJ Softwares))\b"replace="$1oftware"/><!--avoid RJ Softwares-->
<Typoword="(S/T)old"find="\b()elled\b"replace="$1old"/>
<Typoword="sold-out_"find="\bsold\s+out(?<!(?:?e|hey)\s+(?:still\s+)?sold\s+out)\b(?=\s+(?:a(?:renas?|udiences?)|c(?:oncerts?|rowds?)|events?|g(?:ames?|igs?)|h(?:eadline|o(?:me|use))|performances?|runs?|shows?|tours?|venues?))"replace="sold-out"/>
<Typoword="Soldier"find="\b()o(?:il|li)der(ing|s?)\b"replace="$1oldier$2"/>
<Typoword="Solely_"find="\b(?<!{0,99}\s{1,9})soley\b"replace="solely"/><!--avoid surname Soley-->
<Typoword="Soliloquy"find="\b()oliliqu(i(?:es|sts?|(?:e?|ing))|y)\b"replace="$1oliloqu$2"/>
<Typoword="Solitary"find="\b()olatry\b"replace="$1olitary"/>
<Typoword="Soloist"find="\b()olist(s)?\b"replace="$1oloist$2"/>
<Typoword="(In)Soluble"find="\b(ns|)oluab(ility|l)\b"replace="$1olub$2"/>
<Typoword="Some-"find="\b()(?:moe|oe?m)(body|days?|how|one|place|t(?:hing|imes?)|w(?:ays?|h(?:at|ere)))\b"replace="$1ome$2"/>
<Typoword="Someone"find="\b()omene\b"replace="$1omeone"/>
<Typoword="Somewhat"find="\b()omewaht\b"replace="$1omewhat"/>
<Typoword="Sony"find="\b(?:SONY|sony)\b"replace="Sony"/>
<Typoword="(Un)Sophisticate"find="\b(|ns)(?:o(?:fist|ph)|uphist)icat(e?|i(?:ng|on))\b"replace="$1ophisticat$2"/>
<Typoword="Sophomore"find="\b()o(?:f|ph)mor(es?|ic*)\b"replace="$1ophomor$2"/>
<Typoword="Soufflé"find="\b()oufl((?:ed|s?))\b"replace="$1ouffl$2"/><!--avoid ]-->
<Typoword="Sought"find="\b()eeked\b"replace="$1ought"/>
<Typoword="Sound"find="\b()oud?n(ing|ly|s?|tracks?)\b"replace="$1ound$2"/>
<Typoword="Soup"find="\b()uop\b"replace="$1oup"/>
<Typoword="Southern"find="\b()ourth(er(?:l(?:ies|y)|n?|nmost|s?)|east(?:er(?:l+|n?))?|west(?:er(?:l+|n?))?)?\b"replace="$1outh$2"/>
<Typoword="Souvenir"find="\b()ouvenier(s)?\b"replace="$1ouvenir$2"/>
<Typoword="Soviets"find="\b()oveit(s)?\b"replace="$1oviet$2"/>
<Typoword="Space"find="\b(|ns)(?:ap|poa)c(e(?:?|rs?)|ings?)\b"replace="$1pac$2"/>
<Typoword="Spaghetti"find="\b()pag(?:et?|he)ti(ni)?\b"replace="$1paghetti$2"/>
<Typoword="Spanish"find="\bpainish\b"replace="Spanish"/>
<Typoword="Sparse"find="\b()parce(ly|ness|r?|st)\b"replace="$1parse$2"/>
<Typoword="Special"find="\b(s|)pe(?:cai|ica)l(i(?:sts?|ty)|ly|s?|ty)\b"replace="$1pecial$2"/>
<Typoword="Specialise"find="\b()pecialli((?:ations?|e?|ing))\b"replace="$1peciali$2"/>
<Typoword="Species"find="\b()peices\b"replace="$1pecies"/>
<Typoword="Specific"find="\b()pec(?:fi|if)c(a(?:lly|tions?)|ity|s?)\b"replace="$1pecific$2"/>
<Typoword="Specimen"find="\b()pecimn\b"replace="$1pecimen"/>
<Typoword="Spectacular"find="\b()pectauc?lar(ly|s?)\b"replace="$1pectacular$2"/>
<Typoword="Spectrum"find="\b()pect(al?|um)\b"replace="$1pectr$2"/>
<Typoword="Speeches"find="\b()pech(es)?\b"replace="$1peech$2"/>
<Typoword="Speech_"find="\b(?<!{0,99}\s{1,9})()peach(es)?\b"replace="$1peech$2"/>
<Typoword="Spermatozoon"find="\b()permatozoan\b"replace="$1permatozoon"/>
<Typoword="Spiral"find="\b()prial(ed|ing|l(?:ed|ing)|s?)\b"replace="$1piral$2"/>
<Typoword="Spiritual"find="\b()p(?:iriti|ri(?:riu|tu))al(i(?:ss?|ty)|ly|s?)\b"replace="$1piritual$2"/>
<Typoword="Splendour"find="\b()pendour\b"replace="$1plendour"/>
<Typoword="Sponsor"find="\b()pon(?:se|zo)r(ed|ing|s?|ships?)\b"replace="$1ponsor$2"/>
<Typoword="Spontaneous"find="\b()pontan{1,2}s(ly)?\b"replace="$1pontaneous$2"/>
<Typoword="Spread"find="\b()pre(?:ade)?d\b(?<!spreaded)"replace="$1pread"/><!--avoid "with spreaded peanut butter"-->
<Typoword="Squad(ron)"find="\b()qaud(rons?|s?)\b"replace="$1quad$2"/>
<Typoword="Square"find="\b()qaure()?\b"replace="$1quare$2"/>
<Typoword="(De)Stabilize"find="\b(es|)tab(?:li)?li((?:ation|e?|ing))\b"replace="$1tabili$2"/>
<Typoword="Staff"find="\b()taf(?!\s+(?:Coppens|de|D(?:iecisiete|obbelaere)|Van)\b)(?<!Kees Staf)(ed|s?)\b"replace="$1taff$2"/><!--avoid Staf De Clercq, Staf Van Reet, Kees Staf etc.-->
<Typoword="Stainless"find="\b()tainle+s\b"replace="$1tainless"/>
<Typoword="(B/St/T/W)alked"find="\b(|t)alekd\b"replace="$1alked"/>
<Typoword="(B/St/T/W)alking"find="\b(|t)(?:alkign|laking)\b"replace="$1alking"/>
<Typoword="Stalwart"find="\b()tal(?:lwa|we)rt(s)?\b"replace="$1talwart$2"/>
<Typoword="Stand*"find="\b()tnad(*)\b"replace="$1tand$2"/>
<Typoword="Standardized/s"find="\b()tandar(i(?:ation|ed?|ing)|s?)\b"replace="$1tandard$2"/>
<Typoword="Start_"find="(?!\bStrater\b)\b()trat(e(?:d|rs?)|ing)\b"replace="$1tart$2"/><!--avoid strat (guitar), Strater (surname)-->
<Typoword="Statement"find="\b()tatment(s)?\b"replace="$1tatement$2"/>
<Typoword="Statesman"find="\b()tats?em()n\b"replace="$1tatesm$2n"/>
<Typoword="Status"find="\bstaus\b"replace="status"/><!--avoid surname Staus-->
<Typoword="Station"find="\b()taion(*)\b"replace="$1tation$2"/>
<Typoword="Stereotype"find="\b()teri?otyp(e?|i(?:cal(?:ly)?|ng))\b"replace="$1tereotyp$2"/>
<Typoword="Stifle"find="\b()tiffl(e?|ing)\b"replace="$1tifl$2"/>
<Typoword="Still"find="\b()itll(ness)?\b"replace="$1till$2"/>
<Typoword="Still lifes"find="\b()till-lifes\b"replace="$1till lifes"/><!--avoid "still life" (e.g. "still-life artist")-->
<Typoword="Stirring"find="\b(s)tir(ed|ing)\b"replace="$1tirr$2"/>
<Typoword="Stirs"find="\b()tirrs\b"replace="$1tirs"/>
<Typoword="Stockholm"find="\btockho(?:lme|me?)\b"replace="Stockholm"/>
<Typoword="Stomach"find="\b()t(?:om(?:ache|och)|umach)(s)?\b"replace="$1tomach$2"/>
<Typoword="Stonemason"find="\b()tonemason(s)?\b"replace="$1tonemason$2"/>
<Typoword="Stop"find="\b()tpo(s)?\b"replace="$1top$2"/>
<Typoword="(Hi)Stories"find="\b(is|)tor(?:eis|ise)\b"replace="$1tories"/>
<Typoword="(Hi)Story"find="\b(is|)(?:otry|t(?:o(?:pry|yr)|roy))\b"replace="$1tory"/>
<Typoword="Straightforward"find="\b()traight-forward(ly)?\b"replace="$1traightforward$2"/>
<Typoword="Strand"find="(?!\bStrnad\b)\b()trnad(ed|ing|s?)\b"replace="$1trand$2"/><!--avoid surname Strnad-->
<Typoword="Strange"find="(?!\bStanger?\b)\b()tange(ly|ness|rs?|st)?\b"replace="$1trange$2"/><!--avoid surnames Stange, Stanger-->
<Typoword="Strategy"find="\b()t(?:art|ra(?:de|t))g(i(?:c*|es|(?:e?|ing))|y)\b"replace="$1trateg$2"/>
<Typoword="Streamline"find="\b()treemlin(+)\b"replace="$1treamlin$2"/>
<Typoword="Street_"find="\b()teet(cars?|s?)\b"replace="$1treet$2"/>
<Typoword="Strength"find="\b()tre(?:gth|n(?:gh|t(?:gh|h))|ng(?:ht?h?|t))(s?|en(?:e(?:d|rs?)|ing|s?))\b"replace="$1trength$2"/>
<Typoword="Strenuous"find="\b()trenous(ly)?\b"replace="$1trenuous$2"/>
<Typoword="(Re/Con/Di/Redi)Strict"find="\b(ons|is|e(?:dis|s)|)tict(e(?:|st)|i(?:ng|ve*)|ly|ness|or|s?)\b"replace="$1trict$2"/>
<Typoword="Strictest"find="\b()trictist\b"replace="$1trictest"/>
<Typoword="Strikingly"find="\b()trikely\b"replace="$1trikingly"/>
<Typoword="(A)Stringent"find="\b(s|)tingen(cy|t(?:ly)?)\b"replace="$1tringen$2"/>
<Typoword="Strong"find="(?!\bStong\b)\b()tor?ng(e(?:r|st)|ly)?\b"replace="$1trong$2"/><!--avoid surname Stong-->
<Typoword="Stronger"find="\b()t(?:or|ro)neg(r|st)\b"replace="$1tronge$2"/>
<Typoword="Struggle"find="\b()t(?:rug(?:gel|le)|uggle)()?\b"replace="$1truggle$2"/>
<Typoword="Struggling"find="\b()tugg?ling\b"replace="$1truggling"/>
<Typoword="Stubbornness"find="\b()tub(?:bor|orn?)nes?s\b"replace="$1tubbornness"/>
<Typoword="Student"find="\b()tudnet(s)?\b"replace="$1tudent$2"/>
<Typoword="Study"find="(?!\bStuddy\b)\b()tudd(ie|y)\b"replace="$1tud$2"/><!--avoid surname Studdy-->
<Typoword="Studying"find="\b()tuding\b"replace="$1tudying"/>
<Typoword="Sturdy"find="\b()tird(y|i(?:e(?:|st)|ly|ness))\b"replace="$1turd$2"/>
<Typoword="(Free/Life)Style"find="\b(rees|ifes|)(?:tly|ytl)(e?|i(?:e?|ings?)|i(?:ngs?|s*))\b"replace="$1tyl$2"/>
<Typoword="Stylus"find="\b()tilus\b"replace="$1tylus"/>
<Typoword="(Sub/Un)conscious"find="\b(ub|n)con(?:cious|s(?:cience|ious))(ly)?\b"replace="$1conscious$2"/>
<Typoword="Subjugation"find="\b()ubjudgation\b"replace="$1ubjugation"/>
<Typoword="Submit"find="\b()umbi(ssions?|t(?:s?|t(?:ed|ing)))\b"replace="$1ubmi$2"/>
<Typoword="(In)Subordinate"find="\b(ns|)ubordin?nt(e?|i(?:ons?|ve)|ly|or)\b"replace="$1ubordinat$2"/>
<Typoword="Subspecies"find="\b()ubpecies\b"replace="$1ubspecies"/>
<Typoword="Substance"find="\b()ub(?:sta|tan)ce(s)?\b"replace="$1ubstance$2"/>
<Typoword="(In/Un)Substantial"find="\b(ns||ns)ubsta(?:nc?|t)ia(l?|l(?:ity|ly)|t(?:e?|ing))\b"replace="$1ubstantia$2"/>
<Typoword="Subterranean"find="\b()ubter?rana(?<!ubterranea)n(ly)?\b"replace="$1ubterranean$2"/>
<Typoword="Suburb"find="\b()u(?:burburb|rburb)(an(?:i(?:sm|tes?))?|ed|s?)\b"replace="$1uburb$2"/>
<Typoword="Suburban"find="\b()uburb(?:ia|urba)n(ites?)?\b"replace="$1uburban$2"/>
<Typoword="Succeed (1)"find="\b()ucc(?:cee|ed?)d(ed|ing|s?)\b"replace="$1ucceed$2"/>
<Typoword="Succeed (2)"find="\b()uc(?:cs|s?)e(ed(?:ed|ing|s?)|ss(?:es|ful(?:ly)?|i(?:ons?|ve(?:ly)?)|ors?)?)\b"replace="$1ucce$2"/>
<Typoword="(Un)Success"find="\b(|ns)uc(?:cs|s?)ess?(es|ful*|ors?)?\b"replace="$1uccess$2"/>
<Typoword="Successfully"find="\b(|ns)uccess(?:fulyl|ully)\b"replace="$1uccessfully"/>
<Typoword="Successive"find="\b()uc(?:ce|es?)si(ons?|ve*)\b"replace="$1uccessi$2"/>
<Typoword="Suddenly"find="\b()udd?entll?y\b"replace="$1uddenly"/>
<Typoword="(In)Sufficient"find="\b(ns|)uf(?:f(?:cie|ic(?:ei?|ia?))|ic(?:ei?|i?))n(c(?:ies|y)|t(?:ly)?)\b"replace="$1ufficien$2"/>
<Typoword="Succinct"find="\b()uccint(ly|ness)?\b"replace="$1uccinct$2"/>
<Typoword="Suffrage"find="\b()uf(?:e?|fe)rag(e(?:tt(?:es?|ism))?|iss?)\b"replace="$1uffrag$2"/>
<Typoword="Suggest"find="\b()ugest(ed|i(?:b+|ng|ons?|ve*)|s?)\b"replace="$1uggest$2"/>
<Typoword="Suicidal"find="\b()ucidial\b"replace="$1uicidal"/>
<Typoword="Suicide"find="\b()ucid(al|es?)\b"replace="$1uicid$2"/>
<Typoword="Summary"find="\b()um(?:|me(?!ry))r(ily|i(?:ation|e?|ing)|y)\b"replace="$1ummar$2"/>
<Typoword="Supersede"find="\b()uperce+(d(?:e?|ing)|ssions?)\b"replace="$1uperse$2"/>
<Typoword="Supplant"find="\b()u(?:rp?)?plant(ed|ing|s?)\b"replace="$1upplant$2"/>
<Typoword="Supplement"find="\b()up(?:l+|pl)ment(a(?:l|ry)|ed|ing|s?)\b"replace="$1upplement$2"/>
<Typoword="Supply"find="\b()upp(iers?|y)\b"replace="$1uppl$2"/>
<Typoword="Support"find="\b()up(?:pp+)?ort(e(?:d|rs?)|i(?:ng|ve*)|s?)\b"replace="$1upport$2"/>
<Typoword="supp-"find="\bwupp(ly|o(?:rts?|se*))\b"replace="supp$1"/>
<Typoword="Supp-"find="\bWupp(ly|o(?:rts?|se*))\b"replace="Supp$1"/>
<Typoword="Supposed"find="\b()upp?o(?:ss)?(ed(?:ly)?|ing)\b"replace="$1uppos$2"/>
<Typoword="Supposed to"find="\b((?:a(?:m|re)|is|w(?:as|ere))(?:\s+not|nt)?)\s+suppose\s+to\b"replace="$1 supposed to"/>
<Typoword="Supposedly"find="\b()uppos(?:ab|ing)ly\b"replace="$1upposedly"/>
<Typoword="(Immunosu/Su/O)ppress"find="\b(mmunosu||u)(?:p(?:p+re|res?)|rp+res?)s(ants?|e(?:|rs?)|i(?:ble|+)|ors?)?\b"replace="$1ppress$2"/>
<Typoword="Surface"find="\b()urf(?:as|c|ic)(e?|ing)\b"replace="$1urfac$2"/>
<Typoword="Surname"find="\b()irname()?\b"replace="$1urname$2"/>
<Typoword="(Un)Surprise"find="\b(|ns)u(?:pri|rpriz)(e?|ing(?:ly)?)\b"replace="$1urpris$2"/>
<Typoword="Surrender"find="\b()ur(?:r(?:end|under)|under)(ed|ing|s?)\b"replace="$1urrender$2"/>
<Typoword="Surreptitious"find="\b()urr?(?:ep(?:eti)?|peti)tious(ly)?\b"replace="$1urreptitious$2"/>
<Typoword="Surround"find="\b()(?:orr?(?:oun|un)|ur(?:ou|ro))d(ed|ings?|s?)\b"replace="$1urround$2"/>
<Typoword="Surströmming"find="\b()urstrom{1,3}ing\b"replace="$1urströmming"/>
<Typoword="Surveil"find="\b()urveill\b"replace="$1urveil"/>
<Typoword="Surveillance"find="\b()urveil(?:|le)nce\b"replace="$1urveillance"/>
<Typoword="Surveyor"find="\b()urveyer(s)?\b"replace="$1urveyor$2"/>
<Typoword="Surviv(e/al/or)"find="(?!\burvie\b)\b()u(?:r(?:iv|vi(?:vi)?)|viv)(al|e?|ing|ors?(?:hip)?)\b"replace="$1urviv$2"/><!--avoid French word survie-->
<Typoword="Survivor"find="\b()ur?viv(?:e|io)r(s)?\b"replace="$1urvivor$2"/>
<Typoword="Susceptible"find="\b()u(?:csept|s(?:cepta|ept))((?:ble|ve)(?:ness)?|bilit(?:ies|y)|vit(?:ies|y))\b"replace="$1uscepti$2"/>
<Typoword="Swea(r/t)"find="\b()wae((?:ing|s?)|te(?:d|rs?))\b"replace="$1wea$2"/>
<Typoword="Swimming"find="\b()wiming(ly)?\b"replace="$1wimming$2"/>
<Typoword="Switch"find="\b()wti?ch(e|ing)?\b"replace="$1witch$2"/>
<Typoword="Sydney"find="\byndn?ey\b"replace="Sydney"/>
<Typoword="Symmetric"find="\b()ym(?:et+ric|metral)\b"replace="$1ymmetric"/>
<Typoword="(A/Anti)Symmetry"find="\b((?:ntis|s)|)ymetr(i(?:c(?:al(?:ly)?)?|es)|y)\b"replace="$1ymmetr$2"/>
<Typoword="Symphony"find="\b()ynphon(i(?:c|es)|y)\b"replace="$1ymphon$2"/>
<Typoword="Symptom"find="\b()y(?:mpton|pmtom)(atic|s?)\b"replace="$1ymptom$2"/>
<Typoword="Synagogue"find="\b()(?:ina|yno)gog(al|ical|s?|ues?)\b"replace="$1ynagog$2"/>
<Typoword="Synchronize"find="\b()ynconiz(ations?|e?|ing)\b"replace="$1ynchroniz$2"/>
<Typoword="Synonymous"find="\b()inonmous(ly)?\b"replace="$1ynonymous$2"/>
<Typoword="Synthesis"find="\b()ynths(es|i(?:s(?:e?)?|ze?))\b(?<!(?:a(?:cid|te)|ATP|ie|ose)\s+synthases)"replace="$1ynthes$2"/><!--avoid various ]s-->
<Typoword="Syphilis"find="\b()phyl+(s|tic)\b"replace="$1yphili$2"/>
<Typoword="Syrup"find="\b()yrap\b"replace="$1yrup"/>
<Typoword="System"find="\b()s?y(?:s|te)m(atic(?:ally|ly)?|atied?|s?)\b"replace="$1ystem$2"/>

T

<Typoword="(Mis)Take"find="\b(ist|t|)kae()?\b"replace="$1ake$2"/>
<Typoword="Talent_"find="(?!\bTallents?\b)\b()allent(ed|s?)\b"replace="$1alent$2"/><!--avoid surname Tallent-->
<Typoword="tambourine"find="\btamborine\b"replace="tambourine"/><!--avoid Queensland place "Tamborine"-->
<Typoword="Target"find="\b()argett(able|ed|ing|s?)\b"replace="$1arget$2"/>
<Typoword="Tattoo"find="\b()at(?:ooe?|t+ooe)(ed|s?)\b"replace="$1attoo$2"/>
<Typoword="Taught"find="\b()eached\b"replace="$1aught"/>
<Typoword="Taxonomy"find="\b()axanom(i(?:c|sts?)|y)\b"replace="$1axonom$2"/>
<Typoword="(Non)Technical"find="\b(ont|)ec(?:hini?|ini?|ni)(c(?:al*|ians?)|ques?)\b"replace="$1echni$2"/>
<Typoword="Technician"find="\b()ech(?:ic|nit)(al*|ians?)\b"replace="$1echnic$2"/>
<Typoword="Telephony"find="\b()el?phon(+)\b"replace="$1elephon$2"/>
<Typoword="Televise"find="\b()el(?:eviz|ivi)(e?|i(?:ngs?|ons?)|ors?|ual)\b"replace="$1elevis$2"/>
<Typoword="Television"find="\b()ele(?:levisio|v(?:is?o|sio))n(s)?\b"replace="$1elevision$2"/>
<Typoword="(In/Sub)Temperate"find="\b(nt|ubt|)emp(?:ar|ere?|r)?(ment*|nce|t(?:e(?:ly)?|ures?))\b"replace="$1empera$2"/>
<Typoword="Temperature"find="\b()em(?:eratur|p(?:are?a?tur|er(?:atu|taur)|re?a?tur))e(s)?\b"replace="$1emperature$2"/>
<Typoword="(Con)Temporary"find="\b(ont|)?(?:mp?|pm?)(?:erar|o(?:ar?|r(?:ar?)?)|r(?:ar|o(?:ar?|rar?)))(?<!emporar)(i(?:es|ly)|y)\b"replace="$1emporar$2"/>
<Typoword="Tendency"find="\b()endan?c(ies|y)\b"replace="$1endenc$2"/>
<Typoword="(Extra)Terrestrial"find="\b(xtrat|)er(?:estr?|rest)ial(ly|s?)\b"replace="$1errestrial$2"/>
<Typoword="Territory"find="\b()er+t*o+*(?<!erritor)(i(?:al(?:ly)?|es)|y)\b"replace="$1erritor$2"/>
<Typoword="Terrorist"find="\b()err(?:itor|o)ist(ic|s?)\b"replace="$1errorist$2"/>
<Typoword="Tentative"find="\b()entitive?(ly)?\b"replace="$1entative$2"/>
<Typoword="Tête-à-tête"find="\b()ete-a-tete(s)?\b"replace="$1ête-à-tête$2"/>
<Typoword="Thérèse Raquin"find="\bhrs\s+aquin\b"replace="Thérèse Raquin"/>
<Typoword="Than"find="\b()ahn\b"replace="$1han"/>
<Typoword="Tha(n/t/w)"find="\b()h()a\b"replace="$1ha$2"/>
<Typoword="Thanks"find="\b()hansk\b"replace="$1hanks"/>
<Typoword="That"find="\b()(?:aht|h(?:at|ta)|yhat)\b"replace="$1hat"/>
<Typoword="That's"find="\b()ha(?:t?s|st)\b"replace="$1hat's"/>
<Typoword="thaw"find="\bunthaw(ed|ing|s?)\b"replace="thaw$1"/>
<Typoword="Thaw"find="\bUnthaw(ed|ing|s?)\b"replace="Thaw$1"/>
<Typoword="The (1)"find="\b()(?:ghe|h(?:eh|ge|w(?!\.))|jh?e|the)\b"replace="$1he"/><!--avoid Thw., a taxon authority-->
<Typoword="The (2)"find="\bHe(irs?|?|re(?:fore)?|se)\b"replace="The$1"/>
<Typoword="The(space) (3)"find="\b()he(est|irst|ast|ost|econd|hird)\b"replace="$1he $2"/><!--avoid "Theman", "TheWorld"-->
<Typoword="(space)The"find="\b((?:fter|nd|)|y|or||(?:|ver)|o|(?:n(?:der|til)|p)(?:hen|ith))()he(?!\s+International)\b"replace="$1 $2he"/><!--avoid "(Be/Go/Or/So)the" or ]-->
<Typoword="Theatre (1("find="\b()heather(s)?\b"replace="$1heatre$2"/>
<Typoword="Theatre (2)"find="\b()hreatr(es?|ic(?:al(?:ly|s?)|s?))\b"replace="$1heatr$2"/>
<Typoword="Their"find="\bth(?:eri|ier)(s)?\b"replace="their$1"/><!--avoid surnames Thier & Thiers-->
<Typoword="Their own"find="\b()here\s+own\b"replace="$1heir own"/>
<Typoword="Themselves"find="\b()he(?:irselve|mself)s\b"replace="$1hemselves"/>
<Typoword="(T/W)hen"find="\b()(?:ehn|hne?)\b"replace="$1hen"/>
<Typoword="Theorem"find="\b()heoru?m\b"replace="$1heorem"/>
<Typoword="Theoretic"find="\b()heorectic(al*|s?)\b"replace="$1heoretic$2"/>
<Typoword="(T/W)here(after/by/fore/upon)"find="\b()her(after|by|fore|upon)\b"replace="$1here$2"/>
<Typoword="There (grammar)"find="\b()heir\s+(a(?:re(?:nt)?|int)|c(?:an(?:not|t)?|ould(?:nt)?)|ha(?:|ve)(?:nt)?|is(?:nt)?|m(?:ight(?=\s+be\b)|ay(?:nt)?)|sh(?:a(?:ll|nt)|ould(?:nt)?)|w(?:as|ere|ould)(?:nt)?)\b(?!-)"replace="$1here $2"/><!--avoid 'their would-be'-->
<Typoword="These"find="\b()heese\b"replace="$1hese"/>
<Typoword="They"find="\b()(?:ehy|yhe)\b"replace="$1hey"/>
<Typoword="Thief"find="\b()hei(f|v(?:e(?:ry|s)|ing))\b"replace="$1hie$2"/>
<Typoword="Thing"find="\b()h(?:ign|nig)(s)?\b"replace="$1hing$2"/>
<Typoword="Things"find="\b()higsn\b"replace="$1hings"/>
<Typoword="Think"find="\b()hi(?:kn|unk)(ing|s?)\b"replace="$1hink$2"/>
<Typoword="Thin(g/k)"find="\bHin()n?(ing|s?)\b"replace="Thin$1$2"/>
<Typoword="thin(g/k)"find="\bhtin()n?(ing|s?)\b"replace="thin$1$2"/>
<Typoword="Third"find="\b()h(?:irth|rid)(ly|s?)\b"replace="$1hird$2"/>
<Typoword="Thirteen"find="\b()h(?:irth|rit)een(s?|ths?)\b"replace="$1hirteen$2"/>
<Typoword="This"find="\b()(?:ghis|hsi|ihs)\b"replace="$1his"/>
<Typoword="This/There/Them/They/Then/The"find="\bHt(e(?:?|re)|is)\b"replace="Th$1"/>
<Typoword="This/there/them/they/then/the"find="\bht(e(?:?|re)|is)\b"replace="th$1"/>
<Typoword="Thorough_"find="\b()hro(?:rough(ly|ness)?|ugh(ly))\b"replace="$1horough$2$3"/><!--avoid through(ness)-->
<Typoword="Those"find="\b()hsoe\b"replace="$1hose"/>
<Typoword="(T/W)hose"find="\b()hoose\b"replace="$1hose"/>
<Typoword="Threaten"find="\b()(?:hre(?:ath?|t)|reath?)e?n(?<!hreaten)(ed|ings?|s?)\b"replace="$1hreaten$2"/>
<Typoword="Threatened"find="\b()hreatend(?:ed)?\b"replace="$1hreatened"/>
<Typoword="Three"find="\b()hreee(s)?\b"replace="$1hree$2"/>
<Typoword="Threshold"find="\b()(?:hres(?:hh|s)|res(?:hh?|s))old(s)?\b"replace="$1hreshold$2"/>
<Typoword="T(h)rough"find="\b(h?)roug\b"replace="$1rough"/>
<Typoword="Through"find="\b()hrou(?:g(?:ht)?|hg?)\b"replace="$1hrough"/>
<Typoword="Throughout"find="\b()hough?out\b(?!-| of\b)"replace="$1hroughout"/>
<Typoword="Thus far"find="\b()husfar\b"replace="$1hus far"/>
<Typoword="Tighten"find="\b()ightn(ed|ing|s?)\b"replace="$1ighten$2"/>
<Typoword="Time (1)"find="\b()iem(l(?:ines*|y))?\b"replace="$1ime$2"/>
<Typoword="Time (2)"find="\b()imn(e(?:?|ly)|ing)\b"replace="$1im$2"/>
<Typoword="Tobacco"find="\b()(?:abb?c?|ob(?:a|bac?))co(nists?|s?)\b(?<!Tabac(?:co\b|os?\b))"replace="$1obacco$2"/><!--avoid Tabaco(s) City, surname Tabacco-->
<Typoword="Today"find="\b()odya\b"replace="$1oday"/>
<Typoword="Today's"find="\b()oday(?:ss?|s\b)"replace="$1oday's"/>
<Typoword="Together"find="\b()(?:iogeth?|og(?:e(?:hth?|t)|heh?th?))er(ness)?\b"replace="$1ogether$2"/>
<Typoword="(In)Tolerant"find="\b(nt|)ol(?:ere|ler)n(ces?|t(?:ly)?)\b"replace="$1oleran$2"/>
<Typoword="Tolkien"find="\bolkein\b"replace="Tolkien"/>
<Typoword="Tomorrow"find="\b()om(?:mor?|o)row(s)?\b"replace="$1omorrow$2"/>
<Typoword="Tongue"find="\b()oung(e?|ing)\b"replace="$1ongu$2"/>
<Typoword="Tonight"find="\b()on(?:gih|ihg)t\b"replace="$1onight"/>
<Typoword="Torpedoes"find="\b()orpe(?:adoe?|do)()\b"replace="$1orpedoe$2"/>
<Typoword="_Torsion_"find="\b(?<!X\.\s{1,3})()ortion(al(?:ly)?|s?)\b"replace="$1orsion$2"/><!--avoid "X. Tortion World Wide"; beware of "tort" variants-->
<Typoword="Total"find="\b()ottal(ed|ing|l(?:ed|ing|y)|s?)\b"replace="$1otal$2"/>
<Typoword="Tournament"find="\b()+{2,5}m+t(?<!ournament)(s)?\b"replace="$1ournament$2"/>
<Typoword="(Un)Toward(s)"find="\b(|nt)ow(?:or|ra)d(s)?\b"replace="$1oward$2"/>
<Typoword="Town"find="\b()won(ho(?:mes?|uses?)|s?|ships?)\b"replace="$1own$2"/>
<Typoword="(In)Tractable"find="\b(nt|)ractibl()\b"replace="$1ractabl$2"/>
<Typoword="Trade bloc"find="\b()rad(?:e|ing)block?\b"replace="$1rade bloc"/>
<Typoword="(Ex/Non)Tradition"find="\b(xt|ont|)radi(?:cti|it|t)on(al(?:ly)?|aliss?|s?)\b"replace="$1radition$2"/>
<Typoword="Traffic_"find="\b()raf+ic(e(?:d|rs?)|ing)\b"replace="$1raffick$2"/>
<Typoword="Trailer"find="\b()railor(able|ed|ing|s?)\b"replace="$1railer$2"/>
<Typoword="Transcribing"find="\b()ranscript(e?|ing)\b"replace="$1ranscrib$2"/>
<Typoword="Transept"find="\b()ranscept(s)?\b"replace="$1ransept$2"/>
<Typoword="Transferred"find="\b()rans?fe(r(?:e|ing?)|s?)\b"replace="$1ransfer$2"/>
<Typoword="Transform"find="\b()ranform(a(?:ble|ti+)|e(?:d|rs?)|ing|s?)\b"replace="$1ransform$2"/>
<Typoword="Transition"find="\b()rans(?:i(?:s|ti))?tion(al|s?)\b"replace="$1ransition$2"/>
<Typoword="Translate"find="\b()ran(?:a?|sa)lat(e?|i(?:ng|ons?)|ors?)?\b"replace="$1ranslat$2"/>
<Typoword="Transparent"find="\b()ransp(?:ar|r\w)n(c|ness|t(?:ly|ness)?)\b"replace="$1ransparen$2"/>
<Typoword="Transportation"find="\b()ranspora(b(?:ility|le)|tion)\b"replace="$1ransporta$2"/>
<Typoword="Transcontinental"find="\b()ranscontinental\b"replace="$1ranscontinental"/>
<Typoword="(Mal/Mis)Treatment"find="\b((?:alt|ist)|)reateme?nt(s)?\b"replace="$1reatment$2"/>
<Typoword="Tremolo"find="\b()remelo(s)?(?<!\bTremelo)\b"replace="$1remolo$2"/><!--avoid place Tremelo-->
<Typoword="Tried"find="\b()ryed\b"replace="$1ried"/>
<Typoword="Triggered"find="\b()rig+uered\b"replace="$1riggered"/>
<Typoword="Trilogy"find="\b()riology\b"replace="$1rilogy"/>
<Typoword="Trolling"find="\b()roling\b"replace="$1rolling"/>
<Typoword="Troubles"find="\b()oubles\b"replace="$1roubles"/>
<Typoword="Truly"find="\b()ru(?:el|le)y\b(?<!\p{Lu}\p{Ll}+\s+Truley)"replace="$1ruly"/><!--avoid surname Truley-->
<Typoword="Trunk"find="\b()urnk\b"replace="$1runk"/>
<Typoword="Trust"find="\b()ust(ee|ing|s?|worthy)\b"replace="$1rust$2"/>
<Typoword="Turmoil"find="\b()ermoil\b"replace="$1urmoil"/>
<Typoword="Tutelage"find="\b()ut(?:al|el|il)ge\b"replace="$1utelage"/>
<Typoword="Twelfth"find="\b()wel(?:f|th)(s)?\b"replace="$1welfth$2"/>
<Typoword="Twentieth"find="\b()went(?:ei|i(?:en)?)th\b"replace="$1wentieth"/>
<Typoword="T(wo/hree/en/welve/wenty/hirty/housand)fold"find="\b((?:en|h(?:irt(?:een|y)|ousand|ree)|w(?:e(?:lve|nty)|o)))\s+fold(?!-)\b"replace="$1fold"/><!--avoid "two fold-out maps"-->
<Typoword="(A)Typical"find="\b(t|)(?:ipic|ypci)al(ity|ly|ness)?\b"replace="$1ypical$2"/>
<Typoword="Tyranny"find="\b()yr(?:a|ran?)n(i(?:c*|es|z*)|ous*|y)\b"replace="$1yrann$2"/>

U

<Typoword="Übermensch"find="\bbermensch(es)?\b"replace="Übermensch$1"/>
<Typoword="Ulterior_"find="\balterior\b"replace="ulterior"/>
<Typoword="Ultimate"find="\b()l(?:it|ta?)mat(e(?:ly)?|um)\b"replace="$1ltimat$2"/>
<Typoword="Ultimately"find="\b()ltimely\b"replace="$1ltimately"/>
<Typoword="Unanimous"find="\b()na(?:mi|ny)ous(ly)?\b"replace="$1nanimous$2"/>
<Typoword="Under Milk Wood"find="\bUnder\s+Milkwood\b"replace="Under Milk Wood"/>
<Typoword="Under(ground/stand)"find="\b()(?:dner|ndre)(grounds?|stand(?:abl|ing|s?))\b"replace="$1nder$2"/>
<Typoword="(Mis)Understand"find="\b(isu|)(?:dn|nd)er(?:stna|tan)d(abl|ings?|s?)\b"replace="$1nderstand$2"/>
<Typoword="(Mis)Understood"find="\b(isu|)nderstoo\b"replace="$1nderstood"/>
<Typoword="Undoubtedly"find="\b()ndoubtely\b"replace="$1ndoubtedly"/>
<Typoword="Unilateral"find="\b()n(?:alat(?:er|re)|ilatre)al(ly)?\b"replace="$1nilateral$2"/>
<Typoword="Uninhabited"find="\b()nihabited\b"replace="$1ninhabited"/>
<Typoword="Universal"find="\b()niver(?:si)?al(i(?:ss?|ty)|ly|ness|s?)\b"replace="$1niversal$2"/>
<Typoword="University"find="\b()n?v{3,7}(?:(y)|*(ies)|*(i)t(es))\b(?<!niversit(?:ies|y))"replace="$1niversit$2$3$4$5"/>
<Typoword="Unknown"find="\b()(?:kno|nk(?:on?|wno))wn\b"replace="$1nknown"/>
<Typoword="unofficial"find="\binofficial(ly)?\b"replace="unofficial$1"/>
<Typoword="Unofficial"find="\bInofficial(ly)?\b"replace="Unofficial$1"/>
<Typoword="Until"find="\b()n(?:it|til)l\b"replace="$1ntil"/>
<Typoword="Unwieldy"find="\b()nw(?:eildl?|ieldl)(iness|y)\b"replace="$1nwield$2"/>
<Typoword="Up to"find="\b()pto\b"replace="$1p to"/>
<Typoword="Upcoming"find="\b(an|h(?:er|is)|its|the(?:ir)?)\s+up\s+coming\b"replace="$1 upcoming"/><!--avoid end(ed|s)/wound up coming-->
<Typoword="Usage"find="\b()seage(s)?\b"replace="$1sage$2"/>
<Typoword="(Mis/Dis)Use"find="\b(isu|)ise()?\b"replace="$1se$2"/>
<Typoword="(Un)Usual"find="\b((?:nu)?)s(?:a(?:l|ul?)|s+(?:aul?|ual?)|u(?:a|sl))(ly)?\b"replace="$1sual$2"/>
<Typoword="Util-"find="\b()(?:lti|t)li+(+)\b"replace="$1tili$2"/>

V

<Typoword="Victory"find="(?!\bVicory\b)\b()i(?:c(?:or|to)|tor)(i(?:es|ous(?:ly)?)|y)\b"replace="$1ictor$2"/><!--cater for vicory & avoid surname 'Vicory' - 2022-04-26-->
<Typoword="Vacuum"find="\b()ac(?:cu(?:me?|um)|ume?)(ed|ing|s?)\b"replace="$1acuum$2"/>
<Typoword="Varèse Sarabande"find="\barse\s+arabande\b"replace="Varèse Sarabande"/>
<Typoword="Variety"find="\b()(?:ar(?:+t|ie)|iet|r(?:eit|ie(?:it|t)))(ies|y)\b"replace="$1ariet$2"/>
<Typoword="(Junior/Senior) varsity"find="\b(u|e)niors\s+varsity\b"replace="$1nior varsity"/>
<Typoword="Vegetable"find="\b()eg?table(s)?\b"replace="$1egetable$2"/>
<Typoword="Vegetarian"find="\b()eg(?:ata|et(?:er|ter?))rian(ism|s?)\b"replace="$1egetarian$2"/>
<Typoword="Vehicle"find="\b()ehicle?(s)?\b(?!\s+Press\b)"replace="$1ehicle$2"/>
<Typoword="Vengeance"find="\b()engnce\b"replace="$1engeance"/>
<Typoword="Venomous"find="\b()enmous\b"replace="$1enomous"/>
<Typoword="Verify"find="\b()era?f(i(?:cations?|e)|y(?:ing)?)\b"replace="$1erif$2"/>
<Typoword="(Ad/…)Version"find="(?<=\b(?:dv|onv|iv|nv|bv|erv|ev|ubv|))er(?:is|ti)on(s)?\b"replace="ersion$1"/><!--cheapened expensive beginning-->
<Typoword="(In)Vertebrate"find="\b(nv|)ertibrate(s)?\b"replace="$1ertebrate$2"/>
<Typoword="Vertical"find="\b()erticle(s)?\b"replace="$1ertical$2"/>
<Typoword="Very"find="\b()(?:eyr|rey|y(?:er|re))\b"replace="$1ery"/>
<Typoword="Veteran"find="\b()e(?:rtera|t(?:ara|erea?|ra))n(s)?\b"replace="$1eteran$2"/>
<Typoword="Veterinary"find="\b()er?t(?:a(?:r?)?|e(?:i?|r?))n(?<!eterina)r(ians?|y)\b"replace="$1eterinar$2"/>
<Typoword="VHS"find="\bhs\b"replace="VHS"/>
<Typoword="Vicinity"find="\b()(?:acini?|i(?:cin|ncini))t(ies|y)\b"replace="$1icinit$2"/>
<Typoword="View (1)"find="\b(?:Vei|Wie)w(able|e(?:d|rs?)|ing)\b(?<!Wiewer)"replace="View$1"/>
<Typoword="view (2)"find="\b(?:vei|wie)w(able|e(?:d|rs?)|ing)\b"replace="view$1"/>
<Typoword="Vigilance"find="\b()ig(?:l|ile|la)n(*)?\b"replace="$1igilan$2"/>
<Typoword="Vigorous"find="\b()ig(?:rou?|oro)s(ly|ness)?\b"replace="$1igorous$2"/>
<Typoword="Vilify"find="\b()il(?:a|l)f(i(?:cations?|e)|y(?:ing)?)\b"replace="$1ilif$2"/>
<Typoword="Village"find="\b()il(?:|l?)ge(rs?|s?)(?<!illigers?|Villeger)\b"replace="$1illage$2"/>
<Typoword="Villain"find="(?!\bVil(?:ai|ia)n\b)\b(uperv|)il(?:ai|ia|lia)n(ess|ous*|?)\b"replace="$1illain$2"/><!--avoid surname Vilain or Vilian-->
<Typoword="Violence"find="\b()iolentce\b"replace="$1iolence"/>
<Typoword="Virtual"find="\b()irutal(ly)?\b"replace="$1irtual$2"/>
<Typoword="Viscosity"find="\b()iscocit(ies|y)\b"replace="$1iscosit$2"/>
<Typoword="Visit"find="\b()is(?:is)?t(ed|ing|ors?)\b"replace="$1isit$2"/><!--avoid "visiter"-->
<Typoword="(Di/Pa/Pro/Reple/Super/Tele)Visor"find="\b(i|(?:a|ro)|eple|uper|ele)iser(*)\b"replace="$1isor$2"/>
<Typoword="Vitamin"find="\b()iramin(s)?\b"replace="$1itamin$2"/>
<Typoword="Volcano"find="\b()ol?lcanoe\b"replace="$1olcano"/>
<Typoword="Volkswagen"find="\bolkswagn(s)?\b"replace="Volkswagen$1"/>
<Typoword="Volley(ball)"find="\b()oly((?:?ball)?(?:e(?:d|rs?)|ing|s?))\b(?<!\bVoly\b)"replace="$1olley$2"/><!--avoid proper nouns Volly/Voley unless followed by " ball"-->
<Typoword="Volume"find="\b()olum?ne(s)?\b"replace="$1olume$2"/>
<Typoword="(In)Voluntary"find="\b(nv|)olntry\b"replace="$1oluntary"/>
<Typoword="Volunteer"find="\b()ol(?:ante?|lnte?|ou?nte?|unt)er(ed|ing|s?)\b"replace="$1olunteer$2"/>
<Typoword="Vomit"find="\b()omitt(e|ing|s?)\b"replace="$1omit$2"/>

W

<Typoword="(Un)Want"find="\b(nw|)(?:atn|hant|nat)(ed|ing|s?)\b"replace="$1ant$2"/>
<Typoword="Warfare"find="\b()arefare\b"replace="$1arfare"/>
<Typoword="(Un)Warrant"find="\b(nw|)ar(?:a|re)nt(es?|i(?:es|ng)|ors?|?)\b"replace="$1arrant$2"/>
<Typoword="Water-soluble"find="\b()ater\s+soluble\b"replace="$1ater-soluble"/>
<Typoword="Was"find="(?!\bWass\b)\b()(?:as|ea)s\b"replace="$1as"/><!--avoid surname Wass-->
<Typoword="Way"find="\b()ya(s)?\b"replace="$1ay$2"/>
<Typoword="Weapon"find="\b()(?:apon|e(?:apon|pon))(ied?|ry|s?)\b"replace="$1eapon$2"/>
<Typoword="Website (2)"find="\b()e(?:b?(\s*)is|sbi)te(s)?\b"replace="$1eb$2site$3"/>
<Typoword="Website (1)"find="\b()e(?:b(?:iste|s(?:it|tit?e))|sbite)(s)?\b"replace="$1ebsite$2"/>
<Typoword="Weigh"find="\b()iegh(ed|ing)\b"replace="$1eigh$2"/>
<Typoword="Weight"find="\b((?:ounterw|ruiserw)|(?:eatherw|lyw)|(?:eavyw|undredw)|ightw|iddlew|verw|(?:aperw|ennyw)|nderw|(?:elterw)?)ieght(ed|ing|less|s?)\b"replace="$1eight$2"/>
<Typoword="Weird"find="\b()ierd(e(?:r|st)|ies?|ly|ness|o(?:es)?)?\b(?<!Carissa's Wierd)"replace="$1eird$2"/><!--avoid Carissa's Wierd-->
<Typoword="well"find="\bvell\b"replace="well"/>
<Typoword="What"find="\b()(?:aht|hta)\b"replace="$1hat"/>
<Typoword="Where"find="\b()(?:eh|her)re\b(?<!he Wehre)"replace="$1here"/><!--avoid the Wehre (river)-->
<Typoword="Whereabouts"find="\b()(?:erea|her)bouts\b"replace="$1hereabouts"/>
<Typoword="Whereas"find="\b()her(?:as|ease)\b"replace="$1hereas"/>
<Typoword="Whether"find="\b()hther\b"replace="$1hether"/>
<Typoword="Which"find="\b()(?:h(?:cih|ih?c|lch)|ihch)\b"replace="$1hich"/>
<Typoword="While"find="\b()hi(?:el|lle)\b"replace="$1hile"/>
<Typoword="who"find="\bwoh\b"replace="who"/><!--avoid name Woh-->
<Typoword="Wholly"find="\b()holel?y\b(?<!Joseph Wholey)"replace="$1holly"/><!--avoid name Joseph Wholey -->
<Typoword="(State/Nation/City/World)wide"find="\b(ity|ation|tate|orld)+wide\b(?!\s+receivers?\b)(?<!all-state\s+wide|New York City-wide)"replace="$1wide"/>
<Typoword="Widespread"find="\b()ide(?:s(?:pre|rea)|-s(?:prea?|rea))d\b"replace="$1idespread"/><!--avoid "wide-spreading"-->
<Typoword="Wide-ranging"find="\b()ide\s+ranging\b"replace="$1ide-ranging"/>
<Typoword="Knowledge (XXG)"find="\bh?+++??()+{0,2}di?e??(an??s?|c)\b(?!\w)(?<!Wikiedi(?:an?\'?s?\b|c\b))"replace="Wiki$1edi$2"/>
<Typoword="William(s/son/sburg)"find="\bWillaim(s(?:burg|ons?)?)?\b"replace="William$1"/>
<Typoword="(Un)Willingness"find="\b(nw|)illingless\b"replace="$1illingness"/>
<Typoword="Windows"find="\b()indoes\b"replace="$1indows"/>
<Typoword="with"find="\bwithe\b"replace="with"/><!--avoid surname Withe-->
<Typoword="With"find="\b()(?:hith|i(?:h?|tht)|tit?h)\b"replace="$1ith"/>
<Typoword="Withdrawal"find="\b()ithdrawl(s)?\b"replace="$1ithdrawal$2"/>
<Typoword="Withhold"find="\b()ith()ld(ing|s?)\b"replace="$1ithh$2ld$3"/>
<Typoword="Within"find="\b()ithing\b"replace="$1ithin"/>
<Typoword="Without"find="\b()h?it?houth?\b(?<!ithout)"replace="$1ithout"/>
<Typoword="(Not)withstand"find="\b(otw|)hithstand(*)\b"replace="$1ithstand$2"/>
<Typoword="Wonderful"find="\b()onerful(ly)?\b"replace="$1onderful$2"/>
<Typoword="Word"find="\b()rod(ed|ing|s?)\b"replace="$1ord$2"/>
<Typoword="Wor(d/k)"find="\bOwr()(e(?:d|rs?)|ing|?)\b"replace="Wor$1$2"/>
<Typoword="wor(d/k)"find="\bowr()(e(?:d|rs?)|ing|?)\b"replace="wor$1$2"/>
<Typoword="(Un)Work"find="\b(nw|)(?:okr|rok)(a(?:days?|holics?|b(?:ilit(?:ies|y)|l))|b(?:ench|o(?:ats?|oks?))|days?|e(?:d|rs?)|f(?:are|lows?|olks?)|hoses?|ing(?:mn|womn)?|loads?|mn*|outs?|places?|rooms?|s?|s(?:hops?|paces?|tations?)|tables?|ups?|w(?:eeks?|omn))\b"replace="$1ork$2"/>
<Typoword="Workstation"find="\b()ork(?:sts|\-sta)tion(s)?\b"replace="$1orkstation$2"/>
<Typoword="World"find="\b()orls\b(?<!(?:eight|f(?:ive|our)|nine|one|s(?:even|ix)|t(?:hree|wo)|) worls?)"replace="$1orld"/><!--avoid the botanical term worl, usually preceded by a number-->
<Typodisabled="World-famous"find="\b()orld\s+amou?s\b"replace="$1orld-famous"/>
<Typoword="(nder)World"find="\b(nderw|)(?:olr|rol)d(ly|s?|wide)\b"replace="$1orld$2"/>
<Typoword="World-renowned"find="\b()orld-renownd?\s+"replace="$1orld-renowned "/>
<Typoword="World Wide Web"find="\borld*wide\s+eb\b"replace="World Wide Web"/>
<Typoword="Worldwide (1)"find="\b()ord?l(-)?wide\b"replace="$1orld$2wide"/>
<Typoword="Worldwide (2)"find="\b()orld\s+wide\b(?!\s+(?:receiver\b|eb\b))"replace="$1orldwide"/>
<Typoword="Worsen"find="\b()orsten(*)\b"replace="$1orsen$2"/>
<Typoword="Worst-case"find="\b()orst\s+case(?=\s+(?:analysis|cost|performance|risk|scenario))"replace="$1orst-case"/>
<Typoword="Worthwhile"find="\b()orthwile(ness)?\b"replace="$1orthwhile$2"/>
<Typoword="Would (1)"find="\b(?:Owu(?:dl|ld)|W(?:oudl|uould))\b"replace="Would"/>
<Typoword="would (2)"find="\b(?:owu(?:dl|ld)|w(?:oudl|uould))\b"replace="would"/>
<Typoword="Wrestler"find="\b()rester(s)?\b"replace="$1restler$2"/>
<Typoword="Wr(i/o)te"find="\b()r()et(s)?\b"replace="$1r$2te$3"/>
<Typoword="Write (1)"find="\b()(?:irt?|ri(?:it?|t))t(er?s?|ing|ten)\b"replace="$1rit$2"/>
<Typoword="write (2)"find="\brwite(s)?\b"replace="write$1"/>
<Typoword="Write (3)"find="\bRwite(s)?\b"replace="Write$1"/>
<Typoword="Written"find="\b()riten\b"replace="$1ritten"/>

X

<Typoword="Xbox"find="\b?(?s)?\b(?<!Xbox(?:?s)?)(?!\s+binding)"replace="Xbox$1"/><!--avoid X-box binding protein-->

Y

<Typoword="Yacht"find="\b()at?ch(ing|s(?:mn|womn)?)?\b"replace="$1acht$2"/>
<Typoword="Year/Near/Clear"find="\b(?!Yera\b)(l|)(?:aer|era)(ed|ings?|ly|s?)\b"replace="$1ear$2"/><!--avoid Yera-->
<Typoword="Ye(ar/t)"find="\bEyar(ly|?)\b"replace="Year$1"/>
<Typoword="ye(ar/t)"find="\beyar(ly|?)\b"replace="year$1"/>
<Typoword="Years"find="\b()e(?:asr|rsa)\b"replace="$1ears"/>
<Typoword="Yellow"find="\b()elow(e|i(?:ng|sh)|s?)\b"replace="$1ellow$2"/>
<Typoword="You"find="\b()(?:oiu|tou|uo)\b(?<!Youd\b)"replace="$1ou"/>
<Typoword="you'(d/ve/re/ll)_"find="\b()ou?(d|ll|e)\b(?<!\bYoud)"replace="$1ou'$2"/><!--avoid Youd-->
<Typoword="Your(s)_"find="(?!\boru\b)\b()(?:oru|uor)(s(?:el(?:f|ves))?)?\b"replace="$1our$2"/><!--avoid yoru/Yoru-->
<Typoword="Yourself"find="\b()ouself\b"replace="$1ourself"/>

Z

<Typoword="Zebra"find="\b()ee+bra(s)?\b"replace="$1ebra$2"/>
<Typoword="Zionism"find="\bionis(m|ts?)\b"replace="Zionis$1"/>

SI unit symbols

<Typoword="(T)bit"find="(+(?:|&nbsp;)??)b(?:its\/se?c?|ps|\/se?c?)\b"replace="$1bit/s"/>
<Typoword="kbit"find="(+(?:|&nbsp;)?)(?:k(?:B(?:it(?:s\/se?c?|\/s)|ps)|b(?:its\/se?c?|ps|\/se?c?))|K(?:it(?:s\/se?c?|\/s)|ps|\/se?c?))\b"replace="$1kbit/s"/>
<Typoword="Mbit"find="(+(?:|&nbsp;)?)(?:M(?:B(?:it(?:s\/se?c?|\/s)|ps)|b(?:its\/se?c?|ps|\/se?c?))|m(?:it(?:s\/se?c?|\/s)|ps|\/se?c?))\b"replace="$1Mbit/s"/>
<Typoword="Gbit/s"find="(+(?:|&nbsp;)?)(?:Bit(?:se?c?|sse?c?)|b(?:it(?:se?c?|sse?c?)|se?c?|sse?c?))\b"replace="$1Gbit/s"/>
<Typoword="cm²"find="\b(?<!\{)+?\b"replace="cm<sup>2</sup>"/><!--avoid conversion templates-->
<Typoword="F (farad)"find="(+(?:|&nbsp;)?)f\b"replace="$1F"/>
<Typoword="GHz (gigahertz)"find="(+(?:|&nbsp;)?)(?:g(?:|㎐)|G(?:㎐|h|HZ)|㎓)\b"replace="$1&nbsp;GHz"/>
<Typoword="GPa (gigapascal)"find="(+(?:|&nbsp;)?)gP\b"replace="$1GPa"/>
<Typoword="Hz (hertz)"find="\b(|+(?:&nbsp;|-)?)(?:h|㎐)\b(?<!\bhz)"replace="$1&nbsp;Hz"/>
<Typoword="J (joule)"find="(+(?:|&nbsp;)?)j\b"replace="$1J"/>
<Typoword="kg (kilogram)"find="(\.?\d*)(?<!\b(?:19(?:02|\d)|2001))(?:\s|&nbsp;)?(?:K?s?|k?s|㎏?s?)\b"replace="$1&nbsp;kg"/><!--avoid "yyyy KG" minor planets, a publisher, named military units, an album, and Kampfgeschwader abbr at sentence start-->
<Typoword="-kg (kilogram)"find="(+)-(?:K?s?|k?s|㎏?s?)\b"replace="$1-kg"/>
<Typoword="kHz (kilohertz)"find="(+)(?:\s|&nbsp;)?(?:K(?:|㎐)|k(?:hz|㎐))\b"replace="$1&nbsp;kHz"/>
<Typoword="-kHz (kilohertz)"find="(+)-(?:K(?:|㎐)|k(?:hz|㎐))\b"replace="$1-kHz"/>
<Typoword="kJ (kilojoule)"find="(+(?<!\b(?:19(?:02|7|\d)|200))(?:|&nbsp;)?)K\b"replace="$1kJ"/><!--avoid "yyyy KJ" minor planets-->
<Typoword="km (kilometre)"find="(+)(?<!\b(?:19(?:21|7|8|9\d)|2001|(?:KMS|OS)*(?:\d|1\d)|S*\d\d))(?:\s|&nbsp;)?(?:K?s?|k?s)\b(?<!\.\s+KM)"replace="$1&nbsp;km"/><!--avoid "yyyy KM" minor planets, and named military units-->
<Typoword="-km (kilometre)"find="(+)-(?:K?s?|k?s|㎞?s?)\b"replace="$1-km"/>
<Typoword="km²"find="\b(?<!\{)+?\b"replace="km<sup>2</sup>"/><!--avoid conversion templates-->
<Typoword="kPa (kilopascal)"find="(+(?:|&nbsp;)?)(?:kp|K(?:Pa|pA))\b"replace="$1kPa"/><!--avoid KPA-->
<Typoword="Pa (pascal)"find="(+(?:|&nbsp;)?)p\b"replace="$1Pa"/>
<Typoword="W (watt)"find="(\d(?:|&nbsp;)?)w\b"replace="$1W"/>
<Typoword="Wb (weber)"find="(+(?:|&nbsp;)?)()w\b"replace="$1$2Wb"/>

Capitalisation

Cultures, languages, and ethnic groups

<Typoword="Algonquian"find="\balgon(kia?ns?|quia?ns?)\b"replace="Algon$1"/>
<!--American covered in "America(n)" rule-->
<Typoword="Apache"find="\bapache(s)?\b"replace="Apache$1"/>
<Typoword="Ara(b/wak/ucan/maic/mean/paho/gonese)"find="\bara(b(?:i(?:an|st))?s?|gonese|m(?:a(?:eans?|ic)|eans?)|pahoe?s?|ucan(?:ians?|s?)|wak(?:ans?|s?))\b"replace="Ara$1"/>
<Typoword="Arabic_"find="\barabic(iz(?:e?|ing))?\b(?<!um\s{1,9}arabic)"replace="Arabic$1"/>
<Typoword="Atha(b/p)as(c/k)an"find="\batha()as()an(s)?\b"replace="Atha$1as$2an$3"/>
<Typoword="Breton"find="\bbret+on(s)?\b"replace="Breton$1"/>
<Typoword="Catalan"find="\bcatal+an(s)?\b"replace="Catalan$1"/>
<Typoword="Cherokee"find="\bcher+oke+(s)?\b"replace="Cherokee$1"/>
<Typoword="Croatian"find="\broation(s)?\b"replace="Croatian$1"/>
<Typoword="Cyrillic"find="\bcyr+il+ic(s)?\b"replace="Cyrillic$1"/>
<Typoword="Czech"find="\bch?zech(s)?\b"replace="Czech$1"/>
<Typoword="Czechoslovakia"find="\bzec+ak(?<!Czechoslovak)(ian?s?|s?)\b"replace="Czechoslovak$1"/><!--neg lookbehind removable-->
<Typoword="Dakota"find="\bdakota(ns?)?\b"replace="Dakota$1"/>
<Typoword="Dominican"find="\bomini?ci?an(s)?\b(?<!Dominicans?)"replace="Dominican$1"/><!--relig. & geogr.--><!--neg lookbehind removable-->
<Typoword="Dutch"find="\bdutch(mn|womn)?\b"replace="Dutch$1"/>
<!--English- covered in another rule-->
<Typoword="French"find="\bfrench(mn|womn)?\b(?!\s+fr(?:ies|y)) replace="French$1"/><!--avoid "french fry/fries"-->
<Typoword="Gujarati"find="\bgujrat+(is?)?\b"replace="Gujarat$1"/>
<Typoword="Gurkha"find="\bgurkha(s)?\b"replace="Gurkha$1"/>
<Typoword="Hebrew"find="\bhebr(ai(?:c|s)|ews?)\b"replace="Hebr$1"/>
<Typoword="Hellenic"find="\bhel+n(ist)?ic\b"replace="Hellen$1ic"/>
<Typoword="Hind(i/u(stan(i)))"find="\bhind(is?|u(?:s(?:tan(?:is?)?)?)?|uism)\b"replace="Hind$1"/>
<Typoword="Hispan-"find="\bhispan(i(?:a|c(?:i+|s?)|ola)|o)\b"replace="Hispan$1"/>
<Typoword="Huguenot"find="\bHugnot(s)?\b"replace="Huguenot$1"/>
<Typoword="Irish"find="\birish(mn|womn)?\b"replace="Irish$1"/>
<Typoword="Jew"find="\bj(ew(?:ish(?:ness)?|s?)|ud(?:aica?|ean?s?))\b"replace="J$1"/>
<Typoword="Latin"find="\blatin(?!?\d)(as?|iss?|i(?:e?|ing)|os?)?\b(?<!(\|(?:\s|)latin|uitarra latina))"replace="Latin$1"/>
<Typoword="Moroccan"find="\bor+oc+oa?n(s)?\b"replace="Moroccan$1"/>
<Typoword="Navajo"find="\bnava(os?)\b"replace="Nava$1"/>
<Typoword="Ptolem(aic|y)"find="\bptol+em(aic|y)\b"replace="Ptolem$1"/>
<Typoword="Sanskrit"find="\b(?:sansk(?:ir?|ri)|Sanskir?)t\b"replace="Sanskrit"/>
<Typoword="Sioux"find="\bsiou(an|x)\b"replace="Siou$1"/>
<Typoword="Tagalog"find="\btagalog\b"replace="Tagalog"/>
<Typoword="Tamil"find="\btamil\b"replace="Tamil"/>
<Typoword="Telugu"find="\btelugu\b"replace="Telugu"/>
<Typoword="Tibet(an)"find="\btibet(ans?)?\b"replace="Tibet$1"/>
<Typoword="Tuareg"find="\bTaureg\b"replace="Tuareg"/>
<Typoword="Urdu"find="\burdu\b"replace="Urdu"/>
<Typoword="Viking"find="\bviking(s)?\b"replace="Viking$1"/>
<Typoword="Yiddish"find="\byidd+ish\b"replace="Yiddish"/>

Companies, institutions, and brands

<Typoword="Coca-Cola"find="\b(o*ola|oca-cola)\b"replace="Coca-Cola"/>
<Typoword="Disney World"find="\bisneyorld\b"replace="Disney World"/>
<Typoword="Disneyland (1)"find="\bisney(?:+|L)and\b"replace="Disneyland"/>
<Typoword="Disney(land) (2)"find="\bdisney(land)?\b"replace="Disney$1"/>
<Typoword="Dolce & Gabbana"find="\bDolce\s+(?:and\s+Gabb?an?|e\s+Gabb?an?|& Gab(?:an?|ban))na\b"replace="Dolce & Gabbana"/>
<Typoword="DreamWorks"find="\bream(?:-|w|\s+W)orks\b"replace="DreamWorks"/>
<Typoword="Facebook"find="\b(?:face|FaceB)ook\b"replace="Facebook"/>
<Typoword="FedEx"find="\bed?x\b"replace="FedEx"/>
<Typoword="Firefox"find="\bfirefox\b"replace="Firefox"/>
<Typoword="Flixster"find="\bFlixter\b"replace="Flixster"/>
<Typoword="Fulbright"find="\bFullbright\s+(rograms?|cholar(?:s(?:hips?)?)?)\b"replace="Fulbright $1"/>
<Typoword="GameSpot"find="\bamespot\b"replace="GameSpot"/>
<Typoword="Hachette Book Group"find="\batchette\s+ook\s+roup\b"replace="Hachette Book Group"/>
<Typoword="Harvard"find="\bharvard\b"replace="Harvard"/>
<Typoword="IBM"find="\bbm\b"replace="IBM"/>
<Typoword="iPad/iPod/iPhone"find="\bp(ads?|hones?|ods?)\b"replace="iP$1"/>
<Typoword="iTunes"find="\btunes\b"replace="iTunes"/>
<Typoword="Johns Hopkins University"find="\boh?n(?:s)?\s+opkins?\s+niversity\b"replace="Johns Hopkins University"/>
<Typoword="KeyArena"find="\bKey\s+rena\b"replace="KeyArena"/>
<Typoword="Lloyd's of London"find="\bloyd?s of ondon\b"replace="Lloyd's of London"/>
<Typoword="McDonald's ..."find="\bMonald?s\s+(All American|burger|cheese|Championship|fr(?:anchise|ench|ies)|me(?:al|nu)|Monopoly|New Zealand|Open|restaurants?|store|Super Smash)"replace="McDonald's $1"/>
<Typoword="Microsoft"find="\b(?:micros|ic(?:ors|ro))oft\b"replace="Microsoft"/>
<Typoword="Myspace"find="\bmyspace\b"replace="Myspace"/>
<Typoword="NASCAR"find="\bascar\b(?!\s+(?:JF\b|Motorsport\b))"replace="NASCAR"/>
<Typoword="National Park Service"find="\bational\s+arks\s+ervices?\b"replace="National Park Service"/>
<Typoword="National Register of Historic Places"find="\bational\s+egistry\s+f\s+istoric\s+laces\b"replace="National Register of Historic Places"/>
<Typoword="Palm OS"find="\bPalmOS\b"replace="Palm OS"/>
<Typoword="People en Español"find="\bPeople\s+(?:En\s+spa|en\s+(?:Espan|espa))ol\b"replace="People en Español"/>
<Typoword="Procter & Gamble"find="\bProctor\s?(?:and|\&)\s?amble\b"replace="Procter & Gamble"/>
<Typoword="Pulitzer"find="\bul(?:i(?:tz|zt?)|litz|tiz)(?<!Pulitz)er\b"replace="Pulitzer"/><!--neg lookbehind removable-->
<Typoword="TiVo"find="\b(?:Tiv|ti)o(s?|'s)\b"replace="TiVo$1"/>
<Typoword="TransPennine Express"find="\branspennine\s+xpress\b"replace="TransPennine Express"/>
<Typoword="Twitter"find="\btwitter(?=\s+(?:accounts?|feeds?|hashtags?|p(?:ages?|rofiles?)|sites?|that)\b)"replace="Twitter"/>
<Typoword="U.S. News & World Report"find="\bU(?:\.?\s?S\.?\s?News nd World eports?|\.\s?S\.News & World eports?|\.\s?S\.News (?:nd World eports|& World eports)|S News (?:nd World eports|& World eports?))\b"replace="U.S. News & World Report"/>
<Typoword="UNICEF"find="\bUnicef\b(?<!Sterntale-Unicef)"replace="UNICEF"/>
<Typoword="Us Weekly"find="\bUS\s+Weekly\b"replace="Us Weekly"/>
<Typoword="Walgreens"find="\bWalgreens\b"replace="Walgreens"/>
<Typoword="Wisden Cricketers' Almanack"find="\bWisden\s+Cricketer(?:s\s+Almnack?|s(?:\s+Almanack?|\s+Almanack?|'\s+Almnac))\b"replace="Wisden Cricketers' Almanack"/>
<Typoword="Duckworth–Lewis method"find="\bDuckworth(?:Lewis\s+|–Lewis\s+M)ethod\b"replace="Duckworth–Lewis method"/>
<Typoword="YouTube"find="\b(?:you?|You(?:|t|\s+))ube(rs?)?\b(?<!</?youtube)"replace="YouTube$1"/><!--avoid youtube.com & <youtube></youtube> tags from Wikia-->

Continents and subcontinents

<Typoword="(Ant)Arctic Circle"find="\bA(nta)?rctic\s+circle\b"replace="A$1rctic Circle"/>
<Typoword="Antarctic"find="\bantarc?ticc(a)?\b(?!'')"replace="Antarctic$1"/><!--Arctic dealt with elsewhere; avoid species-->
<Typoword="Africa"find="\bafri(can?s?|ka(?:ans|n?|n(?:da|ers?)))\b"replace="Afri$1"/>
<Typoword="America"find="\bmerc?ic?a(n(?:?|ism))?\b(?<!(\|(?:\s|)american|America*))(?<!(?:+|\.)\s+\(?americana)"replace="America$1"/><!--avoid self after merge & species-->
<Typoword="Asia_"find="\bai?sia(ns?|s?|tic)\b"replace="Asia$1"/>
<Typoword="Austral(as)ia"find="\baustral(asian?s?|ian?s?)\b"replace="Austral$1"/>
<Typoword="Central America"find="\bcentral\s*merica(ns?|s?)\b"replace="Central America$1"/>
<Typoword="Eur(asia/ope)"find="\beur(asia(?:ns?)?|ope(?:ans?)?)\b"replace="Eur$1"/>
<Typoword="North America"find="\bnorth\s*merica(ns?|s?)\b"replace="North America$1"/>
<Typoword="Panamerica"find="\bpanmerica(n(?:ism|s?)|s?)\b"replace="Panamerica$1"/>
<Typoword="Pan-America"find="\bpan-merica(n(?:ism|s?)|s?)\b"replace="Pan-America$1"/>
<Typoword="Polynesia"find="\bpolynesia(ns?|s?)\b"replace="Polynesia$1"/>
<Typoword="South America"find="\bsouth\s*merica(ns?|s?)\b"replace="South America$1"/>

Geographical proper names

<!--Geographical names with capital letters-->
<Typoword="Abkhazia"find="\babkha(s(?:ian?s?)?|zian?s?)\b"replace="Abkha$1"/>
<Typoword="Afghanistan"find="\bafghani(s(?:tan)?)?\b"replace="Afghani$1"/>
<Typoword="Akro(n/tiri)"find="\bakro(n|tiri)\b"replace="Akro$1"/>
<Typoword="Åland(ish)"find="\bland(ish)?\b(?<!Jack Aland)"replace="Åland$1"/><!--avoid surnames-->
<Typoword="Albania"find="\balbania(ns?)?\b"replace="Albania$1"/>
<Typoword="Algeria"find="\balgeri(an?s?|e)\b"replace="Algeri$1"/>
<Typoword="Andorra"find="\bandor+a(ns?)?\b"replace="Andorra$1"/>
<Typoword="Angola"find="\bangoli?a(ns?|s?)\b"replace="Angola$1"/>
<Typoword="Anguilla"find="\banguil+a(ns?|s?)\b"replace="Anguilla$1"/>
<Typoword="Anti(gua/lles)"find="\banti(guan?s?|lles)\b"replace="Anti$1"/>
<Typoword="Greater Antilles"find="\bgreater\s+ntil{1,3}es\b"replace="Greater Antilles"/>
<Typoword="Lesser Antilles"find="\bles+er\s+ntil{1,3}es\b"replace="Lesser Antilles"/>
<Typoword="Arabia"find="\brai?b(an?s?|ia?n?s?|ns?|s?)\b(?<!Arab(?:ia(?:ns?)?|s?))"replace="Arab$1"/>
<Typoword="Argentina"find="\bargentin(a|e(?:ans?|s?)|ians?)\b(?!'')"replace="Argentin$1"/><!--avoid species-->
<Typoword="Armenia"find="\barmenia(ns?)?\b"replace="Armenia$1"/>
<Typoword="Aruba"find="\baruba(ns?|s?)\b"replace="Aruba$1"/>
<Typoword="Ascension Island"find="\bscension\s+island\b"replace="Ascension Island"/>
<Typoword="Austr-"find="\baustr(al|ones)?ia(ns?|s?)\b"replace="Austr$1ia$2"/>
<Typoword="Azer-"find="\bazer(baijan(?:is?)?|(?:is?)?)\b"replace="Azer$1"/>
<Typoword="Babylon(ia)"find="\bbablon(ian?s?)?\b"replace="Babylon$1"/>
<Typoword="Bahamas"find="\bbaham+(an?s?|ians?)\b"replace="Baham$1"/>
<Typoword="Bahrain"find="\bbahrain(ians?)?\b"replace="Bahrain$1"/>
<Typoword="Bangladesh"find="\bbangldesh(i)?\b"replace="Bangladesh$1"/>
<Typoword="Barbados"find="\bbarbad(ians?|os)\b"replace="Barbad$1"/>
<Typoword="Barbuda/Bermuda"find="\bb(arb|erm)ud(an?s?|ian?s?)\b"replace="B$1ud$2"/>
<Typoword="Basutoland"find="\bbasuto\s?and\b"replace="Basutoland"/>
<Typoword="Bei(jing/rut)"find="\bbei(jing|rut)\b"replace="Bei$1"/>
<Typoword="Bel(arus/gium/ize)"find="\bbel(arus(?:ians?|sians?)?|gi(?:ans?|um)|iz(?:e|ians?))\b"replace="Bel$1"/>
<Typoword="Benin"find="\bbenin(ians?)?\b"replace="Benin$1"/>
<Typoword="Bhutan"find="\bbhutan(ians?)?\b"replace="Bhutan$1"/>
<Typoword="Bolivia/Bosnia"find="\bbo(liv|sn)ia(ns?)?\b"replace="Bo$1ia$2"/>
<Typoword="Botswana (1)"find="\bo(?:stwa|tswan)na(ns?|s?)\b"replace="Botswana$1"/>
<Typoword="Botswana (2)"find="\bbotswana(ns?|s?)\b"replace="Botswana$1"/>
<Typoword="Brazil"find="\bbrazill?(ians?)?\b"replace="Brazil$1"/>
<Typoword="Brunei"find="\bbrunei(?<!ryonia\s+brunei)\b"replace="Brunei"/>
<Typoword="Bulgar(ia)"find="\bbulgar(ian?s?)?\b"replace="Bulgar$1"/>
<Typoword="Burkina Faso"find="\burkina\s*(?:fas+|Fass+)o\b"replace="Burkina Faso"/>
<Typoword="Bur(kina/ma/undi)"find="\bbur(kina|m(?:a|ese)|urundi(?:ans?)?)\b"replace="Bur$1"/>
<Typoword="Byzantine"find="\bbyzant+i(nes?|um)\b"replace="Byzanti$1"/>
<Typoword="Cambodia"find="\bcambodia(ns?)?\b"replace="Cambodia$1"/>
<Typoword="Cameroon"find="\bcameroon\b"replace="Cameroon"/>
<Typoword="Cameroonian"find="\bcamero+nian(s)?\b"replace="Cameroonian$1"/>
<Typoword="Canada"find="\bcanad(a|in?)\b(?<!canadien)"replace="Canad$1"/>
<Typoword="Cape Verde"find="\bape\s*verde\b"replace="Cape Verde"/>
<Typoword="Cayman Islands"find="\baymn\s+islands\b"replace="Cayman Islands"/>
<Typoword="Central African Republic"find="\bentral\s+frican\s+republic\b"replace="Central African Republic"/>
<Typoword="Chadian"find="\bchadian(s)?\b"replace="Chadian$1"/>
<Typoword="Chhattisgarh"find="\b(?:chh?att?|Ch(?:att?|hat))isgarh(i)?\b"replace="Chhattisgarh$1"/>
<Typoword="Chilean"find="\bchil+an(s)?\b"replace="Chilean$1"/>
<Typoword="Chinese"find="\bchin+es+e\b"replace="Chinese"/>
<Typoword="Christmas Island"find="\bhristmas\s+island\b"replace="Christmas Island"/>
<Typoword="Col(o/u)mbia"find="\bcol()mbia(ns?)?\b"replace="Col$1mbia$2"/>
<Typoword="Comoros"find="\bcomoros\b"replace="Comoros"/>
<Typoword="Congo"find="\bcong(ans?|o)\b"replace="Cong$1"/>
<Typoword="Cook Islands"find="\book\s*islands\b"replace="Cook Islands"/>
<Typoword="Corsica"find="\bcorsica(ns?)?\b(?<!\b\p{Lu}\.\s+corsica)(?!'')"replace="Corsica$1"/>
<Typoword="Costa Rica"find="\bosta\s*rica(ns?)?\b"replace="Costa Rica$1"/>
<Typoword="Côte d'Ivoire"find="\b(?:C(?:ote\s+|ôte\s+(?:D|(?:|i)))|cte\s+d)voire\b"replace="Côte d'Ivoire"/>
<Typoword="Crete"find="\bcret(ans?|e)\b"replace="Cret$1"/>
<Typoword="Croatia"find="\bcroat(ia(?:ns?)?|s?)\b"replace="Croat$1"/>
<Typoword="Cuba_"find="\bcuba(ns?)?(?!\s+prime)\b"replace="Cuba$1"/>
<Typoword="Cyprus"find="\bcpr(iots?|us)\b"replace="Cypr$1"/>
<Typoword="Czech Republic"find="\bczec\s*epublic\b"replace="Czech Republic"/>
<Typoword="Dahomey"find="\bdahomey\b"replace="Dahomey"/>
<Typoword="Danish"find="\bdan+ish\b"replace="Danish"/>
<Typoword="Dar es Salaam"find="\bDar(?:+Es+|-es-)alaa?m\b"replace="Dar es Salaam"/>
<Typoword="Democratic People's Republic of Korea"find="\bemocratic\s*people?s\s*republic\s*of\s*orea\b"replace="Democratic People's Republic of Korea"/>
<Typoword="Democratic Republic of Congo"find="\bemocratic\s+republic\s+of\s+ongo\b"replace="Democratic Republic of Congo"/>
<Typoword="Denmark"find="\bdenmark\b"replace="Denmark"/>
<Typoword="Dhekelia"find="\bdhekelia(ns?)?\b"replace="Dhekelia$1"/>
<Typoword="Djibouti"find="\bdjibouti\b"replace="Djibouti"/>
<Typoword="Dominica"find="\bdomin+ici?a(ns?)?\b(?!'')"replace="Dominica$1"/><!--avoid species-->
<Typoword="Dominican Republic"find="\bdominican\s*epublic\b"replace="Dominican Republic"/>
<Typoword="East Timor"find="\beast\s*imor\b"replace="East Timor"/>
<Typoword="Ecuador"find="\becua?d{1,3}or(ians?)?\b"replace="Ecuador$1"/>
<Typoword="Egypt"find="\begpt(ians?)?\b"replace="Egypt$1"/>
<Typoword="El Salvador"find="\bel\s*alvadorr?(ians?)?\b"replace="El Salvador$1"/>
<Typoword="Equatorial Guinea"find="\bequatorial\s*uinea\b"replace="Equatorial Guinea"/>
<Typoword="Eritrea"find="\beritrea(ns?)?\b"replace="Eritrea$1"/>
<Typoword="Estonia"find="\bestonia(ns?)?\b"replace="Estonia$1"/>
<Typoword="Ethiopia"find="\bethopia(ns?)?\b"replace="Ethiopia$1"/>
<Typoword="Falkland Islands"find="\bau?lkland\s*islands\b"replace="Falkland Islands"/>
<Typoword="Falkland"find="\bfau?lkland(s)?\b"replace="Falkland$1"/>
<Typoword="Faroe Islands"find="\baroe\s*islands\b"replace="Faroe Islands"/>
<Typoword="Fehnerbaçe"find="\b(?:fehnerba|Fehnerbac)e\b"replace="Fehnerbahçe"/>
<Typoword="Fiji"find="\bfiji(ans?)?\b"replace="Fiji$1"/>
<Typoword="Filipino"find="\b(?:fil+ip+inoe?|Filipinoe|hil+ip+inoe?)(s)?\b"replace="Filipino$1"/>
<Typoword="Finland"find="\bfin(land(?:ia)?|nish)\b"replace="Fin$1"/>
<Typoword="France"find="\bfrance\b"replace="France"/>
<Typoword="French Polynesia"find="\brench\s*polynesia\b"replace="French Polynesia"/>
<Typoword="Fuentes de Oñoro"find="\bFuentes\s+de\s*Onoro\b"replace="Fuentes de Oñoro"/>
<Typoword="Gabon"find="\bgabon\b"replace="Gabon"/>
<Typoword="Gambia"find="\bgambia(ns?)?\b"replace="Gambia$1"/>
<Typoword="Georgia"find="\bgeorgia(ns?|s?)\b"replace="Georgia$1"/>
<Typoword="Germany"find="\bgerman(i(?:c|s(?:e?|s?)|ze?)|?)\b(?<!cousingerman)"replace="German$1"/><!--avoid ]-->
<Typoword="Ghana"find="\bghan(a(?:ians?|ns?|s?))\b"replace="Ghan$1"/>
<Typoword="Gibraltar"find="\bgibraltar(ians?)?\b"replace="Gibraltar$1"/>
<Typoword="Greece"find="\bgre(cian|e(?:ce|ks?))\b"replace="Gre$1"/>
<Typoword="Greenland"find="\bgreenland(ers?|ic)?\b"replace="Greenland$1"/>
<Typoword="Grenad(a/ines)"find="\bgrenad(an?s?|ines)\b"replace="Grenad$1"/>
<Typoword="Guatemala (2)"find="\buatamala(ns?)?\b"replace="Guatemala$1"/>
<Typoword="Guatemala (1)"find="\bguatemala(ns?)?\b"replace="Guatemala$1"/>
<Typoword="Guinea-Bissau"find="\buinea-bissau\b"replace="Guinea-Bissau"/>
<Typoword="Guinean"find="\bguinean(s)?\b"replace="Guinean$1"/>
<Typoword="Guyana"find="\bguyana(ns?)?\b"replace="Guyana$1"/>
<Typoword="Haiti"find="\bhaiti(ans?)?\b"replace="Haiti$1"/>
<Typoword="Herzegovina (1)"find="\bherzegovin(a|ians?)\b"replace="Herzegovin$1"/>
<Typoword="Herzegovina (2)"find="\berz(?:agovin|egovi?ni)a\b"replace="Herzegovina"/>
<Typoword="Honduras"find="\bhondura(ns?|s?)\b"replace="Hondura$1"/>
<Typodisabled="Hong Kong_"find="\b(?!Hongkong and\b)ong*kong\b"replace="Hong Kong"/><!--avoid ]-->
<Typoword="Hungary"find="\bhungar(ians?|y)\b"replace="Hungar$1"/>
<Typoword="I(c/r)eland"find="\bi()eland(ers?)?\b"replace="I$1eland$2"/>
<Typoword="Icelandic"find="\biceland(ic)?\b"replace="Iceland$1"/>
<Typoword="India"find="\bindia(ns?|s?)\b(?!rubber)"replace="India$1"/><!--avoid india rubber-->
<Typoword="Indonesia"find="\bindonesia(ns?)?\b(?<!indonesia(ns?)?)"replace="Indonesia$1"/>
<Typoword="Ira(n/q)_"find="\bira(n(?:ians?)?|qi?s?)\b(?<!Ira(n(?:ians?)?|qi?s?))"replace="Ira$1"/>
<Typoword="Islas Malvinas"find="\bislas\s+alvinas\b"replace="Islas Malvinas"/>
<Typoword="Istanbul"find="\bInstan?bul\b"replace="Istanbul"/>
<Typoword="Italy"find="\bital+(ian?s?|y)\b"replace="Ital$1"/>
<Typoword="Ivory Coast"find="\bvory\s*coast\b"replace="Ivory Coast"/>
<Typoword="Jamaica"find="\bjam+ai?ca(ns?)?\b"replace="Jamaica$1"/>
<Typoword="Japan"find="\bjapan\b"replace="Japan"/>
<Typoword="Japanese (1)"find="\bap(?:an(?:es|see)|enese)\b"replace="Japanese"/>
<Typoword="Japanese (2)"find="\bjapan+es+e\b"replace="Japanese"/>
<Typoword="Jordan"find="\bjordan(ians?)?\b"replace="Jordan$1"/>
<Typoword="Kazak(h)"find="\bkaak(hs?|s?)\b"replace="Kazak$1"/>
<Typoword="Kazakhstan (1)"find="\bazah?kstan(is?)?\b"replace="Kazakhstan$1"/>
<Typoword="Kazakhstan (2)"find="\bkaakh?stan\b"replace="Kazakhstan"/>
<Typoword="Kenya"find="\bkenya(ns?)?\b"replace="Kenya$1"/>
<Typoword="Kirg(h)iz(stan/ia)"find="\bkirg(h)?iz(ia|stan)?\b"replace="Kirg$1iz$2"/>
<Typoword="Kiribati"find="\bkiribati(ans?)?\b"replace="Kiribati$1"/>
<Typoword="Korea"find="\bkorea(ns?)?\b"replace="Korea$1"/>
<Typoword="Kosovo"find="\bkos+ov(ans?|o)\b"replace="Kosov$1"/>
<Typoword="Kuwait"find="\bkuwait(is?)?\b"replace="Kuwait$1"/>
<Typoword="Kyrgyzstan"find="\b(?:Kyrgy|kyrgyz)stan(ians?)?\b"replace="Kyrgyzstan$1"/>
<Typoword="Laos"find="\blao(s|tians?)\b"replace="Lao$1"/>
<Typoword="Latvia"find="\blatvia(ns?)?\b"replace="Latvia$1"/>
<Typoword="Lebanese"find="\blebn?nes+e\b"replace="Lebanese"/>
<Typoword="Lebanon"find="\blebn(ese|on)\b"replace="Leban$1"/>
<Typoword="Lesotho"find="\blesoth(ans?|o)\b"replace="Lesoth$1"/>
<Typoword="Liberia"find="\bliberia(ns?)?\b"replace="Liberia$1"/>
<Typoword="Libya (1)"find="\bybia(ns?)?\b"replace="Libya$1"/>
<Typoword="Libya (2)"find="\bliba(ns?)?\b"replace="Libya$1"/>
<Typoword="Liechtenstein"find="\bliechtenstein\b"replace="Liechtenstein"/>
<Typoword="Lithuania"find="\blithuania(ns?)?\b"replace="Lithuania$1"/>
<Typoword="Luxembourg"find="\bluxembourg\b"replace="Luxembourg"/>
<Typoword="Maca(o/u)"find="\bmaca()\b"replace="Maca$1"/>
<Typoword="Macedon"find="\bmacdon(ian?s?)?\b"replace="Macedon$1"/>
<Typoword="Madagascar"find="\bmadgasca(ns?|r)\b"replace="Madagasca$1"/>
<Typoword="Malawi"find="\bmal+awi(ans?)?\b"replace="Malawi$1"/>
<Typoword="Malay(sia)"find="\bmal+ay(a(?:l(?:am|i)|ns?|s?)|s?|sian?s?)\b"replace="Malay$1"/>
<Typoword="Maldives"find="\bmaldv(es|ians?)\b"replace="Maldiv$1"/>
<Typoword="Mali"find="\bmali\b"replace="Mali"/>
<Typoword="Malta"find="\bmal+t(a|ese)\b"replace="Malt$1"/>
<Typoword="Marshall Islands"find="\barshal+\s+islands\b"replace="Marshall Islands"/>
<Typoword="Mason–Dixon line"find="\basonixon\s+ine\b"replace="Mason–Dixon line"/>
<Typoword="Mauritania"find="\bmauritania(ns?)?\b"replace="Mauritania$1"/>
<Typoword="Mauritius"find="\bmauriti(ans?|us)\b"replace="Mauriti$1"/>
<Typoword="Mediterranean"find="\b()ed(?:t+er?)ra(?:in{1,2}|n{1,2})n\b(?<!iterranean)"replace="$1editerranean"/>
<Typoword="Melbourne"find="\bel+bou(?:nr?|r)e\b"replace="Melbourne"/>
<Typoword="Mayotte"find="\bmayotte\b"replace="Mayotte"/>
<Typoword="Mexico"find="\bmexic(ans?|o)\b"replace="Mexic$1"/>
<Typoword="Micronesia"find="\bmicronesia(ns?)?\b"replace="Micronesia$1"/>
<Typoword="Moldova"find="\bmoldova(ns?)?\b"replace="Moldova$1"/>
<Typoword="Mombasa"find="\bMombassa\b"replace="Mombasa"/>
<Typoword="Monaco"find="\bmon(ac(?:ans?|o)|egasques?)\b"replace="Mon$1"/>
<Typoword="Mongolia"find="\bmongol+(ian?s?|s?)\b"replace="Mongol$1"/>
<Typoword="Montenegro"find="\bmontenegr(ans?|o)\b"replace="Montenegr$1"/>
<Typoword="Montserrat"find="\b(?:mont?ser+|Montser)at(i)?\b"replace="Montserrat$1"/><!--avoid name Monserrat-->
<Typoword="Morocco (2)"find="\b()or(?:o|roc?)c(ans?|o)\b"replace="$1orocc$2"/>
<Typoword="Morocco (1)"find="\bmor+oc+(ans?|o)\b"replace="Morocc$1"/>
<Typoword="Mozambique"find="\bmozambique\b"replace="Mozambique"/>
<Typoword="Myanmar"find="\bmyanmar\b"replace="Myanmar"/>
<Typoword="Nagorno-Karabakh"find="\bagorno?karabakh\b"replace="Nagorno-Karabakh"/>
<Typoword="Namibia"find="\bnamibia(ns?)?\b"replace="Namibia$1"/>
<Typoword="Nauru"find="\bnauru\b"replace="Nauru"/>
<Typoword="Nepal"find="\bnepal\b"replace="Nepal"/>
<Typoword="Nepalese"find="\bnepl?les?se\b"replace="Nepalese"/>
<Typoword="Netherlands"find="\bnetherlands\b"replace="Netherlands"/>
<Typoword="New Caledonia"find="\bew\s+caledonia(ns?)?\b"replace="New Caledonia$1"/>
<Typoword="New Zealand"find="\bew\s+(?:zea|Ze)land(ers?)?\b"replace="New Zealand$1"/>
<Typoword="Nicaragua"find="\bnicaragua(ns?)?\b"replace="Nicaragua$1"/>
<Typoword="Niger(ia)"find="\bniger(in?s?|ois|\b(?!''))(?!\s+seed|seed)\b"replace="Niger$1"/><!--avoid species-->
<Typoword="Niue"find="\bniue\b"replace="Niue"/>
<Typoword="Norfolk Island"find="\borfolk\s+island\b"replace="Norfolk Island"/>
<Typoword="North Korea"find="\bnorth\s+korea(ns?)?\b"replace="North Korea$1"/>
<Typoword="Northern Cyprus"find="\bnorthern\s+cyprus\b"replace="Northern Cyprus"/>
<Typoword="Northern Mariana Islands"find="\bnorthern\s+ariana\s+islands\b"replace="Northern Mariana Islands"/>
<Typoword="Nor(way/wegian/se/man(dy)/folk)"find="\bnor(dic|folk|man(?:dy|s?)|se(?:mn|womn)?|w(?:ay|egians?))\b"replace="Nor$1"/>
<Typoword="Oman"find="\boma(ni?s?)\b"replace="Oma$1"/>
<Typoword="Ottoman Empire"find="\btt?omn\s+empire\b"replace="Ottoman Empire"/>
<Typoword="Pakistan"find="\bpakistan(is?|s?)\b"replace="Pakistan$1"/>
<Typoword="Palau"find="\bpalau\b"replace="Palau"/>
<Typoword="Palestine"find="\b(?:p(?:al)|Pali)stin(e|ians?)\b"replace="Palestin$1"/>
<Typoword="Palestinian"find="\balstian(s)?\b"replace="Palestinian$1"/>
<Typoword="Panama"find="\bpanam+a(nians?)?\b"replace="Panama$1"/>
<Typoword="Papua New Guinea"find="\bapua\s+new\s+uinea\b"replace="Papua New Guinea"/>
<Typoword="Paraguay"find="\bparagua(ans?)?\b"replace="Paraguay$1"/>
<Typoword="People's Republic of China"find="\beoples\s+republic\s+of\s+hina\b"replace="People's Republic of China"/>
<Typoword="Per(sia/u)"find="\bper(sian?s?|u(?:vians?)?)\b"replace="Per$1"/>
<Typoword="Philippin(e/o)"find="\bphil?lip?pino(s?)\b"replace="Philippin$1"/>
<Typoword="Philippine"find="\b(?:phil+ip+|Phil+ip)ine(s)?\b"replace="Philippine$1"/>
<Typoword="Piraeus"find="\bPire(?:au?|u)s\b"replace="Piraeus"/>
<Typoword="Pitcairn Islands"find="\bitcairn\s+islands\b"replace="Pitcairn Islands"/>
<Typoword="Poland"find="\bpoland\b"replace="Poland"/>
<Typoword="Port-au-Prince"find="\bPort(?:\s+u|-Au)Prince\b"replace="Port-au-Prince"/>
<Typoword="Portugal (1)"find="\b(?:Port(?:gu?al+|u(?:agl+|gual+))|portugual)\b"replace="Portugal"/>
<Typoword="Portugal (2)"find="\bportugal\b"replace="Portugal"/>
<Typoword="Portuguese (3)"find="\bPort(?:gu|ug)ese\b"replace="Portuguese"/>
<Typoword="Portuguese (1)"find="\bortug(?:e+u?|ue+u)?se\b"replace="Portuguese"/>
<Typoword="Portuguese (2)"find="\bportug+u?eu?s+e?\b"replace="Portuguese"/>
<Typoword="Pridnestrovie"find="\bpridnestrovie\b"replace="Pridnestrovie"/>
<Typoword="Punjab(i)"find="\bpunjab(i)?\b"replace="Punjab$1"/>
<Typoword="Qatar"find="\bqu?atar(i)?\b"replace="Qatar$1"/>
<Typoword="Republic of China/Congo"find="\brepublic\s+of\s+(hina|ongo)\b"replace="Republic of C$1"/>
<Typoword="Republic of Korea"find="\brepublic\s+of\s+orea\b"replace="Republic of Korea"/>
<Typoword="Rio de Janeiro"find="\b()o\s+e\s+ane?i?e?ro?\b(?<!Ro de Janeiro)"replace="R$1o de Janeiro"/>
<Typoword="Romania"find="\bromania(ns?)?\b"replace="Romania$1"/>
<Typoword="Russia"find="\brus+ia(ns?)?\b"replace="Russia$1"/>
<Typoword="Rwanda"find="\brwanda(ns?)?\b"replace="Rwanda$1"/>
<Typoword="Saint Helena"find="\bsaint\s+elena\b"replace="Saint Helena"/>
<Typoword="Saint Kitts and Nevis"find="\bsaint\s+it+s\s+(?:nd|&)\s+evis\b"replace="Saint Kitts and Nevis"/>
<Typoword="Saint Lucia"find="\bsaint\s+ucia\b"replace="Saint Lucia"/>
<Typoword="Saint Pierre and Miquelon"find="\bsaint\s+ierre\s+and\s+iquelon\b"replace="Saint Pierre and Miquelon"/>
<Typoword="Saint Vincent and the Grenadines"find="\bsaint\s+incent\s+(?:nd|&)\s+the\s+renadines\b"replace="Saint Vincent and the Grenadines"/>
<Typoword="Samoa"find="\bsamoa(ns?)?\b"replace="Samoa$1"/>
<Typoword="San Marino"find="\ban\s+marino\b"replace="San Marino"/>
<Typoword="São Paulo"find="\b(?:ã\s+a|a\s+a|ão\s+(?:Pao|pa))lo\b"replace="São Paulo"/>
<Typoword="São Tomé and Príncipe"find="\bo\s+om\s+(?:nd|&)\s+rncipe\b"replace="São Tomé and Príncipe"/>
<Typoword="Sardinia"find="\bsardinia(ns?)?\b"replace="Sardinia$1"/>
<Typoword="Saud(i)"find="\bsaud(is?|s?)\b"replace="Saud$1"/>
<Typoword="Scandinavia"find="\b(?:scand|Scanda)navia(ns?)?\b"replace="Scandinavia$1"/>
<Typoword="Senegal"find="\bsengal(?<!(?:cacia|(?:enegalia|\.))\s+senegal)\b"replace="Senegal"/>
<Typoword="Senegalese"find="\bsengal+s?se\b"replace="Senegalese"/>
<Typoword="Serbia"find="\bserbia(ns?)?\b"replace="Serbia$1"/>
<Typoword="Sèvres"find="\bSvres\b"replace="Sèvres"/>
<Typoword="Seychelles"find="\bseychel+es\b"replace="Seychelles"/>
<Typoword="Sierra Leone"find="\bsier+a\s+eone(ans?)?\b"replace="Sierra Leone$1"/>
<Typoword="Sierra Leonese"find="\bsier+a\s+eones+e\b"replace="Sierra Leonese"/>
<Typoword="Singapore"find="\bsingap+or(ans?)?\b"replace="Singapore$1"/>
<Typoword="Slav(on)ic"find="\bslav(on)?ic\b"replace="Slav$1ic"/>
<Typoword="Slov(ak/en)ia"find="\bslov(ak|en)ia(ns?)?\b"replace="Slov$1ia$2"/>
<Typoword="Solomon Islands"find="\bolomon\s+islands\b"replace="Solomon Islands"/>
<Typoword="Somali(a/land)"find="\bsomali(a(?:ns?)?|land|s?)\b"replace="Somali$1"/>
<Typoword="South Africa"find="\bsouth\s+frica(ns?)?\b"replace="South Africa$1"/>
<Typoword="South Korea"find="\bsouth\s+orea(ns?)?\b"replace="South Korea$1"/>
<Typoword="South Ossetia"find="\bsouth\s+ssetia\b"replace="South Ossetia"/>
<Typoword="Spain"find="\bspa(in|ni(?:ards?|sh))\b"replace="Spa$1"/>
<Typoword="Sri Lanka"find="\bri\s*lanka(ns?)?\b"replace="Sri Lanka$1"/>
<Typoword="Sudan"find="\bsudan\b(?!\s+grass)"replace="Sudan"/><!--avoid sudan grass-->
<Typoword="Sudanese"find="\bsudan+es+e\b"replace="Sudanese"/>
<Typoword="Suriname"find="\bsuriname(rs?|se)?\b"replace="Suriname$1"/>
<Typoword="Svalbard"find="\bsvalbard\b"replace="Svalbard"/>
<Typoword="Swaziland"find="\bswaziland\b"replace="Swaziland"/>
<Typoword="Sweden"find="\bswed(en|ish)\b"replace="Swed$1"/>
<Typoword="Switzerland"find="\bswi(ss|tzerland)\b"replace="Swi$1"/>
<Typoword="Syria"find="\bsyria(ns?)?\b"replace="Syria$1"/>
<Typoword="Taiwan"find="\btaiwan(ese)?\b"replace="Taiwan$1"/>
<Typoword="Tajikistan"find="\btajikistan(is?|s?)\b"replace="Tajikistan$1"/>
<Typoword="Tanzania"find="\btanzania(ns?)?\b"replace="Tanzania$1"/>
<Typoword="Telangana"find="\b(?:tel|Tele)ngana\b"replace="Telangana"/>
<Typoword="Thailand"find="\bthailand\b"replace="Thailand"/>
<Typoword="Timor"find="\btimor(ians?|-Leste)?\b"replace="Timor$1"/>
<Typoword="Timor-Leste"find="\bTimor-leste\b"replace="Timor-Leste"/><!--timor-Leste covered in other Timor rule-->
<Typoword="Tobago"find="\btobag(ans?|o)\b"replace="Tobag$1"/>
<Typoword="Togan(s)"find="\btogan(s)?\b"replace="Togan$1"/><!--avoid "togo"; might mean "to go"-->
<Typoword="Tokelau"find="\btokelau\b"replace="Tokelau"/>
<Typoword="Tonga"find="\btonga(ns?)?\b"replace="Tonga$1"/>
<Typoword="Transnistria"find="\btransnistria(ns?)?\b"replace="Transnistria$1"/>
<Typoword="Trinidad"find="\btrin+idad(ians?)?\b"replace="Trinidad$1"/>
<Typoword="Tristan da Cunha"find="\bristan\s+a\s+cunha\b"replace="Tristan da Cunha"/>
<Typoword="Tunisia"find="\btunisia(ns?)?\b"replace="Tunisia$1"/>
<Typoword="Turk(men)istan"find="\btur(o?(?:mn)?)(estan|i(?:c|stan)|s?)\b"replace="Tur$1$2"/>
<Typoword="Turkish"find="\bturkis()\b"replace="Turkis$1"/>
<Typoword="Turks and Caicos Islands"find="\burks\s+and\s+aicos\s+islands\b"replace="Turks and Caicos Islands"/>
<Typoword="Tuvalu"find="\btuvalu(vians?)?\b"replace="Tuvalu$1"/>
<Typoword="Uganda"find="\buganda(ns?)?\b"replace="Uganda$1"/>
<Typoword="Ukraine"find="\b(?:Ukra|ukrai?)n(e|ians?)\b"replace="Ukrain$1"/>
<Typoword="United Arab Emirates"find="\bnited\s+rab\s+emirates\b"replace="United Arab Emirates"/>
<Typoword="Uruguay"find="\burugua(ans?)?\b"replace="Uruguay$1"/>
<Typoword="Uzbekistan (1)"find="\bzbekystan\b"replace="Uzbekistan"/>
<Typoword="Uzbekistan (2)"find="\bubeistan(is?|s?)\b"replace="Uzbekistan$1"/>
<Typoword="Vanuatu"find="\bvanuatu\b"replace="Vanuatu"/>
<Typoword="Vatican City"find="\batican\s+city\b"replace="Vatican City"/>
<Typoword="Venezuela"find="\bvenez+uel+a(ns?)?\b"replace="Venezuela$1"/>
<Typoword="Vietnam"find="\bviet\s*am\b"replace="Vietnam"/>
<Typoword="Vietnamese"find="\bvietnames+e\b"replace="Vietnamese"/>
<Typoword="Virgin Islands"find="\birgin\s+islands\b"replace="Virgin Islands"/>
<Typoword="Wallis and Futuna"find="\ballis\s+and\s+futuna\b"replace="Wallis and Futuna"/>
<Typoword="Western Sahara"find="\bwestern\s+sahara\b"replace="Western Sahara"/>
<Typoword="Württemberg"find="\bwrt+emberg\b"replace="Württemberg"/>
<Typoword="Yemen"find="\byem+en(i(?:s?|tes?))?\b"replace="Yemen$1"/>
<Typoword="Yugoslavia"find="\byugoslavia(ns?|s?)\b"replace="Yugoslavia$1"/>
<Typoword="Zambia"find="\bzambia(ns?|s?)\b"replace="Zambia$1"/>
<Typoword="Zimbabwe"find="\bzimbabw(ans?)?\b"replace="Zimbabwe$1"/>
Canada
<Typoword="Yukon Territory"find="\bukon\s+erritory\b"replace="Yukon Territory"/>
<Typoword="Yukon"find="\byukon\b"replace="Yukon"/>
<Typoword="British Columbia (2)"find="\british\s+Colombia\b"replace="British Columbia"/>
<Typoword="British Columbia (1)"find="\british?olumbia(n)?\b"replace="British Columbia$1"/>
<Typoword="Alberta"find="\balberta(ns?)?\b"replace="Alberta$1"/>
<Typoword="Saskatchewan"find="\bsaskatchewan(ians?)?\b"replace="Saskatchewan$1"/>
<Typoword="Manitoba"find="\bmanit+oba(ns?)?\b"replace="Manitoba$1"/>
<Typoword="Ontario"find="\bontari(ans?|o)\b"replace="Ontari$1"/>
<Typoword="Qu(e/é)bec"find="\bqu()bec(ers?|k(?:ers?|ois)|ois)"replace="Qu$1bec$2"/>
<Typoword="New Brunswick"find="\bew\s+runswicke(r)?\b"replace="New Brunswicke$1"/>
<Typoword="Nova Scotia"find="\bova\s+cotia(n)?\b"replace="Nova Scotia$1"/>
<Typoword="Prince Edward Island"find="\brince\s+dward\s+sland(er?s?|rs?|s?)\b"replace="Prince Edward Island$1"/>
<Typoword="Labrador"find="\blabrador(ans?)?\b"replace="Labrador$1"/>
<Typoword="Newfoundland"find="\bnewfoundland(ers?)?\b"replace="Newfoundland$1"/>
<Typoword="Klondike"find="\bklondike\b"replace="Klondike"/>
<Typoword="Montr(e/é)al"find="\bmontr()al(ers?)?\b"replace="Montr$1al$2"/>
<Typodisabled="Saskat(chewa/oo)n"find="\bsaskat(chewa|oo)n\b"replace="Saskat$1n"/><!--disabled due to multiple meanings-->
<Typoword="Toronto"find="\btoront(o(?:nians?)?)\b"replace="Toront$1"/>
<Typoword="Vancouver"find="\banco(?:ur)?ve(r(?:ites?)?)\b"replace="Vancouve$1"/>
<Typoword="Winnipeg"find="\bwin+peg\b"replace="Winnipeg"/>
France
<Typoword="Strasbourg"find="\b()trassbourg\b"replace="$1trasbourg"/>
United Kingdom
<Typoword="Britain_1"find="\b(?:br(?:it?|ri)?t(ains?|i(?:cisms?|sh(?:ers?|isms?|ly|ness)?)|ney|ons?|pop|tany))\b"replace="Brit$1"/>
<Typoword="Britain_2"find="\bristish(ers|ness)?\b"replace="British$1"/>
<Typoword="Engl(and/ish)"find="\b(?:eng?|En)l(and|ish(?:mn|womn)?)"replace="Engl$1"/>
<Typoword="Great Britain"find="\bgreat\s+ritain"replace="Great Britain"/>
<Typoword="Isle of Man"find="\bsle\s+of\s+man\b"replace="Isle of Man"/>
<Typoword="King's Lynn"find="\bKing?s Lynn\b"replace="King's Lynn"/>
<Typodisabled="Kingston upon Thames/Newcastle upon Tyne"find="\b(Kingston|Newcastle)(?:+(?:n+|Upon+)|-upon-)(hames|yne)\b"replace="$1 upon T$2"/><!--disabled for FPs per ]-->
<Typoword="Manx((wo)man)"find="\bmanx(mn|womn)?"replace="Manx$1"/>
<Typoword="Phillips (Andover/Exeter)"find="\bPhilipp?s\s+(Andover|Exeter)\b"replace="Phillips $1"/>
<Typodisabled="Poets' Corner"find="\bPoet(?:s?|s?) Corner\b"replace="Poets' Corner"/><!--disabled for FPs per ]-->
<Typoword="Scot(land/s/sman/swoman/tish)"find="\bscot?(lands?|s(?:mns?|womns?)?|tish)\b"replace="Scot$1"/><!--avoid scotch-->
<Typoword="Stoke-on-Trent"find="\bStoke(?:\s+n|-(?:On|on\s+))Trent\b"replace="Stoke-on-Trent"/>
<Typoword="Welsh"find="\bwelsh"replace="Welsh"/>
United States – states
<Typoword="Ala(bam/sk)a"find="\bala(bam|sk)(a(?!'')|ans?|ians?)\b(?<!\b\p{Lu}\.\s+alabama\b)"replace="Ala$1$2"/>
<Typoword="Arizona"find="\barizon(a(?:ns?)?|ians?)\b"replace="Arizon$1"/>
<Typoword="Arkansas"find="\barkans(an?s?)\b"replace="Arkans$1"/>
<Typoword="California (1)"find="\bal(?:fo(?:n?|nr?|r?)|if(?:or?|ron))ia(ns?|s?)\b"replace="California$1"/>
<Typoword="California (2)"find="\bcaliforni(a(?!'')n?s?)\b(?<!\b\p{Lu}\.\s+california\b)"replace="Californi$1"/><!--avoid species-->
<Typoword="Carolina"find="\bcarolin(an?s?)\b(?!'')(?<!\b\p{Lu}\.\s+carolin(an?s?))"replace="Carolin$1"/><!--avoid species-->
<Typoword="Colorado (1)"find="\bola?rad(ans?|o)\b"replace="Colorad$1"/>
<Typoword="Colorado (2)"find="\bcolorad(ans?|o)\b(?!'')(?<!\b\p{Lu}\.\s+colorad(?:ans?|o))"replace="Colorad$1"/><!--avoid species-->
<Typoword="Connecticut (1)"find="\bon(?:e(?:c(?:cicut+|icut*|t(?:cicut+|icut*))|icut*|t(?:cicut*|icut*))|n(?:e(?:c(?:cicut+|icut*|tc?icut+)|icut*|tc?icut*)|n+e(?:c(?:cicut+|icut*|t(?:cicut+|icut*))|icut*|tc?icut*)))t\b"replace="Connecticut"/>
<Typoword="Connecticut (2)"find="\b(con+|Con)ecticut\b"replace="Connecticut"/>
<Typoword="Delaware"find="\bdelawar(es?|ians?)\b(?!'')(?<!\b\p{Lu}\.\s+delawar(?:es?|ians?))"replace="Delawar$1"/><!--avoid species-->
<Typoword="Florida"find="\b(?:flori?di?|Flordi?)(a|ians?)\b(?!'')(?<!\b\p{Lu}\.\s+florid(?:a|ians?))"replace="Florid$1"/><!--avoid species-->
<Typoword="Guam"find="\bguam\b"replace="Guam"/>
<Typoword="Hawaii"find="\bhawaii(ans?)?\b"replace="Hawaii$1"/>
<Typoword="Idaho"find="\bidaho(ans?)?\b(?!'')(?<!\b\p{Lu}\.\s+idaho(?:ans?)?)"replace="Idaho$1"/><!--avoid species-->
<Typoword="Indiana(polis)"find="\bindian(a(?:(?!'')|ns?|polis)|ians?|town)\b(?<!\b\p{Lu}\.\s+indiana\b)"replace="Indian$1"/><!--avoid species-->
<Typoword="Iowa"find="\biow(a(?!'')n?s?)\b(?<!\b\p{Lu}\.\s+iowa\b)"replace="Iow$1"/><!--avoid species-->
<Typoword="Kansas"find="\bkansa(ns?|s)\b"replace="Kansa$1"/>
<Typoword="Kentucky"find="\bkentuck(ians?|y)\b"replace="Kentuck$1"/>
<Typoword="Louisiana (1)"find="\bou(?:isian|siani?)(a(?!\s+Knop)|ians?)\b"replace="Louisian$1"/><!--avoid Patricia Louisianna Knop-->
<Typoword="Louisiana (2)"find="\blouisian(a(?!'')|ans?)\b(?<!\b\p{Lu}\.\s+louisiana\b)"replace="Louisian$1"/><!--avoid species-->
<Typoword="Maine"find="\bmaine\b"replace="Maine"/>
<Typoword="Maryland"find="\bmaryland(ers?)?\b"replace="Maryland$1"/>
<Typoword="Massachusetts (2)"find="\bas(?:ch?u?s+et*|s(?:ac(?:h(?:s+et*|u(?:s(?:e(?:tt)?|s+et*)))|s+et*|us+et*)|ch?u?s+et*|s+(?:ac(?:hu?s+et*|h(?:s+et*|u(?:s(?:e(?:tt)?|s+et*)))|s+et*|us+et*)|ch?u?s+et*))|uch?u?s+et*)ts\b"replace="Massachusetts"/>
<Typoword="Massachusetts (1)"find="\b(?:massachusetts|(?:as+achus(?:e|set?)|asachuset?)ts+)(ans?)?\b"replace="Massachusetts$1"/>
<Typoword="Michigan (1)"find="\bichagan\b"replace="Michigan"/>
<Typoword="Michigan (2)"find="\bmichigan(ders?)?\b"replace="Michigan$1"/>
<Typoword="Minnesota (2)"find="\bin(?:e|n(?:i|n+e))sota(ns?)?\b"replace="Minnesota$1"/>
<Typoword="Minnesota (1)"find="\bminnesot(a(?!'')|ans?)\b(?<!\b\p{Lu}\.\s+minnesota\b)"replace="Minnesot$1"/><!--avoid species-->
<Typoword="Mississippi (2)"find="\bis(?:i(?:s+ip+)|s(?:is(?:ip+|sip(?:pp+)?|s+i(?:s+ip+))))i(ans?)?\b"replace="Mississippi$1"/>
<Typoword="Mississippi (1)"find="\b(?:mississippi(?!'')|is(?:issip|sis(?:ip|si))pi)(ans?)?\b(?<!\b\p{Lu}\.\s+mississippi\b)"replace="Mississippi$1"/><!--avoid species-->
<Typoword="Missouri (2)"find="\bisouri\b"replace="Missouri"/>
<Typoword="Missouri (1)"find="\bmissouri(ans?)?\b"replace="Missouri$1"/>
<Typoword="Montana"find="\bmontana(ns?)?\b(?!'')(?<!\b(\p{Lu}\.|Annona|Festuca)\s+montana(?:ns?)?)"replace="Montana$1"/><!--avoid species-->
<Typoword="Nebraska"find="\bnebraska(ns?)?\b"replace="Nebraska$1"/>
<Typoword="Nevada (1)"find="\beveda(ns?|s?)\b"replace="Nevada$1"/>
<Typoword="Nevada (2)"find="\bnevad(a(?!'')|ans?|ians?)\b(?<!\b\p{Lu}\.\s+nevada\b)"replace="Nevad$1"/><!--avoid species-->
<Typoword="New England_"find="\bew\s{0,9}ngland(rs?)?\b(?<!new\s{0,9}England\b|New\s+England(ers?)?)\b"replace="New England$1"/><!--avoid 'new England' & self match-->
<Typoword="New Jersey"find="\bnew\s*ersey(ites?)?\b"replace="New Jersey$1"/>
<Typoword="New Hampshire_"find="\bhampsh?ire\b"replace="Hampshire"/><!--avoid 'new => New', i.e. Hampshire UK-->
<Typoword="New Mexico_"find="\bew\s{0,9}exic(ans?|o)\b(?<!new\s{0,9}Mexicans?\b|New\s+Mexic(ans?\b|o\b))"replace="New Mexic$1"/><!--avoid 'new Mexican(s)' & self match-->
<Typoword="New Netherland"find="\bNew\s*etherlands\b"replace="New Netherland"/>
<Typoword="New York"find="\bnew\s*ork(ers?)?\b"replace="New York$1"/>
<Typoword="North Carolina/Dakota"find="\bnorth\s*(arolin|akot)a(ns?|s?)\b"replace="North $1a$2"/>
<Typoword="Ohio"find="\bohio(ans?)?\b"replace="Ohio$1"/>
<Typoword="Oklahoma"find="\boklahoma(?!'')(ns?)?\b(?<!\b\p{Lu}\.\s+oklahoma\b)"replace="Oklahoma$1"/><!--avoid species-->
<Typoword="Oregon"find="\boregon(?!'')(ians?)?\b(?<!\b\p{Lu}\.\s+oregon\b)"replace="Oregon$1"/><!--avoid species-->
<Typoword="Pennsylvania (1)"find="\ben(?:nsylvan|sylvan?)nia(ns?)?\b"replace="Pennsylvania$1"/>
<Typoword="Pennsylvania (2)"find="\bpennsylvania(?!'')(ns?)?\b(?<!\b\p{Lu}\.\s+pennsylvania\b)"replace="Pennsylvania$1"/><!--avoid species-->
<Typoword="Puerto Rico"find="\bpuerto\s+ric(ans?|o)\b"replace="Puerto Ric$1"/>
<Typoword="South Carolina/Dakota"find="\bsouth\s*(arolin|akot)a(ns?|s?)?\b"replace="South $1a$2"/>
<Typoword="Rhode Island"find="\b(?:Rhode\s*i|rhode\s*)sland(ers?)?\b"replace="Rhode Island$1"/>
<Typoword="Tennessee (2)"find="\ben(?:ess+e*|n(?:e(?:s(?:e+|s(?:ee+|s+e*))?)|n+es(?:e+|s+e*)?))(ans?|e)\b"replace="Tennesse$1"/>
<Typoword="Tennessee (1)"find="\btenn+ess+e(ans?|e)\b"replace="Tennesse$1"/>
<Typoword="Texas"find="\btexa(s(?!'')|ns?)\b(?<!\b\p{Lu}\.\s+texas\b)"replace="Texa$1"/><!--avoid species-->
<!--
combined in New additions section
<Typo word="United States (3)" find="\bUnited\s+Stated\b" replace="United States"/>
<Typo word="United States (1)" find="\bnited\s*states\b" replace="United States"/>
<Typo word="United States (2)" find="\bnitetates\b" replace="United States"/>
-->
<Typoword="Utah"find="\butah(?!'')(ans?)?\b(?<!\b\p{Lu}\.\s+utah\b)"replace="Utah$1"/><!--avoid species-->
<Typoword="Vermont"find="\bvermont(ers?)?\b"replace="Vermont$1"/>
<Typoword="Virginia_"find="\b(?:Vi|vir)gini?a(ns?)?\b(?!'')(?<!\b\p{Lu}\.\s+virginia(?:ns?)?)"replace="Virginia$1"/><!--avoid species-->
<Typoword="Washington"find="\bwashington(ians?)?\b"replace="Washington$1"/>
<Typoword="West Virginia"find="\bwest\s*irginia(ns?)?\b"replace="West Virginia$1"/>
<Typoword="Wyoming"find="\bwyoming\b"replace="Wyoming"/>
United States – cities
<Typoword="Albuquerque"find="\blb(?:aquerq|er?qu?erqu?|quequ|u(?:equerqu|que(?:erqu|qu|ru?q)))e\b"replace="Albuquerque"/>
<Typoword="Chicago"find="\bchicago(ans?)?\b"replace="Chicago$1"/>
<Typoword="Chattanooga"find="\bhat+no+ga(ns?|s?)\b(?!\.\w|-\w)(?<!Chattanooga(?:ns?|s?))"replace="Chattanooga$1"/>
<Typoword="Cincinnati"find="\bin+cn+at+(i(?:ans?)?|us)\b(?<!Cincinnat(?:i(?:ans?)?|us))"replace="Cincinnat$1"/>
<Typoword="Cleveland"find="\bcleveland\b(?<!cleveland)"replace="Cleveland"/>
<Typoword="Fort Worth"find="\bForth?\s+orth?\b(?<!Fort Worth)"replace="Fort Worth"/>
<Typoword="Las Vegas"find="\b(?:las\s*egas|Las\s*vegas)\b"replace="Las Vegas"/>
<Typoword="Los Angeles (1)"find="\b(?:as\s*nge?le?|s\s*ng(?:el|le))a?s\b"replace="Los Angeles"/>
<Typoword="Los Angeles (2)"find="\bos\s{0,9}ng(el|le)?se?\b(?<!Los Angeles)(?<!\be\s{0,9}os\s{0,9}ng(?:el?se?|le?se?))"replace="Los Angeles"/><!--avoid the common Spanish phrase "de los Angeles"-->
<Typoword="Louisville"find="\bLousivill+e\b"replace="Louisville"/>
<Typoword="Manhattan"find="\b()anhatten\b"replace="$1anhattan"/><!--avoid "manhattan"; can be lowercase-->
<Typoword="Milwaukee"find="\b(milw(?:au?|ua)|Milwu?a)kee\b"replace="Milwaukee"/>
<Typoword="New Orleans_"find="\bew\s*orleans\b"replace="New Orleans"/>
<Typoword="Phoenix,"find="\b((?:e(?:nix|o+nix)|oenix))\,\b"replace="Phoenix,"/><!--, added to avoid non place instances-->
<Typoword="Philadelphia"find="\b(?:Phil(?:ade(?:lp|ph)|delph|idelph)|phil(?:ade(?:lph?|ph)|delph|idelph))ia(ns?)?\b(?!'')"replace="Philadelphia$1"/><!--avoid bird names-->
<Typoword="Portland"find="\bportland(ers?)?\b"replace="Portland$1"/>
<Typoword="Springfield"find="\bspringfield\b"replace="Springfield"/>
<Typoword="Tallahassee"find="\bal(?:ahas+e+|lahas(?:e))\b"replace="Tallahassee"/>
<Typoword="Tucson"find="\b()uscon\b"replace="$1ucson"/>
<Typoword="Winston-Salem"find="\bWinston+all?em\b"replace="Winston-Salem"/>

Epochs, ages and dynasties

<Typoword="Abbassid"find="\babbassid(es?|s?)\b"replace="Abbassid$1"/>
<Typoword="Bronze Age"find="\b(?:bronze\s+|Bronze\s+a)ge(s)?\b"replace="Bronze Age$1"/>
<Typoword="Capet"find="\bcapet(ians?)?\b"replace="Capet$1"/>
<Typoword="Car(ol/lov)ingian"find="\bcar(lov|ol)ingian(s)?\b"replace="Car$1ingian$2"/>
<Typoword="Dark Ages"find="\b(?:dark\s+|Dark\s+a)ge(s)?(?<!(?:\ba\s+dark\s+age|(?:Big Bang#Dark Ages\s*\|osmic\s+|universe#Dark Ages\s*\|\s*)ark\s+ges))\b"replace="Dark Age$1"/><!--avoid generic dark age, ] & ] anchors, shortened for more generality-->
<Typoword="Edwardian"find="\bedwardian(s)?\b"replace="Edwardian$1"/>
<Typoword="Elizabeth(an)"find="\belizabeth(ans?)?\b"replace="Elizabeth$1"/>
<Typoword="Fatimid"find="\bfatim(ah?|i(?:ds?|tes?))\b"replace="Fatim$1"/>
<Typoword="Iron Age"find="\b(?:iron\s+|Iron\s+a)ge(s)?\b"replace="Iron Age$1"/>
<Typoword="Merovingian"find="\bmerovingian(s)?\b"replace="Merovingian$1"/>
<Typoword="Middle Ages"find="\b(?:midd?le\s+|Midd?le\s+a)ges\b"replace="Middle Ages"/>
<Typoword="Napoleon(ic) (2)"find="\b(?:napole|Napolea)n(ic)?\b"replace="Napoleon$1"/>
<Typoword="Norman"find="\bnorman(dy|s?)\b"replace="Norman$1"/>
<Typoword="Romano(v/ff)"find="\bromano(ffs?|vs?)\b"replace="Romano$1"/>
<Typoword="Sassanid"find="\bsassani(ans?|de?s?)\b"replace="Sassani$1"/>
<Typoword="Sel(juk/eucid)"find="\bsel(euc(?:ids?|us)|juk)\b"replace="Sel$1"/>
<Typoword="Stone Age"find="\bstone\s+ge(s)?\b"replace="Stone Age$1"/>
<Typoword="Stuart"find="\bstuart(s)?\b"replace="Stuart$1"/>
<Typoword="Tudor"find="\btudor(s)?\b"replace="Tudor$1"/>
<Typoword="Umayyad"find="\b(?:Omm?ayy?|Um(?:ay(?:|y)|mayy?))d(s)?\b(?<!Jabal ?Umayyid)"replace="Umayyad$1"/>
<Typoword="Valois"find="\bvalois\b"replace="Valois"/>
<Typoword="Victorian"find="\bvictorian()?\b(?<!\b\p{Lu}\.\s+victoriana)(?!'')"replace="Victorian$1"/><!--avoid species-->
<Typoword="Windsor"find="\bwindsor(s)?\b"replace="Windsor$1"/>

Calendrical proper nouns

<!--Month name errors-->
<Typoword="(Jan/Febr)uary"find="\b(Febr|Jan)(?:aur|u(?:a|ra?))\b"replace="$1uary"/>
<Typoword="January"find="\b(?:J(?:a(?:nur|un)|ua?nu)|j(?:a(?:nur?|un)|ua?nu))ar(ies|y)\b"replace="Januar$1"/>
<Typoword="February (1)"find="\beb(?:erua|r(?:a(?:ua)?|u(?:e|r)|ya)|ur?)r(ies|y)\b"replace="Februar$1"/>
<Typoword="February (2)"find="\beb(?:erua|r(?:a(?:ua)?|u(?:ar|e|r)|ya)|ur?)ri\b"replace="February"/>
<Typoword="February (3)"find="\b(?:fe|F(?:er|re))br?uar(s)?\b(?!\s+&\s+heavenly)(?<!Tommy\s+february)"replace="February$1"/>
<Typodisabled="March"find="\b(?\d)\s+march\b"replace="$1 March"/><!--part replaced by new rule, partly false positive 'a 2/4 march written']-->
<Typoword="April"find="\b(?:Ap(?:ir|r(?:ia)?|ti)|ap(?:ir|r(?:ia?)?|ti))l(s)?\b"replace="April$1"/>
<Typodisabled="May"find="\bmay\s+(\d{1,4})\b"replace="May $1"/><!--replaced by new rule-->
<Typoword="Ma(rch/y)"find="\bma(rch|y)\s+(\d{4}\D|\d?(?:,\s+\d{4}\D|\s+\d{4}\D|d\D|st\D|th\D))"replace="Ma$1 $2"/>
<Typoword="June/July"find="\bju(lys?|nes?)\b"replace="Ju$1"/>
<Typoword="August (1)"find="\b(\d?|)\s+(?:aug(?:as?|s)|Aug(?:as?|es))t\b"replace="$1 August"/>
<Typoword="August (2)"find="\b(?:aug(?:as?|s)|Aug(?:as?|es))t\s+(\d{4}\D|(?:|\d?|3?)(?:,\s+\d{4}\D|\s\d{4}\D|d\D|st\D|th\D))"replace="August $1"/>
<Typoword="August (3)"find="\b()ugu(?:as?|es)t\b"replace="$1ugust"/>
<Typoword="September"find="\b(?:se(?:mp?temb|pte(?:m(?:eb|)|nb|rmb)?)|Se(?:mp?temb|pte(?:m(?:eb|p)|nb|rmb)?))er(s)?\b"replace="September$1"/>
<Typoword="October"find="\b(?:octo(?:b|rb|v)|Octo(?:rb|v))er(s)?\b"replace="October$1"/>
<Typoword="November"find="\b(?:N(?:ov(?:e(?:me|n|rm)|me)|oem)|n(?:ov(?:e(?:me?|n|rm)|me)|oem))ber(s)?\b"replace="November$1"/>
<Typoword="December"find="\b(?:D(?:e(?:bem|c(?:e(?:mem?|n|rm)|me)|em)|isem)|d(?:e(?:bem|c(?:e(?:me?m?|n|rm)|me)|em)|isem))ber(s)?\b"replace="December$1"/>
<!--Day name errors-->
<Typoword="Sunday"find="\bsnday(s)?\b"replace="Sunday$1"/>
<Typoword="Monday"find="\bmnday(s)?\b"replace="Monday$1"/>
<Typoword="Tuesday"find="\beusday(s)?\b"replace="Tuesday$1"/>
<Typoword="T(ue/hur)sday"find="\bt(ur|e)sday(s)?\b"replace="T$1sday$2"/>
<Typoword="Wednesday"find="\b(?:We(?:d(?:esd|nessd)|nd?e?sd?)|we(?:d(?:esd|ness?d)|nd?e?sd?))ay(s)?\b"replace="Wednesday$1"/>
<Typoword="Thursday"find="\bhrusday(s)?\b"replace="Thursday$1"/>
<Typoword="Friday"find="\bfriday(s)?\b"replace="Friday$1"/>
<Typoword="Saturday"find="\b(?:Sate?|sat)rday(s)?\b"replace="Saturday$1"/>
<!--Special days-->
<Typoword="Michaelmas"find="\bmich*lmas+\b"replace="Michaelmas"/>
<Typoword="Easter"find="\beaster(?!\s+egg)(?<!(?:or+|(?:ar|ear)+)easter)\b"replace="Easter"/><!--see also: "near/far eastern"-->

Miscellaneous proper nouns

<Typoword="(1911|Edinburgh) Encyclopædia"find="\b(1911|Edinburgh)\s+ncyclop(?:ae|e?)dia\b"replace="$1 Encyclopædia"/>
<Typoword="AC/DC"find="\b-\b"replace="AC/DC"/>
<Typoword="Adams–Onís Treaty"find="\bAdams-On(?:s\s+|nís\s+t)reaty\b"replace="Adams–Onís Treaty"/>
<Typoword="Anglican"find="\banglican(ism|s?)\b"replace="Anglican$1"/>
<Typoword="Anjelica Huston"find="\bAn(?:gelica\s+o?|jelica\s+o)uston\b"replace="Anjelica Huston"/>
<Typoword="Apostles' Creed"find="\bApostle(?:s?|s?)\s+Creed\b"replace="Apostles' Creed"/>
<Typoword="B'nai B'rith"find="\bB(?:ai\s+B?|Nai\s+B?|nai\s+B?|ai\s+B?)rith\b(?<!B'nai B'rith)"replace="B'nai B'rith"/>
<Typoword="Baptist_"find="\bbaptist(\s+(?:Church|c(?:hurch|ollege)|minister|preacher|school|university)s?|(?<=John\s{1,9}he\s{1,9}baptist))\b"replace="Baptist$1"/><!--avoid FPs via look around for key terms-->
<Typoword="Barack Obama"find="\bBar(?:a|r+ack)\s*Obama\b"replace="Barack Obama"/>
<Typoword="Barbra Streisand"find="\barbra\s+tr?ie?sand\b"replace="Barbra Streisand"/>
<Typoword="Benny Andersson"find="\benny\s+nderson\b"replace="Benny Andersson"/>
<Typoword="Billie Holiday"find="\bBill(?:ie\s+Hol|y\s+Hol?)liday\b"replace="Billie Holiday"/>
<Typoword="Bone Thugs-n-Harmony"find="\bBone\s+Thugs(?:\s+(?:nd|)\s+|-N-)Harmony\b"replace="Bone Thugs-n-Harmony"/>
<Typoword="Boyz II Men"find="\bBoy(?:s\s+(?:II|2|to|11)|z\s+(?:2|to|11))\s+Men\b"replace="Boyz II Men"/>
<Typoword="Britannica Online"find="\brit(?:an(?:ic*|n+ic)|tan+ic*)ca+\s+nline\b"replace="Britannica Online"/>
<Typoword="Bryan Ferry"find="\brian\s+erry\b"replace="Bryan Ferry"/>
<Typoword="Björn Ulvaeus"find="\bjorn\s+lvaeus\b"replace="Björn Ulvaeus"/>
<Typoword="Calvinism (1)"find="\balvanis(m|ts?)\b"replace="Calvinis$1"/>
<Typoword="Calvinism (2)"find="\bcalvinis(*)\b"replace="Calvinis$1"/>
<Typoword="Carl Philipp Emanuel Bach"find="\b(?:Carl\s+(?:Phil(?:lipp?\s+Em(?:an(?:nuell?|uell?)|man(?:nuell?|uell?))|ip(?:\s+Em(?:an(?:nuell?|uell?)|man(?:nuell?|uell?))|p\s+Em(?:an(?:nuell?|uell)|man(?:nuell?|uell?)))))|Karl\s+Phill?ipp?\s+Emm?ann?uell?)\s+Bach\b"replace="Carl Philipp Emanuel Bach"/>
<Typoword="Christ(mas/ian_/endom/)"find="(?!\bCristian\b)\b(?:christ|(?:hirst|hris(?=\w)|hrsit|rist))(ian(?:dom|ity|i(?:ation|e?|ing)|sted)|endom|mas(?:days?|es|sy|ties?|y?))\b"replace="Christ$1"/>
<Typoword="Cecil B. DeMille"find="\bCecil\s+B\.\s+(?:de\s?|De(?:m|\s+))ille\b"replace="Cecil B. DeMille"/>
<Typoword="Commedia dell'arte"find="\b()om+edia\s*el+*\s*?rte?\b(?<!ommedia dell'arte)"replace="$1ommedia dell'arte"/>
<Typoword="Danny DeVito"find="\bDanny\s+(?:de\s?|De(?:v|\s+))ito\b"replace="Danny DeVito"/>
<Typoword="Daphne du Maurier"find="\bDaphne\s+Du\s*aurier\b"replace="Daphne du Maurier"/>
<Typoword="Day-Lewis"find="\b(C(?:ecil|\.?)|Daniel)\s+Day\s+Lewis\b"replace="$1 Day-Lewis"/>
<Typoword="Dom DeLuise"find="\bom\s+(?:de\s?|De(?:l|\s))o?uise\b"replace="Dom DeLuise"/>
<Typoword="Edmund Hillary"find="\bEdmund\s+Hilary\b"replace="Edmund Hillary"/>
<Typoword="Ellen DeGeneres"find="\bllen\s+\s?geners\b"replace="Ellen DeGeneres"/>
<Typoword="Erroll Garner"find="\brrol\s+arner\b"replace="Erroll Garner"/>
<Typoword="Francisco"find="\bran(?:cics|si(?:cs|sc))(ans?|o)\b"replace="Francisc$1"/>
<Typoword="Franco"find="\bfranco\b"replace="Franco"/>
<Typoword="Frank De Vol"find="\bFrank\s+(?:de\s?|De(?:|\s+v))ol\b"replace="Frank De Vol"/>
<Typoword="Frederick Law Olmsted"find="\brederick\s+aw\s+lmstead\b"replace="Frederick Law Olmsted"/>
<Typoword="Gene de Paul"find="\bGene\s+(?:De\s?|de(?:|\s+p))aul\b"replace="Gene de Paul"/>
<Typoword="Genghis Khan"find="\bG(?:hngh?i?\s+h?ah?n?|ingh?i?\s+h?ah?n?|eng(?:hi(?:s\s+(?:kh?ah?n?|K(?:ah?n?|ha(?:hn?)?))|z\s+h?ah?n?|\s+h?ah?n?)|i?\s+h?ah?n?))\b"replace="Genghis Khan"/>
<Typoword="Giuseppe"find="\buiseppe\s+(Anselmi|Garibaldi|Peano|Tartini|Verdi)\b"replace="Giuseppe $1"/>
<Typoword="Glenn Miller"find="\blen\s+iller\b"replace="Glenn Miller"/>
<Typoword="Gregg Allman"find="\bGreg\s+Allman\b"replace="Gregg Allman"/>
<Typoword="Guns N' Roses"find="\bGuns(?:(?:&|(?:n?|N)|n?|N)|(?:n?|N)|n?|N|&)?Roses\b"replace="Guns N' Roses"/>
<Typoword="Hans Christian Andersen"find="\bans?\s+hristian\s+ndersn\b"replace="Hans Christian Andersen"/>
<Typoword="Harold Macmillan"find="\barold\s+MacMillan\b"replace="Harold Macmillan"/>
<Typoword="Hilary"find="\bHillary\s+(Duff|Swank)\b"replace="Hilary $1"/>
<Typoword="Hillary Clinton"find="\bHilary(\s+R(?:odham|\.))?\s+Clintn\b"replace="Hillary$1 Clinton"/>
<Typoword="Humphrey Lyttelton"find="\bumphrey\s+ytt+leton\b"replace="Humphrey Lyttelton"/>
<Typodisabled="Internet"find="\binternet\b"replace="Internet"/><!--disabled; see talk page-->
<Typoword="Jean-Claude Van Damme"find="\bJean(?:\s+Claude\s+|-Claude v)an Damme\b"replace="Jean-Claude Van Damme"/>
<Typoword="King Philip's War"find="\bKing\s+Phil(?:lip?s |ip(?:s |'s w|s ))ar\b"replace="King Philip's War"/>
<Typoword="Kirsty MacColl"find="\bKirsty\s+M(?:acc|c?)oll\b"replace="Kirsty MacColl"/>
<Typoword="Leonardo da Vinci"find="\bLeonardo\s+(?:D\s?|d(?:a(?:|\s+v)|e\s+))inci\b"replace="Leonardo da Vinci"/>
<Typoword="Leonardo DiCaprio"find="\bLeonardo\s+(?:d\s?|D(?:e\s?|i(?:c|\s+)))aprio\b"replace="Leonardo DiCaprio"/>
<Typoword="Liv Ullmann"find="\bLiv\s+Ull?man\b"replace="Liv Ullmann"/>
<Typoword="Liza Minnelli"find="\bLiza\s+Minelli\b"replace="Liza Minnelli"/>
<Typoword="Ludwig van Beethoven"find="\bLud(?:vig\s+|wig\s+(?:V|vo))n\s+Beethoven\b"replace="Ludwig van Beethoven"/>
<Typoword="Lutheran"find="\but(?:er(?:a|ia)|heria)n(ism|s?)\b"replace="Lutheran$1"/>
<Typoword="MacMillan"find="\b(James|Kenneth)\s+acmillan\b"replace="$1 MacMillan"/>
<Typoword="Marxism–Leninism"find="\barxis()-eninis()\b"replace="Marxis$1–Leninis$2"/>
<Typoword="McCune–Reischauer"find="\bMcune-Reischauer\b"replace="McCune–Reischauer"/>
<Typoword="Methodist"find="\bmethodis(m|t(?:ic|s?))\b"replace="Methodis$1"/>
<Typoword="Metallica"find="\bet+al+ica\b"replace="Metallica"/>
<Typoword="Molière"find="\boliere\b"replace="Molière"/>
<Typoword="Mormon"find="\bmormon(ism|s?)\b"replace="Mormon$1"/>
<Typoword="Mötley Crüe"find="\botley\s+rue\b"replace="Mötley Crüe"/>
<Typoword="Muhammad etc."find="\bm(oham+(?:ans?)?|uham+(?:ans?)?)\b"replace="M$1"/>
<Typoword="Muhammad Ali"find="\bMuhammd\s+Ali\b(?!\s+)"replace="Muhammad Ali"/><!--avoid Muhammed Ali Bedir, etc.-->
<Typoword="Muslim/Moslem"find="\bm(osle|usli)m(s)?\b"replace="M$1m$2"/>
<Typoword="Peasants' Revolt"find="\bPeasant(?:s?|s?)\s+Revolt\b"replace="Peasants' Revolt"/>
<Typoword="Pentecost"find="\b(?:p(?:ent)|Penta)cost(al(?:ism|s?)|s?)\b"replace="Pentecost$1"/>
<Typoword="Presbyterian"find="\bresbytarian(ism|s?)\b"replace="Presbyterian$1"/>
<Typoword="Qur'an"find="\bQ(?:or?a??(?:|aa?)|u(?:or?a??(?:|aa?)|ra?(?:|aa?)|r(?:a(?:|aa?)|ra?(?:|aa?)|ra?(?:|aa?)|'(?:|aa))))n(ic)?\b"replace="Qur'an$1"/><!--avoid Qaran-->
<Typoword="Phillip ..."find="\bhilip\s+(Noyce|Schofield|Whitehead)\b"replace="Phillip $1"/>
<Typoword="Ramsay MacDonald"find="\bRams(?:ay\s+M(?:acdonald|conald)|ey\s+M(?:acdonald|conald)|ey\s+MacDonald)\b"replace="Ramsay MacDonald"/>
<Typoword="Robert De Niro"find="\bRobert\s+(?:de\s?|De(?:|\s+n))iro\b"replace="Robert De Niro"/>
<Typoword="Rodgers and"find="\bRogers\s+(?:nd|&)\s+Ha(mmerstein|rt)\b"replace="Rodgers and Ha$1"/>
<Typoword="Sam Elliott"find="\bSam\s+Elliot\b"replace="Sam Elliott"/>
<Typoword="Scarlett Johansson"find="\bScarlet(?:t\s+Johan(?:nss?|s(?:|se))|\s+Johann?ss?)n\b"replace="Scarlett Johansson"/>
<Typoword="Schuylkill"find="\bSchuy+kl?ll\b"replace="Schuylkill"/>
<Typoword="Shane MacGowan"find="\bShane\s+M(?:acg|c)owan\b"replace="Shane MacGowan"/>
<Typoword="Shelley Winters"find="\bhelly\s+inters\b"replace="Shelley Winters"/>
<Typoword="SpongeBob"find="\bponge(?:-|b|\s+B)ob\b"replace="SpongeBob"/>
<Typoword="SquarePants"find="\bquare(?:-|p|\s+P)ants\b"replace="SquarePants"/>
<Typoword="Terence Stamp"find="\bTerrence\s+Stamp\b"replace="Terence Stamp"/>
<Typoword="Tess of the d'Urbervilles"find="\bTess\s+of\s+the\s+(?:D?r?ber?|d(?:(?:ur?ber?|U(?:ber?|rbe))|ur?ber?|U(?:ber?|rbe)))villes\b"replace="Tess of the d'Urbervilles"/>
<Typoword="Thomas De Quincey"find="\bThomas\s+(?:de\s*Quince?|De(?:Quince?|\s+Quinc))y\b"replace="Thomas De Quincey"/>
<Typoword="TV_"find="\bv\b(?<!(\|(?:\s|)|WE\s)tv)(?!*\.\w)(?<!\.{0,999})"replace="TV"/><!--avoid WE tv and domains-->
<Typoword="Walter de la Mare"find="\balter\s+(?:De\s?|de\s?L)a\s?are\b"replace="Walter de la Mare"/>
<Typoword="War of Jenkins' Ear"find="\bWar\s+of\s+enkin(?:s|s?)\s+Ear\b"replace="War of Jenkins' Ear"/>
<Typoword="Warren Buffett"find="\bWarr?en\s+(E\.\s+)?Buf(?:et|fe)t\b"replace="Warren $1Buffett"/>
<Typoword="Wade–Giles"find="\bWade-Giles\b"replace="Wade–Giles"/>
<Typoword="Years' War"find="\b(Nine|S(?:even|ixty)|T(?:en|hirt(?:een|y))|Eighty|Hundred)\s+(?:year?s?\s+|Year(?:s? |s(?:\s+|'\s+w|\s+)))ar\b"replace="$1 Years' War"/>

Other capitalisation

<Typoword="A ... church"find="\b(n?)\s+(Anglican|Baptist|C(?:atholic|hristian)|catholic|Lutheran|M(?:ethodist|ormon)|Protestant|Roman\s+atholic)\s+Church\b"replace="$1 $2 church"/>
<Typoword="senior advisor"find="\b()\s+Senior\s+dvisor\b"replace="$1 senior advisor"/>

Grammar

Articles

<Typoword="A …"find="\b(?<!)()n\s+(u+|Ukrain+|(n(?:anim+|i(?:form|later+|on|que*|t(?:ed|y?)|vers+))|ra+|s(?:e(?:ful|r)|ual)|til+)(?:ly)?)(?<!Euler{0,99})\b"replace="$1 $2"/><!--avoid Xi'an-->
<Typoword="A h-"find="\b(?<!)()n\s+(?<!(?:\]\]|⌊)an\s)h(a(?:lf|dy?|t)|t|e(?:a(?:d|vy)|lp)*|igh*|o(?:ax|mo?e*|use)|u(?:ge|man))\b(?<!\]an\b)"replace="$1 h$2"/><!--avoid  ]an higher..., Xi'a high etc.-->
<Typoword="An h-"find="\b()\s+h(eir(?:ess|loom)?|our(?:ly)?|on(?:est|ou?r(?:a(?:bl|ry))?))\b"replace="$1n h$2"/>
<Typoword="An 8th/11th/18th"find="\b(?<!)()\s+(8|1)th()"replace="$1n $2th$3"/>

Contractions

<Typoword="(C/Sh/W)ouldn't"find="\b(|h)ou(dln?|ldn?t)t\b"replace="$1ouldn't"/>
<Typoword="(H/Sh/W)e'(d/ll/s)"find="\b(|)e(|ll)\b"replace="$1e'$2"/>
<Typoword="(T/W)Here'(d/ll/s/ve)"find="\b(|h)ere(|ll|ve)\b"replace="$1ere'$2"/>
<Typoword="I(t)'(d/m/s/ll)"find="\b(t?)(|ll)\b"replace="$1'$2"/>
<Typoword="Its (after)"find="\b(?=it)(?<=\b(?:(?:bove|ong(?:st)?|r(?:e|ound)|t)|(?:e(?:low|tween|yond)?|oth|y)|elebrat(?:e?|ing)|uring|rom|ld|n(?:to)?|eep|ade|(?:f|n(?:to)?|ver)|(?:hrough(?:out)?|o)|(?:nder(?:neath)?|p(?:on)?)|ith(?:in|out)?)\s+)its\b"replace="its"/><!--cheapened expensive beginning-->
<Typoword="Its (after)"find="\b(?=it)(?<=\b(?:(?:bove|ong(?:st)?|r(?:e|ound)|t)|(?:e(?:low|tween|yond)?|oth|y)|elebrat(?:e?|ing)|uring|rom|ld|n(?:to)?|eep|ade|(?:f|n(?:to)?|ver)|(?:hrough(?:out)?|o)|(?:nder(?:neath)?|p(?:on)?)|ith(?:in|out)?)\s+)its\b"replace="its"/>
<Typoword="Its (before)"find="\b()t(?:s|s)\s+(apex|-side|causes?|do(?:ors|wnfall)|founders?|history|inceptions?|o(?:rigins?|wn)|p(?:innacle|olicies)|r(?:ange|e(?:asons?|lease))|zenith)\b"replace="$1ts $2"/>
<Typoword="-en't"find="\b(r|av|er)nt\b"replace="$1en't"/>
<Typoword="-n't (2)"find="\b(are|ould|(?:id|oes)|a(|ve)|hould|(?:as|ere|ould))nt\b"replace="$1n't"/><!--avoid Arent, cant, wont, "Don't" (rule exists)-->
<Typoword="-n't (1)"find="\b(are|(?:a|ould)|(?:id|o(?:es)?)|a(?:|ve)|hould|(?:as|ere|o(?:uld)?))(?:n|n)t\b"replace="$1n't"/>
<Typoword="there's"find="\bthere?s\b"replace="there's"/><!--avoid place name Theres-->
<Typoword="They'll"find="\b()(?:ehy|hey|yhe)(?:ll|l+)\b"replace="$1hey'll"/>
<Typoword="They'(r/v)e"find="\b()hey?()e?\b"replace="$1hey'$2e"/>
<Typoword="Weren't"find="\b()er?n?t\b"replace="$1eren't"/>
<Typoword="Wh(at/en/o/y)'(d/ll/re/s/ve)"find="\b()h(at|en|)(|ll|e)\b"replace="$1h$2'$3"/>
<Typoword="Y'all"find="\b()all\b"replace="$1'all"/>

Joined words

<Typoword="(Left/Right) field"find="\b(left|ight)f(?:ei|ie)ld(ers?)?\b"replace="$1 field$2"/>
<Typoword="More/Less/etc. than_"find="(?=then)(?<=\b(?:(?:etter|igger|raver)|reater|igher|ore|(?:arger|ess|o(?:nger|wer))|lesser|lder|ather|(?:horter|ma(?:ller|rter))|(?:aller|hi(?:cker|nner))|orse|ounger)\s+)then\s+(?!than\b)"replace="than "/><!--avoid ends of sentences, e.g., "Life was better then."; too many false positives for "other then"; cheapened expensive beginning-->
<Typoword="A unique"find="\b()n\s+unique(ly)?\b"replace="$1 unique$2"/>
<Typoword="As well"find="\baswell\b"replace="as well"/>
<Typoword="At least"find="\b()tleast\b"replace="$1t least"/>
<Typoword="Close by"find="\b()lose?by\b"replace="$1lose by"/>
<Typoword="In (fact/the/some/many/any/spite/particular/between)"find="\b()n(any|between|fact|many|particular|s(?:ome|pite)|them?)\b"replace="$1n $2"/>
<Typoword="(Crime/Drug) lord"find="\b(rime|rug)?lord(s)?\b"replace="$1 lord$2"/>
<Typoword="Other hand"find="\b()therhand\b"replace="$1ther hand"/>
<Typoword="Since then"find="\b()ince\s+than\b"replace="$1ince then"/>
<Typoword="Super Bowl"find="\buper?owl(s)?\b"replace="Super Bowl$1"/>
<Typoword="Vice versa"find="\b()is(?:|-a)*versa\b"replace="$1ice versa"/>

Duplicated words

<Typoword="it is"find="\b()t\s+it\b"replace="$1t is"/>
<Typoword="Duplicated words"find="\b(a(?:?|nd?|re)|b(?:e(?:come)?|y)|could|d(?:id|o)|f(?:or|rom)|go|h(?:a(?:s|ve)|e|im|ow)|is?|m(?:ade|e|ore)|no|o(?:|ther)|sh(?:e|ould)|t(?:h(?:e(?:ir|?|se)|s)|o)|w(?:as|ere|h(?:at|e(?:n|re)|i(?:ch|le)|om?|y)ith|ould)|is\s+a)\s{1,5}\1\b(?!-)"replace="$1"/><!--avoid "in", per talk in Archive 3; skip if 2nd word is a hypenated, eg. for for-profit-->

Preposition usage

<Typoword="Comprises"find="\b()omprises\s+of\b"replace="$1omprises"/>

Punctuation

<Typoword="'s"find="(?<=\w)s\b(?<!'\ws|&{1,99};s)"replace="'s"/><!--semicolon or apostrophe-like symbols for apostrophe; avoid potential wiki markup, and "&xxx;" (HTML entities), use straight quotes per ]-->
<Typoword="Hers/Ours/Theirs/Yours"find="\b(e|u|hei|ou)rs\b"replace="$1rs"/>
<Typoword="e.g."find="\b(\.g)()"replace="$1.$2"/>
<Typoword="e.g."find="\b()(?:g\.?|\.\s*g)(|'')(?!River|veit|White)"replace="$1.g.$2"/>

Spacing and hyphens

<Typoword="so-called_"find="\bso\s+called\b(?<=\b(?:|by|(?:er|is)|of|he(?:ir|se)?|his)\s+so\s+called)"replace="so-called"/><!--avoid variants of "it is so called because"-->

Other grammar

<Typoword="who has been"find="\bwhose\s+been\b"replace="who has been"/>

General rules

These have to come last, so that special cases (which these might transform into an unanticipated error) get treated first.

<Typodisabled="Triple letters"find="(?!\b(?:Eisschnelllauf|rrrl?|Killlai|ooh|Pyarrrl?|sssf|+()\1\1\1*|+)\b)\b(*|+)()\3\3(+)\b"replace="$2$3$3$4"/><!--Replace triple letters within a word (except h, x, i) with double letters; avoid some exceptions, quadruple letters, hexadecimal colours like #ccc, Roman numerals iii, web www.-->

Beginnings

<Typoword="Ac-"find="\b()cc+(hiev|oustic|r(?:imon|onym)|t(?:iv|ual)|u(?:punctur|te))(*)\b"replace="$1c$2$3"/>
<Typoword="Acc-"find="\b(|na)c(?:cc+)?(e(?:pt*|ss*)|ident*|omp(?:an(?:ie|y)|lish*)|o(?:rd+|unt*)|ura+)\b"replace="$1cc$2"/>
<Typoword="(Re)Acqu-"find="\b(|ea)(?:cc+|d?)qu(aint*|ir*|isiti(?:ons?|ve)|it(?:s?|t(?:als?|ed|ing)))\b(?<!Aquiris)"replace="$1cqu$2"/><!--avoid Aquiris-->
<Typoword="Add-"find="\b(|ona)d(?:dd+)?(ic?ti*|ress*)\b"replace="$1dd$2"/>
<Typoword="Aero-"find="\b()reo(bics?|d(?:romes?|ynamic(?:al*|s?))|mechanic(?:al*|s?)|nautic(?:al*|s?)|planes?|s(?:ols?|pace))\b"replace="$1ero$2"/>
<Typoword="Aff-"find="\b()f(?:ff)?((?:e|li)ct(?:ed|i(?:ng|on))?s?|iliat*|init(?:ies|y)|irmati+|luen(?:ce|t(?:ly)?))\b"replace="$1ff$2"/>
<Typoword="After-"find="\b()f(?:e|te)(maths?|noons?|wards?)\b"replace="$1fter$2"/>
<Typoword="Al-"find="\b()ll+(beit|most|ong|ready|t(?:hough|ogether)|(?<!All)ways)\b"replace="$1l$2"/><!--avoid Allways-->
<Typoword="Alle-"find="\b()le(g(?:e(?:d(?:ly)?|s?)|i(?:ances?|ng)|or(?:i*|y))|viat(?:e?|i(?:ng|on)|or))\b"replace="$1lle$2"/>
<Typoword="Allo-"find="\b()lo(ct|morph|p(?:ath|hon)|trop|w)(a(?:bl|nces?)|?|e?|i(?:cs?|es|ng|on)|ments?|y)\b"replace="$1llo$2$3"/>
<Typoword="Allu-"find="\b()lu((?:e?|ing(?:ly)?|ments?)|s(?:i(?:ons?|ve(?:ly)?)|ory))\b(?<!Alured)(?!\s+chinia)"replace="$1llu$2"/><!--avoid species-->
<Typoword="Am-"find="\b(|na)mm+(ass*|en(?:d*|it*)|ong(?:st)?|ount*|us(?:e(?:?|ments?)|ing))\b(?<!Ammendola|'mmassa)"replace="$1m$2"/><!--avoid 'mmassa, Ammendola-->
<Typoword="Amphi-"find="\b()mp(?:h|ih?)(bi(?:ans?|ous(?:ly)?)|theat(?:ers?|res?))\b"replace="$1mphi$2"/>
<Typoword="Ann-"find="\b()n(i(?:hilat+|versar+)|ounc*|u(?:al(?:ly|s?)|l(?:ar|l(?:ed|ing)|s?)))\b(?<!\bniversario)"replace="$1nn$2"/>
<Typoword="Ap-"find="\b()pp+(art(?:ments?)?|titudes?)\b"replace="$1p$2"/>
<Typoword="App-"find="\b(|isa)p(all(?:ed|ing*|s?)|are(?:l|nt(?:ly)?)|aritions?|e(?:a*|llat+|nd*)|l(?:i*|y)|oint(?:ed|ing|ments?|s?)|r(?:ehen*|oach*)|rov(?:als?|e?|ing*))\b(?<!plicada)"replace="$1pp$2"/><!--avoid French word (A/a)plicada/>-->
<Typoword="Aqua-"find="\b()cqua(ri(?:an?s?|um?s?)|tics?)\b"replace="$1qua$2"/>
<Typoword="Arr-"find="\b(|ea)r(ang(?:e(?:?|ments?)|ing)|iv(?:als?|e?|ing))\b"replace="$1rr$2"/>
<Typoword="Att-"find="(?!\bAtack\b)\b(|na)t(a(?:ck(?:es?|ings?|s?)|in(?:able|ed|ing|ment)?s?)|orneys?|r(?:ac|ibu)t(?:ed?|i(?:ng|on|ve)|or)?s?)\b"replace="$1tt$2"/><!--avoid surname Atack-->
<Typoword="Ball-"find="\b()al(istic(?:ally|ian|s?)|oon(?!\s+Yoka)(?:ed|i(?:ng|st)|s?))\b"replace="$1all$2"/>
<Typoword="Biblio-"find="\b()ibi?l(graph+|th?eques?)\b"replace="$1iblio$2"/>
<Typoword="Canoni-"find="\b()annoni(cal(?:ly|s?)|sts?|z(?:ations?|e?|ing))\b"replace="$1anoni$2"/>
<Typoword="Chair-"find="\b()hari(lifts?|mn(?:ships?)?|persons?|womn(?:ships?)?)\b"replace="$1hair$2"/>
<Typoword="(Dis)Colour-"find="\b(|isc)olou(*)\b"replace="$1olour$2"/><!--avoid Coloumb & Colouz Uv Sound-->
<Typoword="Corr-"find="\b()or(e(?:ct*|spond*)|osi(?:ons?|ve*))\b(?<!orectomy)"replace="$1orr$2"/><!--corectomy -->
<Typoword="Diphth-"find="\b()ip(?:ht|th)(eria|ongs?)\b"replace="$1iphth$2"/>
<Typoword="(In)Def-"find="\b(|nd)eff(en(?:c*|d(?<!\bdu\s+effend)*|s*)|ici(?:en+|t+)|init*)\b"replace="$1ef$2"/><!--avoid du deffend-->
<Typoword="Desp-"find="\b()isp(air*|i(?:cabl|s(?:eds?|ing)|te)|onden+)\b"replace="$1esp$2"/>
<Typoword="Dis-"find="\b()(?:e|is)s(a(?:gree*|ppear*|rray*)|ease*|integrat+|miss*|o(?:bedien+|r(?:der*|ien+)))\b"replace="$1is$2"/>
<Typoword="Diss-"find="\b()is(atisf+|olution*|olv(?:e?|ing)|uad*)\b"replace="$1iss$2"/>
<Typoword="Disse-"find="\b()ise(ct|m(?:bl|inat)|n(?:sion|t)|r(?:t(?:at)?|v(?:ic)?)|ver)(?|e(?:?|rs?)|i(?:ng|ons?)|ors?)\b"replace="$1isse$2$3"/>
<Typoword="Dissi-"find="\b()isi(|m|s|t)(+)\b"replace="$1issi$2$3"/><!--avoid disidentification, disillusion, Disimone, disimprove, disimpaction, Disini, disinfect, disinter, Disislava, Disith, etc.-->
<Typoword="Down-"find="\b()ow(falls?|load*|st(?:airs?|ream)|town|wards?)\b"replace="$1own$2"/>
<Typoword="Eff-"find="\b(|ne)f(ect*|icien*|ort(?:less*|s?))\b"replace="$1ff$2"/>
<Typoword="Emi-"find="\b(|ree)mmi(grat+|nen*|ssar*)\b"replace="$1mi$2"/>
<Typoword="Emb-"find="\b()nb(+)\b(?<!\bEnb(?:a(?:|qom|rr?)|e(?:kshi{0,99}|rgs?|tsu)?|i(?:lulu|se)|lend|o(?:m|rne|th)|r(?:el|idge)|u(?:kan|lufushi|n))\b)(?<!Bir Enba)"replace="$1mb$2"/><!--avoid Enbergs?, Enban, Enbaqom, Enbar(r), Enbas, Enbee, Enbekshi..., Enbetsu, Enbilulu, Enbise, Enblend, Enbom, Enboth, Enbrel, Enbridge, Enbukan, Enbulufushi, Enbun, Bir Enba-->
<Typoword="Emm-"find="\b()nm(+)\b(?<!\bEnm(?:a|ei)|enm(?:a(?:s(?:carados?|se?)|tter*)|esh*|áscarados?|it(?:ies|y))|Enm(?:a(?:kaje|nn?(?:sche)?||rk\b|s(?:carados?|se?)|tter*)|e(?:dio|sh*)|áscarados?|it(?:ies|y)|ore|und))"replace="$1mm$2"/><!--avoid Enma, Enmakaje, Enman, Enmann(sche), enmass(e), Enmedio, Enmore, enmesh, enmatter, enmity, Enmax, Enmund, enmáscarado, Enmao-->
<Typodisabled="Emp-"find="\b()n(p+)\b(?<!\bnp(?:hytot+|i(?:ng)?|lan+|ower|rostil|uku)\b)"replace="$1m$2"/><!--avoid enphytotic, enplane, enpi, Enping, Enpower, Enprostil, Enpuku-->
<Typoword="Err-"find="\b()r(a(?:nds?|tic(?:ally)?)|o(?:neous(?:ly)?|rs?))\b"replace="$1rr$2"/>
<Typoword="Exc-"find="\b()xe(ed*|r?pt(?:ed|i(?:ng|onal(?:ly)?|s?))|lle(?:d|n*)|ssive*)\b"replace="$1xce$2"/>
<Typoword="(Un)Fore-"find="\b(|nf)or(bod(?:es?|ing(?:ly)?)|brains?|c(?:astles?|ourts?|los(?:es?|ing(?:ly)?)|ast(?:ers?|ing|s?))|d(?:ecks?|oom(?:ers?|ing|s?))|f(?:aces?|eet|ingers?|oot|ronts?)|grounds?|h(?:ands?|eads?)|l(?:egs?|ocks?)|m(?:asts?|ost)|n(?:ames?|oons?)|paws?|quarters?|runners?|s(?:a(?:ils?|w)|ee(?:able|ing|?|rs?)|ta(?:ll(?:ers?|ing|s?)|ys?))|t(?:astes?|ell(?:ers?|ing|s?)|old)|w(?:arn(?:ers?|ing|s?)|ords?))\b(?<!\bFors(?:ee\b|tall\b))"replace="$1ore$2"/><!--avoid Forsee, Forstall; common names-->
<Typoword="Giu-"find="\bui(li(?:a(?:ni)?|o)|seppe)\b"replace="Giu$1"/>
<Typoword="Identi-"find="\b()ndenti(cal*|f(?:i+|y*)|t(?:ies|y))\b"replace="$1denti$2"/>
<Typoword="Ill-"find="\b()l(egal*\b(?<!\bEl Ilegal)|ness*|ogical(?:ly)?|uminat(?:e?|i(?:ng|on))|us(?:i(?:ons?|ve(?:ly)?)|ory))\b"replace="$1ll$2"/><!--allow El Ilegal-->
<Typoword="Imb-"find="\b()nb(alanc*|e(?:cil*|d*)|ib*|ue*)\b"replace="$1mb$2"/><!--avoid inboard, inborn, inbound, inbreathe, inbreed, inbuilt-->
<Typoword="Imm-"find="\b()n?m(atur*|e(?:diate*|nse*)|inen*|un(?:e*|+))\b"replace="$1mm$2"/>
<Typoword="Imp-"find="\b()np(artial*|e(?:netrab+|rsonat+)|o(?:rtan+|ssib+)|rov+)"replace="$1mp$2"/><!--avoid inpatient, inphase, input, inmate, inmost, inmigrante-->
<Typodisabled="Imp-/Imm-"find="(?!\bnmigrante\b)\b()n(m|p)(+)\b"replace="$1m$2$3"/>
<Typoword="In-"find="\bEn(duc|flam)(e(?:?|ments?)|ing|tive(?:ly)?)\b"replace="In$1$2"/><!--avoid "Enduction"-->
<Typoword="in- (1)"find="\ben(duc|flam)(e(?:?|ments?)|ing|ti(?:ons?|ve(?:ly)?))\b"replace="in$1$2"/>
<Typoword="In- (2)"find="\bUn(ability|efficien(?:cy|t(?:ly)?)|sufficien(?:cy|t(?:ly)?)|effect(+)|equalit(?:ies|y))\b"replace="In$1"/>
<Typoword="in- (3)"find="\bun(ability|efficien(?:cy|t(?:ly)?)|sufficien(?:cy|t(?:ly)?)|effect(+)|equalit(?:ies|y))\b"replace="in$1"/>
<Typoword="Inco(m/n)-"find="\b()mco(m|n)"replace="$1nco$2"/>
<Typoword="Inn-"find="\b()n(?:nn)?(ate(?:ly)?|oc(?:ent*|uous*)|ovat*|uendo(?:es)?|umer+)\b(?<!Inumerable)"replace="$1nn$2"/><!--avoid surname Inumerable-->
<Typoword="(Mis/Re/Un)Inter-"find="\b(|isi|ei|ni)nte(fer+|pret*|relat(?:e?|ions?)|rupt*|v(?:en*|iew*))\b"replace="$1nter$2"/>
<Typoword="Irr-"find="\b()r(?:rr)?(ation*|e(?:levant|placeable|sistibl)|iat*)\b"replace="$1rr$2"/>
<Typoword="(Uno/O)ff-"find="\b(no|(?!f(?:er\b|icial\b)))f(?:ff)?(er(?:ed|ings?)|ice(?:holders?|rs?|s?)|icia(l(?:dom|ism|ly|s?)|t(?:e?|ing)))\b"replace="$1ff$2"/><!--avoid (O/o)fer, (O/o)ficial-->
<Typoword="Op"find="\b()pp+(en(?:ed|ings?|ly|ness|s?)|erat+|inion*)\b(?<!\bOppens?)"replace="$1p$2"/><!--avoid surnames Oppen, Oppens-->
<Typoword="Opp-"find="\b()p(o(?:nents?|rtun+|s(?:e?|i+))|ress*)\b"replace="$1pp$2"/>
<Typoword="Per-"find="\b(|ep)re(cussi(?:ons?|ve*)|haps|missi(?:ons?|ve)|s(?:onal*|pectives?)|vers(?:e(?:ly)?|ions?))\b"replace="$1er$2"/>
<Typodisabled="Pre-"find="\b()er?(rogative?|scri(?:b(?:er??|ing)|pti+)|siden*)\b"replace="$1re$2"/><!--ran slowly, modified since-->
<Typoword="Pro-"find="\b()or(b(?:abi?l|lem)|cess|duc|fess|gress|vi)(*)\b"replace="$1ro$2$3"/>
<Typoword="Pseudo-"find="\b()suedo(*)\b"replace="$1seudo$2"/>
<Typoword="Quatern-"find="\b()uartern(+)\b"replace="$1uatern$2"/>
<Typoword="Ree-"find="\b()e(lect(?:ed|s?)|nact*|stablish*)\b"replace="$1ee$2"/>
<Typoword="Sch-"find="\b()hc(e(?:dul+|m*)|iss?|+|o(?:lar*|ol*))\b"replace="$1ch$2"/>
<Typoword="Sea- (no hyphen)"find="\b()ea-(board?|foods?|mn|p(?:lanes?|orts?)|w(?:ards?|eeds?|o(?:mn|rth(?:iness|y))))\b"replace="$1ea$2"/><!--avoid all other sea- words; see talk page (Wikipedia_talk:AutoWikiBrowser/Typos#Sea-)-->
<Typoword="Self-"find="\b()elf\s+(?<=\self\s{1,9})\b()elf\s+(?<=\self\s{1,9})\b(a(?:b(?:a(?:ndon(?:ed|ment)?|se(?:ed|ment)?)|negati(?:ng|on)|sor(?:bed|ption)|use)|c(?:cusat(?:ion|ory)|t(?:i(?:ng|v(?:ating|ity))|uali(?:ation|e?)))|d(?:dressed|hesive|just(?:ing|ment)|mi(?:nist(?:er(?:ed|ing|s?)|ration)|r(?:ation|er|ing))|v(?:ancement|erti(?:ng|se(?:ment|r))|ocacy))|ffirmation|ggrandi(?:ement|ing)|li(?:enation|gning)|n(?:aly(?:si(?:ng|s)|zing)|nihilation)|pp(?:ointed|ro(?:bation|v(?:al|ing(?:ly)?)))|ss(?:e(?:mbl|rti(?:ng|on|ve(?:ness)?)|ssment)|ur(?:ance|ed(?:ly)?))|ware(?:ness)?)|b(?:alancing|etrayal|uild(?:er)?)|c(?:a(?:ncell?ing|tering)|e(?:n(?:sorship|te?red(?:ly|ness)?)|rtif(?:icat(?:e|ion)|y))|l(?:eaning|osing)|o(?:cking|lou?red|m(?:mand|patible)|n(?:ce(?:it(?:ed)?|pt)|demn(?:ation|ed|ing)|f(?:ess(?:ed(?:ly)?|ion(?:al)?)|iden(?:ce|t(?:ly)?))|gratulat(?:ion|ory)|s(?:cious(?:ly|ness)?|isten(?:cy|t(?:ly)?))|t(?:ain(?:ed|ment)|empt(?:uous)?|r(?:adict(?:i(?:ng|on)|ory)|ol(?:led)?)))|rrect(?:i(?:ng|on)|s?))|r(?:eat(?:ed|i(?:ng|on))|itic(?:al|ism)))|d(?:e(?:ce(?:i(?:t|v(?:er|ing))|pti(?:on|ve))|f(?:e(?:ating|n(?:e|ive))|inition)|l(?:ight|usion)|n(?:ial|ying)|p(?:enden(?:ce|t)|reci?at(?:i(?:ng(?:ly)?|on)|ory))|s(?:pair|tr(?:oying|uct(?:i(?:on|ve(?:ly)?)|s?)))|termination|v(?:elopment|otion))|i(?:agnose|ffusion|rect(?:ed|i(?:ng|on))|s(?:c(?:iplined?|overy)|gust))|oubt|r(?:amatiation|ive))|e(?:ducat(?:ed|ion)|ffac(?:ement|ing(?:ly)?)|mploy(?:ed|ment)|nclosed|steem|v(?:aluation|iden(?:ce|t(?:ly)?))|x(?:amination|cited|ecuting|istent|p(?:lanatory|ressi(?:on|ve))))|f(?:aced|e(?:ed(?:er|ing)|rtil(?:e|i(?:sation|ty|z(?:ation|ed|ing))))|inanc(?:ed|ing)|la(?:gellation|tter(?:ing|y))|orgetful(?:ness)?|ulfil(?:l(?:ing|ment)|ment))|g(?:enerating|lorification|overn(?:ed|ing|ment)|ravitation|uided)|h(?:a(?:at(?:e|red)|rm(?:er)?)|elp)|i(?:denti(?:fication|ty)|m(?:age|molation|p(?:o(?:rtan(?:ce|t(?:ly)?)|sed)|rovement))|n(?:compatib(?:ility|le)|du(?:c(?:ed|t(?:ance|i(?:on|ve)))|lgen(?:ce|t(?:ly)?))|flicted|surance|terest(?:ed)?|volve(?:d|ment)))|justif(?:icat(?:ion|ory)|ying)|know(?:ing|ledge)|l(?:i(?:miting|quidating)|o(?:a(?:d(?:er|ing)|thing)|cking|v(?:e|ing)))|zzNotzzmadezz|m(?:a(?:nag(?:ement|ing)|stery)|edicat(?:e?|ion)|o(?:ck(?:ery|ing(?:ly)?)|rtification|ti(?:on|vat(?:ed|i(?:ng|on)))|ving)|u(?:rder(?:er)?|tilation))|neglect|o(?:bse(?:rvation|ss(?:ed|ion))|pinion(?:ated)?)|p(?:arod(?:ic|y(?:ing)?)|erpetuati(?:ng|on)|ity(?:ing(?:ly)?)?|o(?:l(?:icing|linat(?:ed|i(?:ng|on)|or))|rtrait(?:s?|ure)|ssess(?:ed|ion))|r(?:aise|eservation|o(?:claimed|duced|mot(?:er|i(?:ng|on))|p(?:agat(?:es?|i(?:ng|on))|ell(?:ed|ing))|tecti(?:on|ve)|ving))|ublish(?:e)?)|r(?:a(?:ising\sflour|ting)|e(?:aliation|corded|f(?:eren(?:ce|tial(?:ity|ly)?)|le(?:cti(?:on|ve)|xive))|g(?:ard(?:ing)?|ulat(?:i(?:ng|on)|ory))|l(?:eas(?:ed?|ing)|ian(?:ce|t(?:ly)?))|n(?:ew(?:al|ing)|unciation)|p(?:ort|roach(?:ful)?)|s(?:pect(?:ing)?|train(?:ed|t))|ve(?:aling|lat(?:ion|ory)))|i(?:sing\sflour|ght(?:eous(?:ly|ness)?|ing))|ule)|sa(?:crific(?:e|i(?:al|ng))|tisf(?:action|ied))|se(?:aling|e(?:er|ing)?|lect(?:i(?:ng|on)|s?)|rvi(?:ce|ng))|s(?:hifter|imilar(?:ity)?|laughter|own?|t(?:art(?:er|ing)?|eril(?:e|ity)|i(?:ck|mulation)|orage|yled)|u(?:bsistent|fficien(?:cy|t(?:ly)?)|ggestion|pport(?:ing)?|rrender|tain(?:ed|ing))|ystem)|t(?:a(?:iling|nn(?:er|ing)|pping|ught)|i(?:mer|tled)|orture|ra(?:cking|nscendence))|understanding|zzNotzzwillzz|w(?:i(?:lled|nding)|orth))\b(?!-)"replace="$1elf-$2"/>
<Typoword="und-/unn-/unt-/unv-"find="\bum(+)\b(?<!umtv)"replace="un$1"/><!--] is domain false positive not umtv and proper nouns by only matching lower case-->
<Typoword="Unn-"find="\b()n(?:nn)?(a(?:med|tural*|vigable)|e(?:cessar(?:ily|y)|eded)|otice*|umber*)\b"replace="$1nn$2"/>
<Typoword="Wh-"find="\b()(ere(?:abouts|by)|is(?:ing|ker(?:ed|s)|tle(?:|rs?)))\b(?<!ising\b)"replace="$1h$2"/><!--avoid wising-->
<Typoword="Xiph-"find="\b()yph(+)\b"replace="$1iph$2"/><!--avoid Xyphus-->

Middles

<Typoword="(At/Con/Dis/Re(dis))Tribute"find="\b(tt|ont|ist|edist|)t?(?:ribu(e|i(?:ng|on))\b|(?:?r(?:+)?b(?:+)?t(?<!arbat|ribut)|ritut)(+)\b(?<!Attribates|b(?:at(?:a(?:lis|ria|s?)|e(?:jamae|lla)?|i(?:a?|on)|or?|rix|u)|et(?:ek|isonios|sk?s?|t(?:ite)?)|it(?:an?||kan|t(?:ite)?)|ott(?:ite)?|u(?:atur|it(?:gli(?:de)?|le|r?)|t(?:aline|h(?:ylazine)?|it|rn|t(?:ite?|s?))|utti))|conturbat(?:ed|um)|disturbator|k(?:aya|os?)|T(?:arb(?:butt(?:on)?|et|i(?:at(?:e|ul)|ta?))|er(?:b(?:a(?:atar|tas)|itlah)|ibithia|ubetaake)|or(?:b(?:at(?:eheydarieh||ross)|i(?:at|tch)|ut(?:rol|ton))|iibata)|r(?:ib(?:at(?:e|io)|et(?:ek|o(?:n|on|y)|t)|itch)|ub(?:at(?:a|ch(?:ov)?|sa)|e(?:ats|t(?:a|chin(?:o|sky)|sk(?:a|o(?:go|j))|zin))|it(?:sna?|t)|t(?:ensee|hob)|ute))|urb(?:at(?:a|hi||or?|r(?:ix|oss))|et(?:li|ts?)|it(?:een|ity)|utt))|t(?:ax|rubed)|urbitt?s?))(?<!T(?:arbutton|ribeones))"replace="$1ribut$2$3"/>

Endings

A
<Typoword="-XXX(ed/er/ing/ive)"find="(?=()()\2{2,})(?<=\b(?:*|+))\1\2{3,}(e(?:d|rs?)|i(?:ngs?|ons?|ves?)|ors?)\b"replace="$1$2$2$3"/><!--cheapened expensive beginning-->
<Typoword="-able (1)"find="\b((?:ccept|rgu)|(?:ap|onfigur)|orgiv|ospit|n(?:(?:ccept|rgu)|(?:ap|onfigur)|orgiv|ospit|istak|ot|ppos|cal|ranslat|s|(?:alu|ulner))|istak|ot|ppos|cal|ranslat|(?:s|n(?:(?:ccept|rgu)|(?:ap|onfigur)|orgiv|ospit|istak|ot|ppos|cal|ranslat|s|(?:alu|ulner)))|(?:alu|ulner))(?:a?)b(ilit(?:ies|y)|l)\b"replace="$1ab$2"/>
<Typoword="-able (2)"find="\b(e|nde)(bat|cid|f(?:in|orm)|grad|lect|not|p(?:end|lor|riv)|riv|s(?:ir|pi)|tect)(?:ea|i)bl()\b"replace="$1$2abl$3"/>
<Typoword="-able (3)"find="\b(nre|e|nre)(a(?:d|son)|c(?:harge|o(?:gni|ncil|ver)|ycl)|deem|m(?:ark|ov)|new|p(?:ai?r|ea|lace|ut)|v(?:iew|oc))(?:a?)b(ility|l)\b"replace="$1$2ab$3"/>
<Typoword="-acious"find="(?=acitous)(?<=\b(?:*|+))acitous(?<!anthracitous)(ly|ness(?:es)?)?\b"replace="acious$1"/><!--cheapened expensive beginning-->
<Typoword="-acity"find="(?=ac)(?<=\b(?:*|+))act?iy\b"replace="acity"/><!--cheapened expensive beginning-->
<Typoword="-ail(ed/ing)"find="\b(?||r?)aill(ed|ing)\b"replace="$1ail$2"/><!--avoid surnames "(M/W)ailling"-->
<Typoword="-aking"find="(?<=\b(?:(?:re)?|re|(?:re)?|e|(?:is(?:b(?:re)?|cre|f(?:re)?|e||s(?:cre||ne?|pe|t(?:re)?)|w(?:re)?))?|e|(?:e(?:b(?:re)?|cre|f(?:re)?|le||pe|s(?:cre||ne?|pe|t(?:re)?)|w(?:re)?))?||(?:cre||ne?|pe|t(?:re)?)|(?:re)?))kaing(s)?\b"replace="aking$1"/><!--cheapened expensive beginning-->
<Typoword="-ality"find="(?<=\b(?:u|qu|(?:at|orm)|(?:eg|oc)|u|eg?|o|it))all+it(ies|y)\b"replace="alit$1"/><!--cheapened expensive beginning-->
<Typoword="-ally (1)"find="(?=aly)(?<=\b(?:(?:*|+)(?:i|er|gi|i(?:|on)|li|n|ot|son|i)))aly\b(?<!Finaly|qualy)"replace="ally"/><!--avoid B(r)ialy, Castaly, Finaly, qualy--><!--see also "-ically", "-ually"--><!--cheapened expensive beginning-->
<Typoword="-ally (2)"find="(?=aly)(?<=\b(?:(?:*|+)(?:|ic?)))alyl?\b(?<!(?:An(?:drian|n?)|B(?:allyhe|i|on|ri)|br?i|C(?:onne|re)|D(?:e|o)|F(?:e|in)|G(?:lene|re)|He|K(?:a(?:n|rt)|e(?:nn?e)?|i(?:lte|nn?s?e))|M(?:cNealy|e)|me|N(?:an|e)|Que?|S(?:e|e|pezi)|Vit|Whe)aly|inalyl|oualy|ialyl)"replace="ally"/><!--avoid many proper names; cheapened expensive beginning-->
<Typoword="-alty"find="\b(dmir|asu|isloy|oy|ayor|en|oy)(?:a(?:lit|tl)|lat)(ies|y)\b"replace="$1alt$2"/><!--see also "-lty"-->
<Typoword="-ament"find="\b(il|ig|(?:est|ourn))ia?ment(ary|s?)\b"replace="$1ament$2"/>
<Typoword="-anging"find="(?<=\b(?:rr|?earr|(?:x|nter|hort|n)?h|er|))an(?:egi|gei)?ng\b"replace="anging"/><!--cheapened expensive beginning-->
<Typoword="-anical"find="\b(ot|ech|urit|at)annical(ly|s?)\b"replace="$1anical$2"/>
<!--"-ance" & "-ant" errors, some separated rules for convenience, grouped together here-->
<Typoword="-an(ce/t)"find="\b((?:bund|dam|ttend)|(?:is|e)?ppear|sson|o(?:gni|nson)|(?:efend|isson)|gnor|erch|xid|ecogni|erv|ac)(?:and|en)(c(?:es?|ies?|y)|t(?:ly|s?))\b"replace="$1an$2"/>
<Typoword="-(t)an(ce/t)"find="\b((?:c(?:cep|qu(?:ain|it))|dmit)|la|omba|xpec|(?:abi|ei)|(?:mpr|nh(?:abi|ei))|ili|oncomba|it|e(?:luc|mit|pen))tn((?:c|t(?<!\bemittent))*)\b"replace="$1tan$2"/><!--allow remittent-->
<Typoword="-(st)ance"find="\b(ssi|on|(?:esi|i)|n|esi|ub)stn(ci??|t*)\b(?<!\bistentions?\b)"replace="$1stan$2"/>
<Typoword="-(st)ant"find="\b(ssi|on|i|n(?:con)?|esi)st(?:atn|ent)(ly|s?)\b"replace="$1stant$2"/>
<!--end "-ance" & "-ant" errors-->
<Typoword="-ard(s/ian/son)"find="\b(dw|ow|ich)rad(ians?|s?|sons?)\b"replace="$1ard$2"/>
<Typoword="-ary"find="\b(ound|iction|rim|(?:al|econd)|ern)e?r(ies|y)\b"replace="$1ar$2"/>
<Typoword="-asion"find="\b(br|v|nv|cc|ersu)ation(al(?:ly)?|s?)\b"replace="$1asion$2"/>
<Typoword="-ately_"find="(?=atly)(?<=\b(?:*|+))atly\b"replace="ately"/><!--cheapened expensive beginning-->
<Typoword="-athlon"find="\b(i|ec|ept|ent|ri)athl(etes?|ons?)\b"replace="$1athl$2"/>
<Typoword="-atian"find="\b(Als|Dalm|Gal)ation(s)?\b"replace="$1atian$2"/>
<Typoword="-atile"find="\b(onv(?:ers|ol)|(?:ers|ol))itile(ly|ness)?\b"replace="$1atile$2"/>
<Typoword="-atility"find="\b((?:ers|ol))it(?:il|li)t(ies|y)\b"replace="$1atilit$2"/>
<Typoword="-ation"find="(?=at)(?<=\b(?:*|+))ati?oin(al(?:ly)?|ed|ing|s?)\b"replace="ation$1"/><!--cheapened expensive beginning-->
<Typoword="-atious"find="\b(lirt|stent|ex)ac(ious*)\b"replace="$1at$2"/>
<Typoword="-atoes"find="\b(ot|om)atos\b"replace="$1atoes"/>
B
<Typoword="-berg"find="\b(nnen|eidel|urem|annen|rt+em)bo?urg\b"replace="$1berg"/><!--avoid Gutenburg-->
<Typoword="-burg"find="\b((?:ettys|othen)|as|ynch|icks)b(?:e|ou)rg\b"replace="$1burg"/>
<Typoword="-bility"find="(?=b(?:il|li))(?<=\b(?:*|+))b(?:il|li)(?:li?)?t(ies|y)\b"replace="bilit$1"/><!--cheapened expensive beginning-->
<Typoword="-builder"find="\b(o(?:at|dy)|o(?:me|use)|hip)build(ers?|ing)\b"replace="$1build$2"/>
C
<Typoword="-cede (1)"find="\b(ntec|(?:onc)?|nterc|rec|ec)eed(e(?:?|nts?|rs?)|ing)\b"replace="$1ed$2"/>
<Typoword="-cede (2)"find="\b(ntec|(?:onc)?|nterc|rec|ec)eed(s)?\b"replace="$1ede$2"/>
<Typoword="-cedent"find="\b(nt|r|npr)ec(?:en|i)den(t(?:ed(?:ly|ness)?|ial|less|s?)|c)\b"replace="$1eceden$2"/>
<Typoword="-cei(p)t"find="\b(on|e)cie(pt|t)(ed|ful(?:ly)?|s?)\b"replace="$1cei$2$3"/>
<Typoword="-ceive"find="(?<=\b(?:?*er|e|?*on|e|rans))c(?:e?|eie|ie?)v(ables?|e(?:?|r(?:s(?:hip)?)?)|ing)\b"replace="ceiv$1"/><!--cheapened expensive beginning-->
<Typoword="-ceiving"find="(?<=\b(?:?*er|e|?*on|e|rans))c(?:ei|ie)ve(ables?|ing)"replace="ceiv$1"/><!--cheapened expensive beginning-->
<Typoword="-ceps"find="\b(uad|)ricep(?:ts?)?\b"replace="$1riceps"/>
<Typoword="-cidental(ly)"find="\b(c|oin|n)c(?:edenti?al?|ident(?:a|ial))(ly|s?)\b"replace="$1cidental$2"/>
<Typoword="-cious"find="\b(ons|ra|udi|us|ali|re(?:co|da)?|(?:p|uspi)|(?:era|i|ora))(?:c(?:i(?:o(?:iu|ui)|uo)|o(?:iu|ui))|sciou)s(ly|ness)?\b"replace="$1cious$2"/>
<Typoword="-(c/l/t)ious"find="(?=ioous)(?<=\b(?:*|+))ioous(*)\b"replace="ious$1"/><!--cheapened expensive beginning-->
<Typoword="-cipient"find="\b(x|n|er|e)c(?:epie|ipia)n(c|t(?:ly|s?))\b"replace="$1cipien$2"/>
<Typoword="-claim"find="\b(c|is|x|ro|e)cliam(e(?:d|rs?)|ing|s?)\b"replace="$1claim$2"/>
<Typoword="-clamation"find="\b(e|x|ro|e)cl(?:ai|o)mat(ions?|ory)\b"replace="$1clamat$2"/>
<Typoword="-clude"find="\b(on|x|n|c|re|e)culd(e?|ing)\b"replace="$1clud$2"/>
<Typoword="-clusion"find="\b(on|x|n|c)lu(d(?:e?|ing)|si(?:ons?|ve(?:ly)?))\b"replace="$1clu$2"/>
<Typoword="-comer"find="\b(n|ate|ew|el)commer(s)?\b"replace="$1comer$2"/>
<Typoword="-courage"find="\b(is|n)co(?:rage?|ur(?:age|ge?))(e?s?|ing(?:ly)?)\b"replace="$1courag$2"/>
<Typoword="-covered"find="\b((?:odisc)?|isc|e(?:c|disc)|lip|n(?:c(?:odisc)?|disc|rec))over(?:d|es)\b"replace="$1overed"/>
<Typoword="-crease"find="\b(e|n)cres(able|e?|ing(?:ly)?)\b"replace="$1creas$2"/>
<Typoword="-cumbent"find="\b(e|n|e)cumban(c(?:ies|y)|t(?:ly|s?))\b"replace="$1cumben$2"/>
<Typoword="-current"find="\b(on|c|e(?:oc)?)cur(?:|ra)n(ces?|t(?:ly)?)\b"replace="$1curren$2"/>
<Typoword="-cycle (2)"find="\b(|p|tr|n)yccl(e(?:?|like|rs?)|i(?:c|ng|sts?))\b"replace="$1icycl$2"/><!--avoid Trycycle musician-->
<Typoword="-cycle"find="\b(i|pi|otor|e|ri|ni)c(?:icl|ylc?)(*)\b(?<!ic(?:icleta|ylinder)|Tricicle)"replace="$1cycl$2"/><!--avoid Tricicle theatre group, (bi/tri)cylinder-->
D
<Typoword="-dition"find="\b(|on|e|(?:xpe)?|er|en?|e|ra)(?:d(?:i(?:dtio|o|t(?:i(?:on|tio)?|o))|tio)|i(?:dtio|tio))n(a(?:l(?:ly)?|ry)|ed|ing|s?)\b(?<!udions?)"replace="$1dition$2"/><!--avoid Audion-->
<Typoword="-dolence"find="\b(on|n|e)dolan(ces?|t(?:ly)?)\b"replace="$1dolen$2"/>
<Typoword="-dth"find="\b(andwi|(?:a(?:irbrea|nds?brea)|undre)|housan)th(s)?\b"replace="$1dth$2"/>
<Typoword="-ducible"find="\b(on|e|(?:n|rre(?:pro)?)|ro|e(?:pro)?|e)duce?ab(ility|l)\b"replace="$1ducib$2"/>
<Typoword="-ductible"find="\b(on|e|n|onde)ductab(ility|l)\b"replace="$1ductib$2"/>
<Typoword="-duction"find="(?<=\b(?:(?:|utopro)|o(?:n|pro)|e(?:xtro)?|yperpro|n(?:tro)?|inopro|onpre|verpre|(?:ostpre|r)|e(?:d?|intro|ro)|(?:e|u(?:perpro|rpro))|nderpro|pro))du(?:c|ti)on(s)?\b"replace="duction$1"/><!--cheapened expensive beginning-->
<Typoword="-ductor"find="\b(|on|e|n)ducter(s)?\b"replace="$1ductor$2"/>
E
<Typoword="-eable"find="\b(halleng|r(?:challeng|knowledg|notic|replac)|nowledg|otic|eplac|n(?:challeng|knowledg|notic|replac))bl()\b"replace="$1eabl$2"/>
<Typoword="-eaning"find="(?=ean)(?<=\b(?:*|+))ean(?:in|ni)ng\b"replace="eaning"/><!--cheapened expensive beginning-->
<Typoword="-ecession"find="\b(r|)ec(?:ces?|e)sion(al|is(?:m|ts?)|s?)\b"replace="$1ecession$2"/>
<Typoword="-elie(f/ve)"find="\b(|isb|onb|nb)eleie?(fs?|v(?:abl|e(?:?|rs?)|ing))\b"replace="$1elie$2"/>
<Typoword="-ely"find="\b(ctiv|los|ens|ntir|(?:als|ierc)|(?:mmens|n(?:activ|clos|dens|entir|f(?:als|ierc)|immens|l(?:a(?:rg|t)|i|o(?:n|os))|nam|precis|s(?:ever|incer|pars)|wid))|L(?:a(?:rg|t)|i|on)|l(?:a(?:rg|t)|i|o(?:n|os))|am|recis|(?:ever|incer|pars)|n(?:activ|clos|dens|entir|f(?:als|ierc)|immens|l(?:a(?:rg|t)|i|o(?:n|os))|nam|precis|s(?:ever|incer|pars)|wid)|id)l+e?y\b(?<!Densley)"replace="$1ely"/>
<!--"-ence" & "-ent" errors, grouped here-->
<Typoword="-en(ce/t)"find="(?<=\b(?:ccid|li|isobedi|xcell|ngredi|eni|bedi|uperintend|ranscend|iol))an(c|t*)\b(?<!Violant)"replace="en$1"/><!--avoid the names Violant; cheapened expensive beginning-->
<Typoword="-ently"find="(?<=\b(?:ppar|urr|ec|vid|nt|res|ec|il))enlty\b"replace="ently"/><!--see also "-equently"--><!--cheapened expensive beginning-->
<Typoword="-(t)ence"find="\b(dver|ompe|(?:mp(?:eni|o|re)|n(?:adver|compe))|a|(?:eni|o|re)|sen)tan(c(?:e?|ies?|y)|t(?:ial|ly|s?))\b(?<!par\s+nadvertance)"replace="$1ten$2"/><!--avoid French-->
<Typoword="-(ist)ence"find="\b(o(?:ex|ns)|x|n(?:cons|s)|onex|reex|ubs)istn(ci?s?|t*)\b"replace="$1isten$2"/>
<!--end "-ence" errors-->
<Typoword="-enness"find="\b(runk|v|e|p|(?:dd|ll))eness\b"replace="$1enness"/>
<Typoword="-ennial"find="\b(i(?:cent)?|ent|ill|er|u(?:adri?(?:cent)?|in(?:qu|t))|e(?:mi(?:cent)?|squi(?:cent)?)|ri(?:cent)?)e(?:nte)?nial(*)\b"replace="$1ennial$2"/>
<Typoword="-eous"find="\b((?:ourt|rustac|utan)|is(?:c(?:ourt|rustac|utan)|g(?:as|org)|herbac|i(?:gn|nstantan)|proteinac|right|spontan|vitr)|(?:as|org)|erbac|(?:gn|nstantan)|roteinac|ight|(?:pontan|ub(?:c(?:ourt|rustac|utan)|g(?:as|org)|herbac|i(?:gn|nstantan)|proteinac|right|spontan|vitr))|n(?:c(?:ourt|rustac|utan)|g(?:as|org)|herbac|i(?:gn|nstantan)|proteinac|right|spontan|vitr)|itr)(?:euo|iou|uo)(s*)\b"replace="$1eou$2"/><!--see also "-geneous"-->
<Typoword="-equently"find="\b(ons|r|nfr|ubs)en?qu(?:antl|en(?:lt|nt(?:il+|ual+)))y\b"replace="$1equently"/>
<Typoword="-ereal"find="\b(th|id|en)eri?al(ly)?\b"replace="$1ereal$2"/>
<Typoword="-ertain"find="\b(|nt|nc)ertian(*)\b"replace="$1ertain$2"/>
<Typoword="-escent"find="\b((?:cqui|dol)|(?:o(?:al|nval)|r)|(?:fferv|van)|(?:ncand|rid)|bsol)e(?:cs?e|s(?:ca|e))n(ce|ts?)\b"replace="$1escen$2"/>
<Typoword="-ese"find="\b(hin|ioc|aan|eban|alt|ortugu|iam)ese\b"replace="$1ese"/>
<Typoword="-esident"find="\b(op?r|onp?r|r|)(?:ei?s|si)di?en(c(?:|i(?:al(?:ly)?|es))|t(?:es?|s?|ia(?:l(?:ly)?|ry)|ships?))\b"replace="$1esiden$2"/>
<Typoword="-etary"find="\b(i|on|(?:lan|ro(?:l|pri))|ecr)(?:at|et)r(i(?:a?|es|ly|ss?|um?)|y)\b(?<!roprietorial|ecretory)"replace="$1etar$2"/>
<Typoword="-ever"find="\b(or|ow|her)eever\b"replace="$1ever"/>
<Typoword="-exper-"find="()pxer(+)\b"replace="$1xper$2"/>
<Typoword="-eys"find="\b(ttorn|himn|onk|(?:ers|ourn)|ull|urk)(?:ie|y)s\b"replace="$1eys"/>
F
<Typoword="-fered"find="\b(if|f|(?:il|rof)|uf|a)ferr(ed|ings?)\b"replace="$1fer$2"/>
<Typoword="-ference"find="(?<=\b(?:(?:*|+)(?:con|trans)|(?:ircum|on)|(?:e|if)|n(?:dif|ter)?|e|e|rans))f(?:er(?:an|e(?:m|rn)|ne?|rn)|fer(?:e(?:m|rn)|rn)|rn)(c(?:e?|ing)|t(?:ial(?:ly|s?)|ly|s?))\b(?<!Defrance)"replace="feren$1"/><!--cheapened expensive beginning-->
<Typoword="-fering"find="(?=fereing)(?<=\b(?:*|+))fereing(s)?\b"replace="fering$1"/><!--cheapened expensive beginning-->
<Typoword="-ferred"find="\b(on|e|n|e|e|rans)f(?:e|fer?)r(als?|e|ing)\b"replace="$1ferr$2"/>
<Typoword="-ficent"find="\b(ene|(?:agni|uni))f(?:ce|ic(?:a|ie))n(ce|t(?:ly)?)\b"replace="$1ficen$2"/>
<Typoword="-ficial"find="\b(rti|f|(?:acri|uper)|nof)fical(ity|ly|s?)\b"replace="$1ficial$2"/>
<Typoword="-field"find="(?<=\b(?:(?:ir)?|(?:a(?:ck|ttle)|oo)|(?:an|hester|o(?:al|rn))|own|a|ome|n|(?:a(?:ke|ns|se)|i(?:d|ne))|(?:il|ut)|(?:cho|hef|now|pring)|p)?)feild(*)\b"replace="field$1"/><!--avoid surname Feild; cheapened expensive beginning-->
<Typoword="-fifth"find="\b(igh|(?:if|or)|ine|(?:even|ix)|(?:hir|wen))ty-()ith\b"replace="$1ty-$2ifth"/>
<Typoword="-finite"find="\b(ff|ef|n(?:def|f))(?:fin(?:te?)|i(?:anite|n(?:te?|it(?<!\bSRK Infinit))))(ly|ness|s?)\b"replace="$1inite$2"/><!--avoid 'SRK Infinit'-->
<Typoword="-finit(iv)e"find="\b(e|n(?:de)?)f+inat(*)\b"replace="$1finit$2"/>
<Typoword="-first"find="\b(igh|(?:if|or)|ine|(?:even|ix)|(?:hir|wen))ty-()r?ist\b"replace="$1ty-$2irst"/>
<Typoword="-flict"find="\b(f|on|n)fil?ct(ed|ing(?:ly)?|s?)\b"replace="$1flict$2"/>
<Typoword="-fluent"find="\b(f|on|f|n|uper)f(?:lua|ule)n(c*|t(?:i+|ly|s?))\b"replace="$1fluen$2"/>
<Typoword="-form"find="\b(on|e|n|(?:er|lat)|e|Uni)fr?om(ati(?:ons?|ve(?:ly)?)|ances?|ed|i(?:ng|ty)|ly|s?)\b"replace="$1form$2"/>
<Typoword="-fourth"find="\b(igh|(?:if|or)|ine|(?:even|ix)|(?:hir|wen))ty-()orth\b"replace="$1ty-$2ourth"/>
<Typoword="-friend"find="\b((?:e|oy)|irl|n)freind(ed|ly|s?)\b"replace="$1friend$2"/>
<Typoword="-ful"find="(?<=\b(?:eauti|(?:are|heer)|is(?:beauti|c(?:are|heer)|event|grae|help|p(?:eace|ower)|s(?:poon|uccess)|use|wonder)|vent|rae|elp|(?:eace|ower)|(?:poon|uccess)|(?:n(?:beauti|c(?:are|heer)|event|grae|help|p(?:eace|ower)|s(?:poon|uccess)|use|wonder)|se)|onder))full(ly|ness|s?)\b"replace="ful$1"/><!--cheapened expensive beginning-->
<Typoword="-fully"find="(?=fuly)(?<=\b(?:*|+))fuly\b"replace="fully"/><!--cheapened expensive beginning-->
G
<Typoword="-gement"find="\b(rran|isenga|n(?:g(?:a|or)|lar)|(?:mpin|nfrin)|earran)gment(s)?\b"replace="$1gement$2"/>
<Typoword="-geneity"find="\b((?:eter|om)|nh(?:eter|om))ogenit(ies|y)\b"replace="$1ogeneit$2"/>
<Typoword="-geneous"find="\b((?:eter|om)|nh(?:eter|om))ogeni(ous*)\b"replace="$1ogene$2"/>
<Typoword="-geni(s/z)e"find="(?=genei)(?<=\b(?:*|+))genei(+)\b"replace="geni$1"/><!--cheapened expensive beginning-->
<Typoword="-gest"find="\b(on|i|n)jest(ed|i(?:ng|on|ves?)|s?)\b"replace="$1gest$2"/>
<Typoword="-goes"find="\b(mbar|in|nder)gos\b"replace="$1goes"/>
<Typoword="-gogue"find="\b(em|m?|m(?:en)?|Men|ed|yn)?(?:agoug|ogogu?)e(s)?\b"replace="$1agogue$2"/>
<Typoword="-grade"find="\b((?:e|own)|p)gradd+(e?|ing)\b"replace="$1grad$2"/>
<Typoword="-(g/p)ressive"find="(?=res)(?<=\b(?:*|+))(res)i(ons?|ve*)\b"replace="$1si$2"/><!--cheapened expensive beginning-->
<Typoword="-ground"find="\b(bove|(?:a(?:ck|ttle)|elow)|amp|(?:air|ore)|lay|nder)(?:g(?:or?un|ro(?:oun|u))|roun)d(*)\b"replace="$1ground$2"/>
H
<Typodisabled="-handed"find="\b(ef|igh)t\s*hande(d|rs?)\b"replace="$1t-hande$2"/><!--nothing wrong with separate words-->
<Typoword="-herent"find="\b(d|o|n(?:co)?)he(?:ar|ra)n(c|t*)\b"replace="$1heren$2"/>
<Typoword="-hibition_"find="\b(x|n|ro)habiti(ons?|ve(?:ly)?)\b"replace="$1hibiti$2"/>
I
<Typoword="-ian"find="\b(As|C(?:hrist|ivil)|civil|Egypt|Ind|usic|edestr)ain(i(?:sm|ty)|s(?:ity)?)?\b"replace="$1ian$2"/>
<Typoword="-ian(ce/t)"find="\b(lleg|rill|nvar|r(?:ad|el)|R(?:ad|el(?!ient\s+K))|ar)(?:ai|ie)n(ces?|ts?)\b"replace="$1ian$2"/><!--avoid Relient K (band)-->
<Typoword="-iation"find="\b((?:bbrev|llev|ssoc)|ev|umil|nit|ad|ar)ati(ons?|ve)\b"replace="$1iati$2"/>
<Typoword="-ible"find="\b(ud|r(?:ed|uc)|(?:d|lig)|lex|orr|(?:aud|cr(?:ed|uc)|e(?:d|lig)|flex|horr|t(?:ang|err)|vinc)|(?:ang|err)|inc)ab(ility|ls?)\b"replace="$1ib$2"/>
<Typoword="-(s)ible"find="(?<=\b(?:dmis|(?:efen|ivi)|ea|(?:admis|d(?:efen|ivi)|fea|mer|osten|p(?:lau|os)|rever|en|vi)|mer|sten|(?:lau|os)|ever|en|i))sab(ility|l)\b"replace="sib$1"/><!--cheapened expensive beginning-->
<Typoword="-(t)ible"find="\b(o(?:mpa|nver|rrup)|(?:co(?:mpa|nver|rrup)|percep|resis|sugges)|ercep|esis|ugges|(?:co(?:mpa|nver|rrup)|percep|resis|sugges))tab(ility|l)\b"replace="$1tib$2"/>
<Typoword="-ical"find="\b(tr?p|(?:lin|rit)|lectr|eograph|dent|og|M(?:ag|etaphor)|m(?:ag|etaphor|us)|(?:hoograph|olit|ract)|(?:e(?:chn|legraph)|op|rp|yp))(?:c?|ic)ial(ly|s?)\b"replace="$1ical$2"/><!--avoid Stan Musial-->
<Typoword="-ically"find="\b(utomat|as|(?:o|rit)|lectr|ron|(?:ag|us)|(?:olit|ract)|pecif)i(?:al|ca?)ly\b"replace="$1ically"/>
<Typoword="-ictive"find="(?=icitve)(?<=\b(?:*|+))icitve(ly|s?)\b"replace="ictive$1"/><!--cheapened expensive beginning-->
<Typoword="-iddle"find="\b(|r)idle()?\b"replace="$1iddle$2"/>
<Typoword="-idential"find="\b(onf|r(?:es|ov)|r(?:es|ov)|Res)identai?l(ity|ly)?\b"replace="$1idential$2"/>
<Typoword="-iduous"find="\b(ss|ec)idi?ous(ly)?\b"replace="$1iduous$2"/>
<Typoword="-ield"find="\b(|n|(?:indsh)?)eild(able|e(?:d|rs?)|ing|?)\b"replace="$1ield$2"/>
<Typoword="-ification"find="\b((?:e|is)|is|e)?((?:ert|lass)|lectr|ort|dent|(?:agn|od)|ot|(?:erson|ur)|ual|pec|n|er)(?:fici?ati?|if(?:cati?|ic(?:at|iati?)))on(s)?\b"replace="$1$2ification$3"/>
<Typoword="-ify"find="\b(is(?:horr|ident|qual|rat|spec|terr|ver)|orr|dent|is(?:horr|ident|qual|rat|spec|terr|ver)|ual|at|pec|err|er)(?:af|fi|ifi|of)y(ing)?\b"replace="$1ify$2"/>
<Typoword="-ight"find="\b(r|l?|n||l?|r)igth?(e|hoods?|ing|l(?:ife|y)|?)\b(?<!Sligting)"replace="$1ight$2"/>
<Typoword="-ilities"find="(?=il)(?<=\b(?:*|+))ill+ities\b"replace="ilities"/><!--cheapened expensive beginning-->
<Typoword="-ily"find="\b(ngr|as|eav|uck|ight|rimar|(?:atisfactor|tead)|n(?:ngr|as|eav|uck|ight|rimar|(?:atisfactor|tead)))(?:al?|i(?:al?|l))?ly\b"replace="$1ily"/>
<Typoword="-iness"find="(?<=\b(?:raz|ust|u(?:nn|st)|(?:a(?:st|z)|ill)|(?:az|o(?:nel|rdl|vel|wl)|ust)|ust|ast|ust|(?:ill|unn)|(?:ast|rustworth)|ntrustworth|orth))yness\b"replace="iness"/><!--cheapened expensive beginning-->
<Typoword="-ing"find="(?<=\b(?:ak|(?:a|ontinu)|(?:a(?:nc|r)|i(?:v|s(?:bak|c(?:a|ontinu)|d(?:a(?:nc|r)|iv|riv)|f(?:ak|eatur|orc)|giv|hav|l(?:anc|iv)|mak|notic|ra|s(?:av|h(?:a|in)|ka)|tak|us|w(?:a|hin)))|riv)|n(?:bak|c(?:a|ontinu)|d(?:a(?:nc|r)|iv|riv)|f(?:ak|eatur|orc)|giv|hav|l(?:anc|iv)|mak|notic|ra|s(?:av|h(?:a|in)|ka)|tak|us|w(?:a|hin))|(?:ak|eatur|orc)|iv|av|(?:anc|iv)|(?:ak|is(?:bak|c(?:a|ontinu)|d(?:a(?:nc|r)|iv|riv)|f(?:ak|eatur|orc)|giv|hav|l(?:anc|iv)|mak|notic|ra|s(?:av|h(?:a|in)|ka)|tak|us|w(?:a|hin)))|otic|a|(?:av|h(?:a|in)|ka)|ak|s|(?:a|hin)))eing(s)?\b"replace="ing$1"/><!--cheapened expensive beginning-->
<Typoword="-ining"find="(?=inig)(?<=\b(?:*|+))inig(ly|s?)\b(?<!\b(?:Bre|He|K(?:le|urt)|Lap|Me|Nar(?:ir)?|Re|Stee||We)inig\b)"replace="ining$1"/><!--avoid (Br/Kl/M/H/R/St/W)einig, (Nar/Narir/Kurt/Lap/T)inig. 'ing' typos can be false positive i.e 'paintinig'--><!--cheapened expensive beginning-->
<Typoword="-ionship"find="\b((?:hamp|ompan)|elat)(?:ionsih?|oinshi)p(s)?\b"replace="$1ionship$2"/>
<Typoword="-ish"find="(?=isih|sih)(?<=\b(?:+?))i?sih(e(?:|rs?)|ing(?:ly)?|ly)?\b(?<!asih|A(?:isih|riningsih|sih)|Bersih|esih|Finarsih|ingsih|K(?:asih|osasih)|sih|M(?:a(?:drasih|ss?ih)|essih|irajoucsih)|N(?:esih|ingsih|urnaningsih)|Su(?:kaesih|mbangsih)|T(?:laksih|sih)|Y(?:ingtsih|ulianingsih))"replace="ish$1"/><!--avoid proper names with -asih -esih -rsih -ssih, e.g., Bersih, Finarsih, Kasih, Kosasih, Madrasih, Masih, Massih, Messih, Nesih, Sukaesih, Nurnaningsih, Ningsih, Ariningsih, Yulianingsih, Asih, Tsih, Aisih, Tlaksih, Mirajoucsih, Sumbangsih, Yingtsih--><!--cheapened expensive beginning-->
<Typoword="-ism"find="\b(narch|ritic|rgan|lagiar|our)s?i(?:st)?m(s)?\b"replace="$1ism$2"/>
<Typoword="-istry"find="(rt|hem|ent|in|eg)ist(ies|y)\b"replace="$1istr$2"/>
<Typoword="-itch_"find="\b(||w)ict?h(e|ing|(?<!ich)ers?)\b(?<!Picher|Sticher)"replace="$1itch$2"/><!--avoid "swich", "wicher", "Picher", "Sticher"-->
<Typoword="-itely"find="(?=itly)(?<=\b(?:*|+))(?<!ual)itly\b"replace="itely"/><!--cheapened expensive beginning-->
<Typoword="-ition"find="\b((?:dd|mb|ud)|o(?:al|nd)|emol|(?:d|xhib)|(?:gn|n(?:hib|tu)?)|(?:os|rohib)|(?:rad|u))it(?:ioi|oi?)n(al(?:ly)?|iss?|s?)\b"replace="$1ition$2"/>
<Typoword="-itious"find="\b(mb|ement|ict|utr|ed)icious(*)\b"replace="$1itious$2"/>
<Typoword="-itous"find="\b(ort|rat|biq)ui?tious(ly|ness)?\b"replace="$1uitous$2"/>
<Typoword="-ively"find="(?=ivly)(?<=\b(?:*|+))ivly\b"replace="ively"/><!--cheapened expensive beginning-->
<Typoword="-ives"find="\b((?:fterl|le)|x-|ouse|)ifes\b(?<!\b(?:alf-|ow-|Readers W|till(?:-|\s+))ifes)"replace="$1ives"/><!--avoid "half-lifes", "low-lifes", "still lifes", "Readers Wifes" (also knifes and midwifes are valid as verbs)-->
J–K
<Typoword="-junction"find="\b(on|is|n|ub)jun?ti(ons?|v(?:es?|itis))\b"replace="$1juncti$2"/>
<Typoword="-kel"find="\b((?:he|nor)|o)kle(ing|s?)\b"replace="$1kel$2"/>
<Typoword="-keted"find="\b((?:lan|rac)|oc|ac|ar|c|oc)kett(ed|ing|s)\b"replace="$1ket$2"/>
<Typoword="-king"find="\b(|tri|a|i)keing\b"replace="$1king"/>
<Typoword="-(a/e/i/o/u)(c/n/o/r/s)king"find="(?=kign)(?<=\b(?:*|+))kign\b"replace="king"/><!--cheapened expensive beginning-->
L
<Typoword="-licate"find="\b(x|m)plict(e?|i(?:ng|ons?))\b"replace="$1plicat$2"/>
<Typoword="-licit (verb)"find="\b(|o)lic(?:id|t)(ations?|ed|ing|ors?|s?)\b"replace="$1licit$2"/>
<Typoword="-licit (adjective)"find="\b(xp|(?:l|mp|nexp)|nexp)lic(?:id|t)(ly)?\b"replace="$1licit$2"/>
<Typoword="-lingual"find="\b(|ult|r|n)illingual(*)\b"replace="$1ilingual$2"/>
<Typoword="-lithic"find="\b(o|(?:ega|ono)|eo|ala?eo)litic\b"replace="$1lithic"/>
<Typoword="-lled"find="\b(nsta|)leld\b"replace="$1lled"/>
<Typoword="-logue"find="\b(na|ata|ia|(?:c|pi)|de|ono|ro)lou?ge(?|rs?)\b(?<!ataloge(?:|rs?))(?<!piloges?)"replace="$1logue$2"/><!--avoid cataloged, cataloges, cataloger, epiloge(s)-->
<Typoword="-lty"find="\b(rue|ifficu|ac?u|ui|ove|(?:pecia|ubt))tl(i(?:e(?:r|st?)|ness)|y)\b"replace="$1lt$2"/><!--see also "-alty"-->
<Typoword="-lytic"find="\b((?:na|utocata)|ata|lectro|sychoana)litic(al(?:ly)?|s?)\b"replace="$1lytic$2"/>
M
<Typoword="-men's"find="\b(hair|ore|entle|o)men(?:ss??|;?s?)\b?"replace="$1men's"/>
<Typoword="-ment"find="((?:(?:gree|r(?:ma|range))|ocu|ay)|(?:mend|rgu)|(?:nviron|xperi)|mprove|(?:eg|tate))m(?:an|e(?:mt|tn)|n(?:et)?)(a*|ed|s?)\b(?<!Segman)"replace="$1ment$2"/><!--avoid surname Segman--><!--cheapened expensive beginning-->
<Typoword="-mentaries"find="\b(om|ocu)mentare?ys\b"replace="$1mentaries"/>
<Typoword="-mentary"find="(?<=\b(?:li|om(?:pl)?|ocu|le|rag|o|arlia|udi|(?:edi|upple)))men(?:atr|t(?:a|er|r))(i(?:ans?|es|ly)|y)\b"replace="mentar$1"/><!--cheapened expensive beginning-->
<Typoword="-mina(nt/te)"find="\b(onta|(?:eter|o)|e|u|o|redo|u|e)min(?:e|ia)(n(?:ces?|t(?:ly)?)|t(?:e?|i(?:ng|ons?)|ors?))\b"replace="$1mina$2"/>
<Typoword="-minent"find="\b(|m|r(?:ee|o))m(?:ina|mine)n(c(?:es?|y)|t(?:ly)?)\b"replace="$1minen$2"/>
<Typoword="-missible"find="\b(d|er|rans)mis+ab(ility|le)\b"replace="$1missib$2"/>
<Typoword="-mitted"find="(?<=\b(?:d|om||er|e(?:d|om|ub|rans)?|ub|rans))mit(ed(?:ly)?|ing)\b"replace="mitt$1"/><!--cheapened expensive beginning-->
<Typoword="-mity"find="\b(ala|efor|nfir|roxi)mat(ies|y)\b"replace="$1mit$2"/>
N
<Typoword="-nace"find="\b(ur|e)nanc(e?|ing)\b"replace="$1nac$2"/>
<Typoword="-nally"find="(?=anlly|nalyl)(?<=\b(?:*|+))(?:anlly|nalyl)\b"replace="nally"/><!--avoid incorrect to incorrect change on -nanlly; cheapened expensive beginning-->
<Typoword="-nance"find="\b(ndig|a(?:inte|lig)|(?:e|oig|reg)|e(?:pug|so)|usti)nen(c(?:es?|ies?|y)|t*)\b"replace="$1nan$2"/><!--see also "-mina(nt/te)"-->
<Typoword="-nf(i/o)rm"find="\b(o|isi|(?:nco)?|isi|eco|nco)mf()rm(a(?:ti(?:ons?|ve(?:ly)?)|bl|l(?:ity)?)|ed|ing|s?)\b"replace="$1nf$2rm$3"/>
<Typoword="-nment"find="\b((?:lig|ssig)|n(?:tertai|viro)|over)(?:me|nem)nt(al*|s?)\b"replace="$1nment$2"/><!--see also "-ment"-->
<Typoword="-nomial"find="\b(o|oly|ri)nominal(s)?\b"replace="$1nomial$2"/><!--avoid binominal-->
<Typoword="-nounce"find="\b(n|e|ispro|ro|e)(?:n(?:ou|uo?n)|oun)cn?(e*|ings?)\b"replace="$1nounc$2"/>
O
<Typoword="-oid"find="\b((?:nr|v)|ub|ev|uman|v|aran|ter|(?:a(?:bl|c)|or|yph))iod(a(?:l|nce)|ed|ing|s?)\b"replace="$1oid$2"/>
<Typoword="-ology"find="(?=ol)(?<=\b(?:*|+))ol(?:?|ol)g(y(?<!olgy\b)|i(?:c*|es|sts?))\b"replace="olog$1"/><!--cheapened expensive beginning-->
<Typoword="-ong"find="\b(||r)omg(s)?\b"replace="$1ong$2"/>
<Typoword="-onym"find="\b((?:cr|n)|p|om|seud|yn)(?:on(?:m|ym?n)|ynm)(ity|ous(?:ly)?|?)\b"replace="$1onym$2"/>
<Typoword="-ormally"find="\b(bn||nf)ormaly\b"replace="$1ormally"/>
<Typoword="-orous"find="\b(m||(?:anc|ig)|ig)o(?:ro|urou?)s(ly|ness|\b(?<!Amoros|Poros))\b"replace="$1orous$2"/><!--allowing humourous per talk page, see also "-vorous"; avoid surname Amoros-->
<Typoword="-osion"find="\b(orr|(?:r|xpl)|mpl)otion(s)?\b"replace="$1osion$2"/>
<Typoword="-otten"find="\b(eg|org||isg)ot(?:tt)?en(e(?:r|st)|stones?)?\b"replace="$1otten$2"/>
<Typoword="-oughly"find="\b(|(?:hor)?)ougly\b"replace="$1oughly"/>
<Typoword="-ought"find="\b(r?||h|r)(?:aught|ougth)(s)?\b"replace="$1ought$2"/><!--avoid surname Faught-->
<Typoword="-ound-"find="()uond(*)"replace="$1ound$2"/>
P
<Typoword="-paration"find="\b(r|)ep(?:ar?|er?a|ra)t(i(?:ons?|ve(?:ly|s?))|or(?:ily|?))\b"replace="$1eparat$2"/>
<Typoword="-partment"find="\b(|om|e)pament(al*|s?)\b"replace="$1partment$2"/>
<Typoword="-pel"find="\b(om|is|x|m|ro|e)pell(s)?\b"replace="$1pel$2"/>
<Typoword="-pelled"find="\b(om|is|x|m|ro|e)pel(e(?:d|rs?)|ing|ors?)\b"replace="$1pell$2"/>
<Typoword="-pensable"find="\b(om|is|ndis)pensib(ility|l(?:e(?:ness)?|y))\b"replace="$1pensab$2"/>
<Typoword="-pensation"find="\b(om|is)pensantion(al|s?)\b"replace="$1pensation$2"/>
<Typoword="-pense"find="\b(is|x|n(?:dis|ex|sus)|us)penc(a(?:bl|r(?:ies|y)|tions?)|e(?:?|rs?)|ful|i(?:ng|ve(?:ly|ness)?))\b"replace="$1pens$2"/>
<Typoword="-petiti(on/ve)"find="\b(om|on(?:com|re)|e|n(?:com|re))p(?:atiti|e(?:iti|tit?)|itit|petti)(ons?|ve*)\b"replace="$1petiti$2"/>
<Typoword="-phone"find="\b((?:ega|icro|ono)|(?:axo|tereo|ym)|ele)pon(e?|i(?:c(?:ally)?|ng)|y)\b"replace="$1phon$2"/>
<Typoword="-ployment"find="\b(e|m|ede|nem)ployement(s)?\b"replace="$1ployment$2"/>
<Typoword="-politan"find="\b(osmo|etro|ea)polit(?:ai|ia?)n(ism|s?)\b"replace="$1politan$2"/>
<Typoword="-ponent"find="\b(om|e|x|p|ro|xx)ponant(s)?\b"replace="$1ponent$2"/>
<Typoword="-press"find="(?<=\b(?:om|e(?:com|ex)?|x|(?:m|n(?:com|ex)?)|p|e(?:com|ex)?|up))pres(e?|i(?:ng|on*|ve(?:ly)?))?\b"replace="press$1"/><!--cheapened expensive beginning-->
<Typoword="-pulation"find="\b(o|ani|o|ti)puati(+)\b"replace="$1pulati$2"/>
<Typoword="-putable"find="\b(om|is(?:re)?|n(?:com|dis)|m|e)put(?:e|i)b(ilit+|l)\b"replace="$1putab$2"/>
<Typoword="-putation"find="\b(m|om|e|m|e)puation(*)\b"replace="$1putation$2"/>
Q
<Typoword="-quarter"find="\b(ore|(?:ead|ind))quter(ed|ing|s?)\b"replace="$1quarter$2"/>
<Typoword="-quisition"find="\b(c|n|e)quis(?:itoi?|tio)n(s)?\b"replace="$1quisition$2"/>
R
<Typoword="-rance"find="\b((?:ppea|ssu)|lea|elive|n(?:du|t)|ag|ind|(?:gno|nsu)|erseve|ememb|eve|(?:empe|ole))e?rea?n(*)\b(?<!nsurency\b)"replace="$1ran$2"/><!--avoid Insurgency-->
<Typoword="-rector"find="\b(o(?:di|r)|i)recte(r*)\b"replace="$1recto$2"/>
<Typoword="-rien(ce/t)"find="\b(is(?:expe|nut|o|pru)|xpe|n(?:expe|nut|o|pru)|ut||ru|e(?:expe|nut|o|pru))r(?:ei|i(?:a|te))n(c(?:e?|ing)|t*)\b"replace="$1rien$2"/>
<Typoword="-rious"find="\b(|eli|u|ila|(?:llust|n(?:dust|ju))|(?:abou?|uxu)|yste|oto|reca|e|(?:a|icto))r(?:i(?:o(?:iu|ui)|uo)|o(?:iu|ui?)|riou)s(ly|ness)?\b(?<!\berous\b)"replace="$1rious$2"/>
<Typoword="-roid"find="\b((?:n|ste)|ent|ib|eteo|(?:phe|te)|hy)riod(al|s?)\b"replace="$1roid$2"/>
S
<Typoword="-sage"find="\b(o|)seage(s)?\b"replace="$1sage$2"/>
<Typoword="-scend"find="\b(|onde|e|ran)c?end(ed|ing|s?)\b"replace="$1scend$2"/>
<Typoword="-scend(a/e)nt"find="\b(|onde|e|ran)c?end()n(s)?\b"replace="$1scend$2nt$3"/>
<Typoword="-science"find="\b(io|on|eo|e(?:uro)?|mni|(?:re|seudo))ien(ces?|t(?:ious(?:ly)?|ly)?|tific(?:ally)?)\b"replace="$1scien$2"/>
<Typoword="-scribe"find="\b(e|n|r|ub)ri(+)\b(?<!Decript)"replace="$1scri$2"/><!--avoid band-->
<Typoword="-scripti(on\ve)"find="\b((?:ircum|on)|e|n|r|e|ub|ran)scr?ip?(?:iti?|t)(ons?|ve(?:ly)?)\b"replace="$1scripti$2"/>
<Typoword="-sequence"find="(?<=\b(?:*s|+s|))equesece()?\b"replace="equence$1"/><!--cheapened expensive beginning-->
<Typoword="-sequent"find="\b(on|ncon|ub)(?:equ|s(?:e(?:nqu|q)|iqu|qu))en(ces?|t*)\b"replace="$1sequen$2"/>
<Typoword="-solutely"find="(?=solutly)(?<=\b(?:*|+))solutly\b"replace="solutely"/><!--cheapened expensive beginning-->
<Typoword="-soning"find="(?=soninig)(?<=\b(?:*|+))soninig\b"replace="soning"/><!--cheapened expensive beginning-->
<Typoword="-source"find="\b(ut|e)s(?:o|sour)c(e(?:?|ful(?:ly|ness)?)|ing)\b(?<!essources?)"replace="$1sourc$2"/><!--avoid the French word '(R/r)essource(s)' used in name i.e. ]-->
<Typoword="-sphere"find="\b(tmo|logo|emi|trato)?s(?:hpere|p(?:ere|he+r))(s)?\b"replace="$1sphere$2"/>
<Typoword="-stitute"find="\b(on|econ|n|ro|econ|ub)s(?:itut|t(?:itu?|ut(?:t)?))(e?|i(?:ng|on*))\b"replace="$1stitut$2"/>
<Typoword="-strict"find="\b(on|e(?:di)?)stict(ed|i(?:ng|ons?|ve)|s?)\b"replace="$1strict$2"/>
<Typoword="-struct"find="\b((?:e|is|e)?on|(?:n|on)?e|n(?:fra)?|cro|b|u(?:b|per))(?:s(?:ruct|t(?:ruc|truct|uct))|truct)(ed|i(?:ng|on(?:iss?|s?)|viss?)|ive(?:ly)?|ors?|s?|ur(?:al(?:ly)?|es?))\b"replace="$1struct$2"/><!--Error 'Instruction(s) => Instructtions' but maybe a hidden control character-->
<Typoword="-surrect"find="\b(n|e)s(?:sur+e|ur(?:e|r+u|u))ct(ed|i(?:ng|on*)|s?)\b"replace="$1surrect$2"/>
T
<Typoword="-tally"find="(?=taly)(?<=\b(?:*|+))talyl?\b(?<!Kartaly)"replace="tally"/><!--avoid names Naftaly, Nataly; cheapened expensive beginning-->
<Typoword="-tain"find="\b((?:bs|r)|ri|(?:ap|er|hief|on|ur)|oun|(?:ain|oun)|r|nr)t(?:ain|ian?)(cy|ed|ing|ly|ous|s?|t(?:ies|y))\b"replace="$1tain$2"/><!--avoid proper name Detian-->
<Typoword="-teenth"find="\b(igh|(?:if|our)|ine|(?:even|ix)|hir)t(?:e|the+n)th?(s)?\b"replace="$1teenth$2"/>
<Typoword="-thèque"find="\b(ibli|isc)oth?que(s)?\b(?<!\biscotheques?)"replace="$1othèque$2"/><!--avoid discotheque-->
<Typoword="-thing"find="\b(ny|very|o|ome)t(?:hign|ing)\b(?<!oting)"replace="$1thing"/>
<Typoword="-tience"find="\b((?:pa|quo|sen)|ut(?:pa|quo|sen)|a|uo|en)t(?:ei|ia)n(ces?|t*)\b"replace="$1tien$2"/>
<Typoword="-tified"find="\b(eau?|er|or|den|us|or|o|uan|(?:a|ec)|es)ta?fi(abl|cat(?:es?|ions?)|e)\b"replace="$1tifi$2"/><!--see also "-tifie(d/s)"-->
<Typoword="-tifie(d/s)"find="(?<=\b(?:eau?|er|or|den|us|or|o|uan|(?:a|e(?:beau?|c(?:er)?|for|iden|jus|mor|no|quan|r(?:a|ec)|tes))|es|n(?:beau?|cer|for|iden|jus|mor|no|quan|r(?:a|ec)|tes)))tife()\b"replace="tifie$1"/><!--see also "-tified"; cheapened expensive beginning-->
<Typoword="-tility"find="\b(uc|(?:er|u)|os|n(?:duc|f(?:er|u)|hos|mo|u|v(?:ersa|ola))|o||(?:ersa|ola))ti(?:a?|l(?:a?|li))t(arian|ies|y)\b"replace="$1tilit$2"/>
<Typoword="-timately"find="\b(n|l)(?:i(?:mate?le?|t(?:imate?le?|mate?le))|t(?:imate?le|mate?le?))y\b"replace="$1timately"/>
<Typoword="-tinct"find="\b(is|x|n(?:dis)?)(?:ctinc|ti(?:c(?:nt)?|n))(i(?:ons?|ve(?:ly)?)|ly|s?)\b(?<!\bDistin)"replace="$1tinct$2"/>
<Typoword="-tion(s)"find="(?=tio)(?<=\b(?:*|+))tio(?:i|(s))n\b"replace="tion$1"/><!--cheapened expensive beginning-->
<Typoword="-tion"find="\b((?:encrypt|omina)|(?:lec|mo|ncrypt)|(?:egotia|omina)|e(?:c|lec))t(?:iio|oi?)n(al*|s?)\b"replace="$1tion$2"/>
<Typoword="-tional(ly)"find="(?=tion)(?<=\b(?:*|+))tion(?:a(ly)|nal(ly)?)\b"replace="tional$1$2"/><!--cheapened expensive beginning-->
<Typoword="-tionary"find="\b(ic|(?:volu|xpedi)|nfla|e(?:ac|volu))tionay\b"replace="$1tionary"/>
<Typoword="-tious"find="\b(mbi|a|cti|nfec|utri|epeti)t(?:i(?:oui|uo)|o(?:iu|ui))s(ly|ness)?\b"replace="$1tious$2"/>
<Typoword="-tivities"find="\b(c|es|nsensi|a|eac|ensi)tivit?es\b"replace="$1tivities"/>
<Typoword="-tor"find="\b(nces|onspira|di|nven|oni|eac|ransla)t+er(al*|ed|i(?:al*|ng)|s?)\b"replace="$1tor$2"/>
<Typoword="-trate"find="\b(oncen|nfil)tar?t(e?|i(?:ng|ons?)|ors?)\b"replace="$1trat$2"/>
<Typoword="-(s)trate"find="\b(dmini|emon|ru|llu|agi|rche|emon)star?t(e?|i(?:ng|ons?|ve(?:ly|s?))|ors?)\b"replace="$1strat$2"/>
<Typoword="-tributor"find="\b(t|on|is)tributer(s)?\b"replace="$1tributor$2"/>
<Typoword="-tting"find="\b(|u|orge|e)ting\b(?<!Guting|Isla Puting|Tanjung Puting)"replace="$1tting"/><!--avoid Guting, Isla Puting Bato, Tanjung Puting-->
<Typoword="-tude"find="\b(t|ort|rat|(?:at|ong)|(?:agn|ult)|ol)i(?:dud|tut)(es?|inal(?:ly)?)\b"replace="$1itud$2"/>
<Typoword="-ture"find="\b(ap|ea|ec|ic|culp|or)tur(s)?\b"replace="$1ture$2"/><!--avoid surname "Pastur"-->
U–V
<Typoword="-ually"find="\b(sex|as|(?:q|vent)|act|rad|(?:an|ut)|ex|act|(?:nus|s)|is)(?:al?|u?)ly\b"replace="$1ually"/><!--avoid Annaly-->
<Typoword="-vel"find="(?<=\b(?:e|ri|(?:a|r)|o|ar|||r|(?:h(?:o|ri)|i)))vle(s)?\b"replace="vel$1"/><!--cheapened expensive beginning-->
<Typoword="-vele(d/r)"find="\b(e|ri|r|ar|a|(?:h(?:o|ri)|i)|r)va?le(d|rs?)\b"replace="$1vele$2"/>
<Typoword="-veling"find="\b(e|ri|r|e|ar||(?:h(?:o|ri)|i)|r)vle?ing\b"replace="$1veling"/>
<Typoword="-vement"find="(?=vment)(?<=\b(?:*|+))vment(al|ed|ing|s?)\b"replace="vement$1"/><!--cheapened expensive beginning-->
<Typoword="-venge"find="\b(|e|ca)vang(e?s?|ing)\b"replace="$1veng$2"/>
<Typoword="-versary"find="\b((?:d|nni))v(?:e(?:rse|sa)|resa)r(i(?:al|es)|y)\b"replace="$1versar$2"/>
<Typoword="-versity"find="\b(d|i|ni)veristy\b"replace="$1versity"/>
<Typoword="-view"find="\b(nter|ver|re|e)(?:ive|v(?:ei?|i)|wie)w(able|e(?:d|rs?)|ing|s?)\b"replace="$1view$2"/>
<Typoword="-vious"find="\b(e|n|b(?:li)?|re)v(?:io(?:su?|usu)|ou?se?|uose?)(ly)?\b(?<!Devo(?:s|us))"replace="$1vious$2"/>
<Typoword="-vorous"find="\b(arn|erb|nsect|mn)ivr(es?|ous(?:ly)?)\b"replace="$1ivor$2"/>
W
<Typoword="-wed/-wing"find="(?=ww)(?<=\b(?:*|+))ww(ed|ing|s)\b"replace="w$1"/><!--cheapened expensive beginning-->
<Typoword="-where"find="\b(ny|(?:lse|very)|o|ome)h?were\b"replace="$1where"/>

Incorrect phrases

<Typoword="Based (off) of"find="\b()ased\s+(?<!-ased)(?:off\s+)?of\b"replace="$1ased on"/><!--Do NOT extend the below rule to "based around". Regardless of the FP rate, an incorrect change could render text nonsensical.-->
<Typoword="Between ... and"find="\b(etween\s+(?:\d+*|e(?:ight(?:een|y?)|leven)|f(?:i(?:ft(?:een|y)|ve)|o(?:rty|ur(?:teen)?))|nine(?:t(?:een|y))?|one|s(?:even|ix)(?:t(?:een|y))?|t(?:en|w(?:e(?:lve|nty)|o)|h(?:irt(?:een|y)|ree))|zero)\s)to\b"replace="$1and"/>
<Typoword="et al."find="\bet(?:\.\s*al\b\.?|\s+al\b(?!\.))"replace="et al."/>
<Typodisabled="except for"find="\bwith\s*the\s*exception\s*of\b"replace="except for"/>
<Typodisabled="Except for"find="\bWith\s*the\s*exception\s*of\b"replace="Except for"/>
<Typoword="known as"find="(?=kown)(?<=\b(?:a(?:lso|re|s)|Also|b(?:e(?:came|en|st|tter)|ut)|Be(?:st|tter)|ommonly|requently|enerally|is|ostly|ormally|Often|o(?:ften|r)|perhaps|sually|W(?:ell|idely)|w(?:as|e(?:ll|re)|idely))\s{1,99})know(?:ed|s?)\s+(as|for)\b"replace="known $1"/><!--cheapened expensive beginning-->
<Typoword="per se"find="\bper\s+say\b"replace="per se"/>
<Typodisabled="to"find="\bso\s*as\s*to\b"replace="to"/>
<Typodisabled="To"find="\bSo\s*as\s*to\b"replace="To"/>
<Typodisabled="whether"find="\bas\s*to\s*whether\b"replace="whether"/>
<Typodisabled="Whether"find="\bAs\s*to\s*whether\b"replace="Whether"/>

Back to top

Text is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply.