From 23faf30f2472d6e5772c611a21b73d3e973ff9ec Mon Sep 17 00:00:00 2001 From: Ed Page Date: Sat, 5 Oct 2019 07:30:30 -0600 Subject: [PATCH] refactor(dict): Speed up build times by caching codegen --- .travis.yml | 6 + Cargo.lock | 743 +- Cargo.toml | 2 +- codegen/Cargo.toml | 24 + codegen/src/main.rs | 62 + typos-dict/Cargo.toml | 5 - typos-dict/build.rs | 33 - typos-dict/src/dict_codegen.rs | 35610 ++++++++++++++++++++++++++++++- 8 files changed, 36067 insertions(+), 418 deletions(-) create mode 100644 codegen/Cargo.toml create mode 100644 codegen/src/main.rs delete mode 100644 typos-dict/build.rs diff --git a/.travis.yml b/.travis.yml index d077acd9f..2d377e897 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,12 @@ matrix: - rustup component add rustfmt script: - cargo fmt --all -- --check + - env: CodeGen + rust: 1.35.0 # `stable`: Locking down for consistent behavior + install: + - rustup component add rustfmt + script: + - cargo run --package typos-codegen -- --input typos-dict/assets/words.csv --output typos-dict/src/dict_codegen.rs --check - env: RUSTFLAGS="-D warnings" rust: 1.35.0 # `stable`: Locking down for consistent behavior install: diff --git a/Cargo.lock b/Cargo.lock index 5bd16e0d4..9b1a0dfaa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,10 +2,10 @@ # It is not intended for manual editing. [[package]] name = "aho-corasick" -version = "0.6.9" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -13,7 +13,7 @@ name = "ansi_term" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -30,55 +30,52 @@ dependencies = [ [[package]] name = "atty" -version = "0.2.11" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "autocfg" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "backtrace" -version = "0.3.13" +version = "0.3.38" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace-sys" -version = "0.1.28" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "bitflags" -version = "1.0.4" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bstr" -version = "0.2.1" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-automata 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-automata 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -91,31 +88,31 @@ name = "c2-chacha" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "cc" -version = "1.0.28" +version = "1.0.45" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cfg-if" -version = "0.1.6" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "clap" -version = "2.32.0" +version = "2.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -126,8 +123,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -135,26 +132,35 @@ name = "cloudabi" version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "codegenrs" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "crossbeam-channel" -version = "0.3.6" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "crossbeam-utils" -version = "0.6.3" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -162,11 +168,11 @@ name = "csv" version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bstr 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "csv-core 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -174,7 +180,7 @@ name = "csv-core" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -182,12 +188,12 @@ name = "derive_more" version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -197,7 +203,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "either" -version = "1.5.0" +version = "1.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -205,10 +211,10 @@ name = "env_logger" version = "0.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -217,10 +223,10 @@ name = "env_logger" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -229,7 +235,7 @@ name = "failure" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -238,10 +244,10 @@ name = "failure_derive" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -258,38 +264,30 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "fuchsia-zircon" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "fuchsia-zircon-sys" -version = "0.3.3" +name = "fuchsia-cprng" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "getrandom" -version = "0.1.8" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "globset" -version = "0.4.2" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -297,8 +295,8 @@ name = "globwalk" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "ignore 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "ignore 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -311,7 +309,7 @@ dependencies = [ [[package]] name = "humantime" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -319,19 +317,19 @@ dependencies = [ [[package]] name = "ignore" -version = "0.4.6" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-channel 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -339,48 +337,38 @@ name = "itertools" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "itoa" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "lazy_static" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libc" -version = "0.2.60" +version = "0.2.62" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "lock_api" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "log" -version = "0.4.6" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "memchr" -version = "2.1.3" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -389,40 +377,16 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "num-traits" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "owning_ref" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parking_lot" -version = "0.7.1" +name = "normalize-line-endings" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] -name = "parking_lot_core" -version = "0.4.0" +name = "num-traits" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -448,7 +412,7 @@ version = "0.7.24" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -474,7 +438,7 @@ dependencies = [ "float-cmp 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "normalize-line-endings 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "predicates-core 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -491,14 +455,32 @@ dependencies = [ "treeline 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "proc-macro-error" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "proc-macro2" -version = "0.4.26" +version = "0.4.30" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "proc-macro2" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "quick-error" version = "1.2.2" @@ -506,38 +488,47 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "quote" -version = "0.6.11" +version = "0.6.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quote" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rand" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_os 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rand" -version = "0.7.0" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -546,8 +537,8 @@ name = "rand_chacha" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -556,20 +547,28 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rand_core" -version = "0.3.0" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "rand_core" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -577,7 +576,7 @@ name = "rand_hc" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -585,7 +584,7 @@ name = "rand_hc" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -593,29 +592,39 @@ name = "rand_isaac" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_jitter" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rand_os" -version = "0.1.1" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rand_pcg" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -623,7 +632,7 @@ name = "rand_xorshift" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -631,37 +640,28 @@ name = "rdrand" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "redox_syscall" -version = "0.1.51" +version = "0.1.56" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "redox_termios" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "regex" -version = "1.1.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex-automata" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -669,23 +669,20 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.4" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "remove_dir_all" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rustc-demangle" -version = "0.1.13" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -696,11 +693,6 @@ dependencies = [ "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "ryu" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "ryu" version = "1.0.0" @@ -708,17 +700,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "same-file" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "scopeguard" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "semver" version = "0.9.0" @@ -734,30 +721,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "1.0.85" +version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde_derive 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_derive" -version = "1.0.85" +version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_json" -version = "1.0.36" +version = "1.0.41" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -766,61 +753,79 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "smallvec" -version = "0.6.8" +name = "strsim" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] -name = "stable_deref_trait" -version = "1.1.1" +name = "structopt" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt-derive 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] -name = "strsim" -version = "0.7.0" +name = "structopt" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt-derive 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] -name = "structopt" -version = "0.2.14" +name = "structopt-derive" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt-derive 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "structopt-derive" -version = "0.2.14" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "syn" -version = "0.15.26" +version = "0.15.44" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "syn" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "synstructure" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -829,12 +834,12 @@ name = "tempfile" version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -842,25 +847,15 @@ name = "termcolor" version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "termion" -version = "1.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "textwrap" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -868,7 +863,7 @@ name = "thread_local" version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -876,7 +871,7 @@ name = "toml" version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -888,15 +883,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "typos" version = "0.1.0" dependencies = [ - "bstr 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -906,35 +901,40 @@ name = "typos-cli" version = "0.1.0" dependencies = [ "assert_fs 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "clap-verbosity-flag 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ignore 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "ignore 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "typos 0.1.0", "typos-dict 0.1.0", ] [[package]] -name = "typos-dict" -version = "0.1.0" +name = "typos-codegen" +version = "1.0.0" dependencies = [ + "codegenrs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "csv 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", "phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", - "typos 0.1.0", + "structopt 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "ucd-util" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" +name = "typos-dict" +version = "0.1.0" +dependencies = [ + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", + "typos 0.1.0", + "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "unicase" @@ -951,7 +951,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "unicode-width" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -960,16 +960,8 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "unreachable" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "utf8-ranges" -version = "1.0.2" +name = "unicode-xid" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -982,24 +974,24 @@ name = "version_check" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "void" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "walkdir" -version = "2.2.7" +version = "2.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "wasi" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "winapi" -version = "0.3.6" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1013,10 +1005,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "winapi-util" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1026,63 +1018,60 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wincolor" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [metadata] -"checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e" +"checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum assert_fs 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "843ba73b7d990b4ef11b34a58eefa777c1350c098031857ec369658c7cb0597c" -"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" -"checksum autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "22130e92352b948e7e82a49cdb0aa94f2211761117f29e052dd397c1ac33542b" -"checksum backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" = "b5b493b66e03090ebc4343eb02f94ff944e0cbc9ac6571491d170ba026741eb5" -"checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" -"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" -"checksum bstr 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6cc0572e02f76cb335f309b19e0a0d585b4f62788f7d26de2a13a836a637385f" +"checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" +"checksum autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "b671c8fb71b457dd4ae18c4ba1e59aa81793daacc361d82fcd410cef0d491875" +"checksum backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)" = "690a62be8920ccf773ee00ef0968649b0e724cda8bd5b12286302b4ae955fdf5" +"checksum backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)" = "82a830b4ef2d1124a711c71d263c5abdc710ef8e907bd508c88be475cebc422b" +"checksum bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8a606a02debe2813760609f57a64a2ffd27d9fdf5b2f133eaca0b248dd92cdd2" +"checksum bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8d6c2c5b58ab920a4f5aeaaca34b4488074e8cc7596af94e6f8c6ff247c60245" "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" "checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101" -"checksum cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4a8b715cb4597106ea87c7c84b2f1d452c7492033765df7f32651e66fcf749" -"checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4" -"checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e" +"checksum cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)" = "4fc9a35e1f4290eb9e5fc54ba6cf40671ed2a2514c3eeb2b2a908dda2ea5a1be" +"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" +"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" "checksum clap-verbosity-flag 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bda14f5323b2b747f52908c5b7b8af7790784088bc7c2957a11695e39ad476dc" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" -"checksum crossbeam-channel 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "137bc235f622ffaa0428e3854e24acb53291fc0b3ff6fb2cb75a8be6fb02f06b" -"checksum crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "41ee4864f4797060e52044376f7d107429ce1fb43460021b126424b7180ee21a" +"checksum codegenrs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "71084cba3c8e4a3f9bc1a838ce259570fca6f2e360da3657c1b8c1185786329d" +"checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" +"checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" "checksum csv 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "37519ccdfd73a75821cac9319d4fce15a81b9fcf75f951df5b9988aa3a0af87d" "checksum csv-core 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9b5cadb6b25c77aeff80ba701712494213f4a8418fcda2ee11b6560c3ad0bf4c" "checksum derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a141330240c921ec6d074a3e188a7c7ef95668bb95e7d44fa0e5778ec2a7afe" "checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" -"checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0" +"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" "checksum env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)" = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" "checksum float-cmp 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "134a8fa843d80a51a5b77d36d42bc2def9edcb0262c914861d08129fd1926600" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" -"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" -"checksum getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "34f33de6f0ae7c9cb5e574502a562e2b512799e32abb801cd1e79ad952b62b49" -"checksum globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4743617a7464bbda3c8aec8558ff2f9429047e025771037df561d383337ff865" +"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" +"checksum getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "473a1265acc8ff1e808cd0a1af8cee3c2ee5200916058a2ca113c29f2d903571" +"checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" "checksum globwalk 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "89fa2e29859da05acd066bd45996f05c271b271d7ec4a781f909682328f65d25" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" -"checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" -"checksum ignore 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ad03ca67dc12474ecd91fdb94d758cbd20cb4e7a78ebe831df26a9b7511e1162" +"checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" +"checksum ignore 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "0ec16832258409d571aaef8273f3c3cc5b060d784e159d1a0f3b0017308f84a7" "checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358" -"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" -"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" -"checksum libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)" = "d44e80633f007889c7eff624b709ab43c92d708caad982295768a7b13ca3b5eb" -"checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" -"checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" -"checksum memchr 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e1dd4eaac298c32ce07eb6ed9242eda7d82955b9170b7d6db59b2e02cc63fcb8" +"checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" +"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +"checksum libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)" = "34fcd2c08d2f832f376f4173a231990fa5aef4e99fb569867318a227ef4c06ba" +"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" +"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" "checksum normalize-line-endings 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2e0a1a39eab95caf4f5556da9289b9e68f0aafac901b2ce80daaf020d3b733a8" +"checksum normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" "checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32" -"checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" -"checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" -"checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" "checksum phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18" "checksum phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e" "checksum phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662" @@ -1091,67 +1080,67 @@ dependencies = [ "checksum predicates 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "53e09015b0d3f5a0ec2d4428f7559bb7b3fff341b4e159fedd1d57fac8b939ff" "checksum predicates-core 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "06075c3a3e92559ff8929e7a280684489ea27fe44805174c3ebd9328dcb37178" "checksum predicates-tree 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8e63c4859013b38a76eca2414c64911fba30def9e3202ac461a2d22831220124" -"checksum proc-macro2 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)" = "38fddd23d98b2144d197c0eca5705632d4fe2667d14a6be5df8934f8d74f1978" +"checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" +"checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" +"checksum proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "90cf5f418035b98e655e9cdb225047638296b862b42411c4e45bb88d700f7fc0" "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" -"checksum quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1" -"checksum rand 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3906503e80ac6cbcacb2c2973fa8e473f24d7e2747c8c92bb230c2441cad96b5" -"checksum rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d47eab0e83d9693d40f825f86948aa16eff6750ead4bdffc4ab95b8b3a7f052c" +"checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" +"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" +"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" +"checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" -"checksum rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db" -"checksum rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "615e683324e75af5d43d8f7a39ffe3ee4a9dc42c5c701167a71dc59c3a493aca" +"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" +"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" +"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -"checksum rand_os 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f46fbd5550acf75b0c2730f5dd1873751daf9beb8f11b44027778fae50d7feca" -"checksum rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05" +"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" +"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" +"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -"checksum redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)" = "423e376fffca3dfa06c9e9790a9ccd282fafb3cc6e6397d01dbf64f9bacc6b85" -"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" -"checksum regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37e7cbbd370869ce2e8dff25c7018702d10b21a20ef7135316f8daecd6c25b7f" -"checksum regex-automata 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "3ed09217220c272b29ef237a974ad58515bde75f194e3ffa7e6d0bf0f3b01f86" -"checksum regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4e47a2ed29da7a9e1960e1639e7a982e6edc6d49be308a3b02daf511504a16d1" +"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" +"checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" +"checksum regex-automata 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "92b73c2a1770c255c240eaa4ee600df1704a38dc3feaa6e949e7fcd4f8dc09f9" +"checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" -"checksum rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "adacaae16d02b6ec37fdc7acfcddf365978de76d1983d3ee22afc260e1ca9619" +"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -"checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" "checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997" -"checksum same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8f20c4be53a8a1ff4c1f1b2bd14570d2f634628709752f0702ecdd2b3f9a5267" -"checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" +"checksum same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "585e8ddcedc187886a30fa705c47985c3fa88d06624095856b36ca0b82ff4421" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -"checksum serde 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)" = "534b8b91a95e0f71bca3ed5824752d558da048d4248c91af873b63bd60519752" -"checksum serde_derive 1.0.85 (registry+https://github.com/rust-lang/crates.io-index)" = "a915306b0f1ac5607797697148c223bedeaa36bcc2e28a01441cd638cc6567b4" -"checksum serde_json 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)" = "574378d957d6dcdf1bbb5d562a15cbd5e644159432f84634b94e485267abbcc7" +"checksum serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)" = "9796c9b7ba2ffe7a9ce53c2287dfc48080f4b2b362fcc245a259b3a7201119dd" +"checksum serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)" = "4b133a43a1ecd55d4086bd5b4dc6c1751c68b1bfbeba7a5040442022c7e7c02e" +"checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" -"checksum smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "88aea073965ab29f6edb5493faf96ad662fb18aa9eeb186a3b7057951605ed15" -"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" -"checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" -"checksum structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "670ad348dc73012fcf78c71f06f9d942232cdd4c859d4b6975e27836c3efc0c3" -"checksum structopt-derive 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ef98172b1a00b0bec738508d3726540edcbd186d50dfd326f2b1febbb3559f04" -"checksum syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)" = "f92e629aa1d9c827b2bb8297046c1ccffc57c99b947a680d3ccff1f136a3bee9" -"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" +"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" +"checksum structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "16c2cdbf9cc375f15d1b4141bc48aeef444806655cd0e904207edc8d68d86ed7" +"checksum structopt 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe8d3289b63ef2f196d89e7701f986583c0895e764b78f052a55b9b5d34d84a" +"checksum structopt-derive 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "53010261a84b37689f9ed7d395165029f9cc7abb9f56bbfe86bee2597ed25107" +"checksum structopt-derive 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f3add731f5b4fb85931d362a3c92deb1ad7113649a8d51701fb257673705f122" +"checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" +"checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf" +"checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f" "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" "checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" -"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" -"checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" +"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" "checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" "checksum treeline 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f741b240f1a48843f9b8e0444fb55fb2a4ff67293b50a9179dfd5ea67f8d41" -"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" "checksum unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" "checksum unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1967f4cdfc355b37fd76d2a954fb2ed3871034eb4f26d60537d88795cfc332a9" -"checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" +"checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" -"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" -"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" +"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" -"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" -"checksum walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "9d9d7ed3431229a144296213105a390676cc49c9b6a72bd19f3176c98e129fa1" -"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0" +"checksum walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "9658c94fa8b940eab2250bd5a457f9c48b748420d71293b165c8cdbe2f55f71e" +"checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" +"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -"checksum winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "afc5508759c5bf4285e61feb862b6083c8480aec864fa17a81fdec6f69b461ab" +"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -"checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba" +"checksum wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9" diff --git a/Cargo.toml b/Cargo.toml index 428e0fb57..cc05ca1b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -members = ["typos", "typos-dict"] +members = ["codegen", "typos", "typos-dict"] [package] name = "typos-cli" diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml new file mode 100644 index 000000000..2be47c414 --- /dev/null +++ b/codegen/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "typos-codegen" +version = "1.0.0" +authors = ["Ed Page "] +description = "Source Code Spelling Correction" +repository = "https://github.com/crate-ci/imperative" +documentation = "https://docs.rs/imperative" +readme = "README.md" +categories = ["text-processing"] +license = "MIT" +edition = "2018" +publish = false + +[badges] +travis-ci = { repository = "epage/typos" } +appveyor = { repository = "epage/typos" } + +[dependencies] +phf = { version = "0.7", features = ["unicase"] } +phf_codegen = "0.7" +csv = "1.0" +unicase = "1.1" +codegenrs = "0.1" +structopt = "0.3" diff --git a/codegen/src/main.rs b/codegen/src/main.rs new file mode 100644 index 000000000..76382e1a3 --- /dev/null +++ b/codegen/src/main.rs @@ -0,0 +1,62 @@ +use structopt::StructOpt; + +fn generate(input: &[u8], file: &mut W) { + writeln!( + file, + "// This file is code-genned by {}", + env!("CARGO_PKG_NAME") + ) + .unwrap(); + writeln!(file).unwrap(); + writeln!(file, "use unicase::UniCase;").unwrap(); + + writeln!( + file, + "pub(crate) static WORD_DICTIONARY: phf::Map, &'static str> = " + ) + .unwrap(); + let mut builder = phf_codegen::Map::new(); + let records: Vec<_> = csv::Reader::from_reader(input) + .records() + .map(|r| r.unwrap()) + .collect(); + for record in &records { + let value = format!(r#""{}""#, &record[1]); + builder.entry(unicase::UniCase(&record[0]), &value); + } + builder.build(file).unwrap(); + writeln!(file, ";").unwrap(); +} + +#[derive(Debug, StructOpt)] +#[structopt(rename_all = "kebab-case")] +struct Options { + #[structopt(long, parse(from_os_str))] + input: std::path::PathBuf, + #[structopt(flatten)] + codegen: codegenrs::CodeGenArgs, + #[structopt(flatten)] + rustmft: codegenrs::RustfmtArgs, +} + +fn run() -> Result> { + let options = Options::from_args(); + + let content = { + let mut content = vec![]; + let input = std::fs::read(&options.input)?; + generate(&input, &mut content); + content + }; + + let content = String::from_utf8(content)?; + let content = options.rustmft.reformat(&content)?; + options.codegen.write_str(&content)?; + + Ok(0) +} + +fn main() { + let code = run().unwrap(); + std::process::exit(code); +} diff --git a/typos-dict/Cargo.toml b/typos-dict/Cargo.toml index 97fd2d308..763a23923 100644 --- a/typos-dict/Cargo.toml +++ b/typos-dict/Cargo.toml @@ -24,8 +24,3 @@ typos = { version = "0.1", path = "../typos" } phf = { version = "0.7", features = ["unicase"] } unicase = "1.1" log = "0.4" - -[build-dependencies] -phf_codegen = "0.7" -csv = "1.0" -unicase = "1.1" diff --git a/typos-dict/build.rs b/typos-dict/build.rs deleted file mode 100644 index 6b6fdd589..000000000 --- a/typos-dict/build.rs +++ /dev/null @@ -1,33 +0,0 @@ -use std::env; -use std::fs::File; -use std::io::{BufWriter, Write}; -use std::path::Path; - -pub const CORPUS: &[u8] = include_bytes!("./assets/words.csv"); - -fn main() { - let path = Path::new(&env::var("OUT_DIR").unwrap()).join("codegen.rs"); - let mut file = BufWriter::new(File::create(&path).unwrap()); - - println!("rerun-if-changed=./assets/words.csv"); - write!(&mut file, "use unicase::UniCase;").unwrap(); - - write!( - &mut file, - "pub(crate) static WORD_DICTIONARY: phf::Map, &'static str> = " - ) - .unwrap(); - let mut builder = phf_codegen::Map::new(); - let records: Vec<_> = csv::Reader::from_reader(CORPUS) - .records() - .map(|r| r.unwrap()) - .collect(); - for record in &records { - let value = format!(r#""{}""#, &record[1]); - builder.entry(unicase::UniCase(&record[0]), &value); - #[cfg(features = "iterate_unstable")] - break; - } - builder.build(&mut file).unwrap(); - write!(&mut file, ";\n").unwrap(); -} diff --git a/typos-dict/src/dict_codegen.rs b/typos-dict/src/dict_codegen.rs index e0023b15c..4c3a1a15c 100644 --- a/typos-dict/src/dict_codegen.rs +++ b/typos-dict/src/dict_codegen.rs @@ -1,3 +1,35609 @@ -#![allow(clippy::all)] +// This file is code-genned by typos-codegen -include!(concat!(env!("OUT_DIR"), "/codegen.rs")); +use unicase::UniCase; +pub(crate) static WORD_DICTIONARY: phf::Map, &'static str> = + ::phf::Map { + key: 3213172566270843353, + disps: ::phf::Slice::Static(&[ + (0, 0), + (0, 134), + (0, 19), + (0, 4), + (0, 250), + (0, 351), + (0, 789), + (0, 92), + (0, 56), + (0, 553), + (0, 657), + (0, 23), + (0, 24), + (0, 421), + (0, 69), + (0, 1154), + (0, 1269), + (0, 187), + (0, 322), + (0, 10), + (0, 7), + (0, 21), + (0, 3234), + (0, 13), + (0, 1), + (0, 4), + (0, 326), + (0, 111), + (0, 348), + (0, 248), + (0, 1388), + (0, 402), + (0, 192), + (0, 224), + (0, 4), + (0, 37), + (0, 2), + (0, 1), + (0, 0), + (0, 0), + (0, 1453), + (0, 0), + (0, 286), + (0, 206), + (0, 41), + (0, 280), + (0, 788), + (0, 1463), + (0, 17), + (0, 5), + (0, 50), + (0, 701), + (0, 137), + (0, 614), + (0, 43), + (0, 2), + (0, 1498), + (0, 11), + (0, 142), + (0, 3), + (0, 6), + (0, 0), + (0, 2), + (0, 3), + (0, 0), + (0, 67), + (0, 2), + (0, 0), + (0, 34), + (0, 19), + (0, 7), + (0, 21), + (0, 140), + (0, 7), + (0, 142), + (0, 52), + (0, 318), + (0, 0), + (0, 304), + (0, 11), + (0, 2), + (0, 246), + (0, 12), + (0, 8), + (0, 556), + (0, 732), + (0, 1), + (0, 4), + (0, 5), + (0, 1463), + (0, 181), + (0, 5), + (0, 0), + (0, 618), + (0, 0), + (0, 54), + (0, 165), + (0, 326), + (0, 2), + (0, 0), + (0, 2), + (0, 35), + (0, 341), + (0, 4), + (0, 40), + (0, 73), + (0, 139), + (0, 15), + (0, 3), + (0, 28), + (0, 45), + (0, 1), + (0, 200), + (0, 3), + (0, 3), + (0, 1), + (0, 25), + (0, 20), + (0, 0), + (0, 1164), + (0, 125), + (0, 2), + (0, 0), + (0, 772), + (0, 3), + (0, 628), + (0, 199), + (0, 8), + (0, 67), + (0, 33), + (0, 0), + (0, 99), + (0, 62), + (0, 88), + (0, 0), + (0, 0), + (0, 385), + (0, 4), + (0, 1), + (0, 157), + (0, 856), + (0, 3), + (0, 15), + (0, 1), + (0, 18), + (0, 299), + (0, 23), + (0, 35), + (0, 9), + (0, 363), + (0, 39), + (0, 10), + (0, 463), + (0, 2), + (0, 27), + (0, 590), + (0, 50), + (0, 54), + (0, 185), + (0, 4), + (0, 0), + (0, 1865), + (0, 534), + (0, 301), + (0, 9), + (0, 1), + (0, 94), + (0, 24), + (0, 0), + (0, 5), + (0, 9), + (0, 13), + (0, 1), + (0, 33), + (0, 7), + (0, 17), + (0, 26), + (0, 308), + (0, 435), + (0, 209), + (0, 78), + (0, 36), + (0, 0), + (0, 222), + (0, 0), + (0, 0), + (0, 496), + (0, 0), + (0, 0), + (0, 286), + (0, 98), + (0, 0), + (0, 1), + (0, 0), + (0, 34), + (0, 34), + (0, 93), + (0, 14), + (0, 14), + (0, 4), + (0, 13), + (0, 29), + (0, 44), + (0, 742), + (0, 0), + (0, 174), + (0, 4), + (0, 936), + (0, 79), + (0, 9), + (0, 24), + (0, 10), + (0, 1067), + (0, 125), + (0, 229), + (0, 1), + (0, 224), + (0, 1), + (0, 621), + (0, 153), + (0, 222), + (0, 54), + (0, 12), + (0, 92), + (0, 30), + (0, 194), + (0, 9), + (0, 604), + (0, 3), + (0, 15), + (0, 9), + (0, 26), + (0, 1137), + (0, 25), + (0, 52), + (0, 6), + (0, 85), + (0, 664), + (0, 87), + (0, 1), + (0, 1), + (0, 0), + (0, 321), + (0, 681), + (0, 61), + (0, 61), + (0, 1887), + (0, 192), + (0, 62), + (0, 1), + (0, 1200), + (0, 587), + (0, 345), + (0, 110), + (0, 5), + (0, 6), + (0, 178), + (0, 251), + (0, 16), + (0, 2), + (0, 220), + (0, 124), + (0, 852), + (0, 258), + (0, 458), + (0, 6), + (0, 39), + (0, 188), + (0, 42), + (0, 1), + (0, 128), + (0, 2), + (0, 1442), + (0, 101), + (0, 850), + (0, 30), + (0, 256), + (0, 38), + (0, 54), + (0, 7), + (0, 864), + (0, 127), + (0, 5), + (0, 5), + (0, 102), + (0, 9), + (0, 7), + (0, 723), + (0, 7), + (0, 17), + (0, 0), + (0, 0), + (0, 50), + (0, 12), + (0, 32), + (0, 12), + (0, 98), + (0, 49), + (0, 0), + (0, 6), + (0, 97), + (0, 42), + (0, 5), + (0, 144), + (0, 38), + (0, 443), + (0, 1), + (0, 57), + (0, 61), + (0, 396), + (0, 1502), + (0, 800), + (0, 1128), + (0, 136), + (0, 87), + (0, 429), + (0, 171), + (0, 5), + (0, 0), + (0, 60), + (0, 173), + (0, 410), + (0, 37), + (0, 11), + (0, 0), + (0, 5), + (0, 1), + (0, 47), + (0, 0), + (0, 5), + (0, 163), + (0, 0), + (0, 1), + (0, 36), + (0, 3), + (0, 67), + (0, 2227), + (0, 0), + (0, 45), + (0, 1), + (0, 2), + (0, 62), + (0, 883), + (0, 0), + (0, 65), + (0, 45), + (0, 0), + (0, 1), + (0, 2), + (0, 573), + (0, 1084), + (0, 295), + (0, 176), + (0, 39), + (0, 1170), + (0, 0), + (0, 34), + (0, 5), + (0, 30), + (0, 962), + (0, 3), + (0, 1347), + (0, 42), + (0, 2), + (0, 20), + (0, 25), + (0, 2), + (0, 104), + (0, 81), + (0, 110), + (0, 25), + (0, 1), + (0, 1), + (0, 203), + (0, 5), + (0, 569), + (0, 0), + (0, 7), + (0, 22), + (0, 202), + (0, 5), + (0, 3), + (0, 5), + (0, 610), + (0, 4), + (0, 565), + (0, 1167), + (0, 1072), + (0, 13), + (0, 217), + (0, 1003), + (0, 2899), + (0, 614), + (0, 4), + (0, 43), + (0, 39), + (0, 0), + (0, 19), + (0, 42), + (0, 0), + (0, 6), + (0, 15), + (0, 0), + (0, 2), + (0, 1), + (0, 6), + (0, 0), + (0, 6), + (0, 82), + (0, 11), + (0, 41), + (0, 6), + (0, 240), + (0, 65), + (0, 705), + (0, 163), + (0, 412), + (0, 117), + (0, 131), + (0, 114), + (0, 5), + (0, 0), + (0, 82), + (0, 0), + (0, 619), + (0, 1), + (0, 614), + (0, 11), + (0, 338), + (0, 23), + (0, 21), + (0, 1), + (0, 11), + (0, 29), + (0, 236), + (0, 498), + (0, 307), + (0, 23), + (0, 54), + (0, 1), + (0, 255), + (0, 1), + (0, 0), + (0, 0), + (0, 171), + (0, 857), + (0, 2), + (0, 35), + (0, 31), + (0, 227), + (0, 86), + (0, 1), + (0, 4), + (0, 18), + (0, 430), + (0, 0), + (0, 0), + (0, 408), + (0, 35), + (0, 140), + (0, 0), + (0, 1394), + (0, 579), + (0, 7), + (0, 10), + (0, 10), + (0, 42), + (0, 115), + (0, 218), + (0, 15), + (0, 82), + (0, 322), + (0, 1), + (0, 26), + (0, 206), + (0, 3), + (0, 83), + (0, 88), + (0, 573), + (0, 0), + (0, 1), + (0, 433), + (0, 3334), + (0, 42), + (0, 33), + (0, 27), + (0, 2), + (0, 203), + (0, 0), + (0, 75), + (0, 0), + (0, 447), + (0, 0), + (0, 0), + (0, 278), + (0, 2), + (0, 0), + (0, 137), + (0, 2), + (0, 48), + (0, 0), + (0, 95), + (0, 0), + (0, 163), + (0, 162), + (0, 0), + (0, 1), + (0, 225), + (0, 76), + (0, 5), + (0, 894), + (0, 0), + (0, 14), + (0, 2), + (0, 234), + (0, 0), + (0, 7), + (0, 118), + (0, 38), + (0, 379), + (0, 2), + (0, 417), + (0, 1), + (0, 3), + (0, 133), + (0, 70), + (0, 1), + (0, 17), + (0, 0), + (0, 89), + (0, 2), + (0, 124), + (0, 3), + (0, 90), + (0, 87), + (0, 728), + (0, 88), + (0, 2), + (0, 2), + (0, 0), + (0, 138), + (0, 484), + (0, 33), + (0, 0), + (0, 1112), + (0, 53), + (0, 196), + (0, 464), + (0, 0), + (0, 3625), + (0, 14), + (0, 35), + (0, 0), + (0, 115), + (0, 101), + (0, 250), + (0, 111), + (0, 114), + (0, 582), + (0, 147), + (0, 109), + (0, 42), + (0, 143), + (0, 4), + (0, 3), + (0, 17), + (0, 86), + (0, 90), + (0, 24), + (0, 467), + (0, 135), + (0, 407), + (0, 888), + (0, 2701), + (0, 3), + (0, 13), + (0, 0), + (0, 2), + (0, 554), + (0, 2), + (0, 847), + (0, 0), + (0, 0), + (0, 11), + (0, 60), + (0, 177), + (0, 3), + (0, 2), + (0, 789), + (0, 304), + (0, 3), + (0, 29), + (0, 30), + (0, 90), + (0, 216), + (0, 2), + (0, 386), + (0, 9), + (0, 353), + (0, 1), + (0, 341), + (0, 0), + (0, 9), + (0, 179), + (0, 0), + (0, 590), + (0, 587), + (0, 283), + (0, 0), + (0, 13), + (0, 752), + (0, 25), + (0, 7), + (0, 161), + (0, 0), + (0, 113), + (0, 5), + (0, 48), + (0, 396), + (0, 212), + (0, 0), + (0, 138), + (0, 86), + (0, 32), + (0, 0), + (0, 258), + (0, 6), + (0, 12), + (0, 8), + (0, 1), + (0, 1), + (0, 1), + (0, 1), + (0, 499), + (0, 33), + (0, 2714), + (0, 1259), + (0, 553), + (0, 1), + (0, 23), + (0, 66), + (0, 1), + (0, 100), + (0, 92), + (0, 9), + (0, 3), + (0, 2), + (0, 1), + (0, 6), + (0, 956), + (0, 618), + (0, 1), + (0, 142), + (0, 33), + (0, 2), + (0, 1156), + (0, 1), + (0, 225), + (0, 11), + (0, 610), + (0, 91), + (0, 0), + (0, 0), + (0, 29), + (0, 1562), + (0, 616), + (0, 635), + (0, 428), + (0, 159), + (0, 461), + (0, 7), + (0, 64), + (0, 5), + (0, 13), + (0, 30), + (0, 2), + (0, 25), + (0, 1), + (0, 81), + (0, 4), + (0, 1), + (0, 1153), + (0, 157), + (0, 324), + (0, 245), + (0, 14), + (0, 0), + (0, 34), + (0, 37), + (0, 75), + (0, 64), + (0, 58), + (0, 35), + (0, 5), + (0, 15), + (0, 64), + (0, 2932), + (0, 163), + (0, 162), + (0, 438), + (0, 9), + (0, 106), + (0, 88), + (0, 156), + (0, 2), + (0, 2), + (0, 1028), + (0, 1722), + (0, 125), + (0, 10), + (0, 322), + (0, 259), + (0, 1573), + (0, 65), + (0, 2538), + (0, 14), + (0, 82), + (0, 67), + (0, 313), + (0, 297), + (0, 2), + (0, 48), + (0, 25), + (0, 5), + (0, 83), + (0, 69), + (0, 45), + (0, 21), + (0, 20), + (0, 1297), + (0, 4), + (0, 0), + (0, 0), + (0, 13), + (0, 1), + (0, 0), + (0, 681), + (0, 77), + (0, 17), + (0, 467), + (0, 10), + (0, 5), + (0, 4), + (0, 100), + (0, 374), + (0, 267), + (0, 45), + (0, 9), + (0, 134), + (0, 0), + (0, 72), + (0, 0), + (0, 464), + (0, 554), + (0, 143), + (0, 1243), + (0, 654), + (0, 3), + (0, 1), + (0, 44), + (0, 4), + (0, 109), + (0, 34), + (0, 3), + (0, 0), + (0, 1), + (0, 522), + (0, 16), + (0, 3), + (0, 20), + (0, 16), + (0, 48), + (0, 277), + (0, 76), + (0, 990), + (0, 103), + (0, 734), + (0, 231), + (0, 0), + (0, 127), + (0, 1009), + (0, 799), + (0, 61), + (0, 0), + (0, 12), + (0, 68), + (0, 0), + (0, 71), + (0, 0), + (0, 28), + (0, 160), + (0, 148), + (0, 181), + (0, 0), + (0, 426), + (0, 18), + (0, 0), + (0, 366), + (0, 24), + (0, 364), + (0, 5), + (0, 28), + (0, 6), + (0, 78), + (0, 44), + (0, 6), + (0, 10), + (0, 15), + (0, 297), + (0, 31), + (0, 1530), + (0, 0), + (0, 19), + (0, 240), + (0, 20), + (0, 1164), + (0, 2), + (0, 560), + (0, 16), + (0, 1830), + (0, 1557), + (0, 116), + (0, 366), + (0, 405), + (0, 68), + (0, 68), + (0, 26), + (0, 394), + (0, 28), + (0, 0), + (0, 7), + (0, 2), + (0, 939), + (0, 862), + (0, 0), + (0, 363), + (0, 1772), + (0, 1008), + (0, 25), + (0, 183), + (0, 40), + (0, 724), + (0, 18), + (0, 16), + (0, 62), + (0, 452), + (0, 49), + (0, 353), + (0, 11), + (0, 878), + (0, 10), + (0, 116), + (0, 252), + (0, 6), + (0, 529), + (0, 8), + (0, 8), + (0, 4), + (0, 1), + (0, 0), + (0, 0), + (0, 572), + (0, 156), + (0, 1230), + (0, 11), + (0, 5), + (0, 303), + (0, 61), + (0, 315), + (0, 0), + (0, 817), + (0, 22), + (0, 5), + (0, 1), + (0, 18), + (0, 1173), + (0, 2), + (0, 1), + (0, 124), + (0, 146), + (0, 2001), + (0, 349), + (0, 0), + (0, 532), + (0, 72), + (0, 507), + (0, 186), + (0, 0), + (0, 691), + (0, 1102), + (0, 59), + (0, 0), + (0, 1321), + (0, 2), + (0, 6832), + (0, 26), + (0, 644), + (0, 121), + (0, 5), + (0, 29), + (0, 113), + (0, 3), + (0, 421), + (0, 1), + (0, 29), + (0, 154), + (0, 2), + (0, 207), + (0, 482), + (0, 175), + (0, 57), + (0, 54), + (0, 14), + (0, 2), + (0, 11), + (0, 270), + (0, 513), + (0, 642), + (0, 39), + (0, 67), + (0, 5979), + (0, 36), + (0, 0), + (0, 115), + (0, 0), + (0, 20), + (0, 2), + (0, 438), + (0, 3), + (0, 207), + (0, 105), + (0, 3), + (0, 93), + (0, 6), + (0, 127), + (0, 94), + (0, 0), + (0, 51), + (0, 4), + (0, 209), + (0, 117), + (0, 10), + (0, 41), + (0, 257), + (0, 897), + (0, 274), + (0, 0), + (0, 0), + (0, 29), + (0, 742), + (0, 23), + (0, 0), + (0, 6), + (0, 11), + (0, 107), + (0, 1), + (0, 0), + (0, 802), + (0, 29), + (0, 920), + (0, 383), + (0, 64), + (0, 143), + (0, 342), + (0, 0), + (0, 4), + (0, 21), + (0, 14), + (0, 14), + (0, 5), + (0, 0), + (0, 1), + (0, 58), + (0, 103), + (0, 1173), + (0, 7), + (0, 282), + (0, 16), + (0, 8), + (0, 11), + (0, 435), + (0, 7), + (0, 13), + (0, 22), + (0, 69), + (0, 75), + (0, 0), + (0, 9), + (0, 16), + (0, 2), + (0, 12), + (0, 1643), + (0, 438), + (0, 163), + (0, 1), + (0, 4), + (0, 1), + (0, 869), + (0, 395), + (0, 28), + (0, 75), + (0, 2118), + (0, 62), + (0, 42), + (0, 132), + (0, 0), + (0, 0), + (0, 195), + (0, 95), + (0, 1973), + (0, 10), + (0, 52), + (0, 255), + (0, 3), + (0, 67), + (0, 1), + (0, 64), + (0, 296), + (0, 16), + (0, 1), + (0, 8), + (0, 10), + (0, 625), + (0, 53), + (0, 45), + (0, 1392), + (0, 222), + (0, 2008), + (0, 0), + (0, 633), + (0, 10), + (0, 0), + (0, 1), + (0, 132), + (0, 127), + (0, 839), + (0, 1), + (0, 2573), + (0, 951), + (0, 819), + (0, 26), + (0, 1), + (0, 410), + (0, 0), + (0, 494), + (0, 163), + (0, 439), + (0, 63), + (0, 9), + (0, 4), + (0, 37), + (0, 7), + (0, 0), + (0, 32), + (0, 42), + (0, 38), + (0, 99), + (0, 19), + (0, 97), + (0, 94), + (0, 4), + (0, 34), + (0, 38), + (0, 9), + (0, 188), + (0, 28), + (0, 2), + (0, 0), + (0, 197), + (0, 36), + (0, 131), + (0, 0), + (0, 133), + (0, 3), + (0, 194), + (0, 11), + (0, 1), + (0, 2376), + (0, 727), + (0, 15), + (0, 245), + (0, 98), + (0, 799), + (0, 3949), + (0, 4), + (0, 3), + (0, 246), + (0, 307), + (0, 210), + (0, 6), + (0, 1405), + (0, 388), + (0, 7), + (0, 194), + (0, 0), + (0, 103), + (0, 3743), + (0, 83), + (0, 252), + (0, 1387), + (0, 43), + (0, 15), + (0, 35), + (0, 0), + (0, 30), + (0, 180), + (0, 100), + (0, 149), + (0, 1589), + (0, 324), + (0, 2379), + (0, 0), + (0, 0), + (0, 311), + (0, 3282), + (0, 3), + (0, 452), + (0, 43), + (0, 48), + (0, 420), + (0, 11), + (0, 16), + (0, 825), + (0, 0), + (0, 6), + (0, 1132), + (0, 2844), + (0, 171), + (0, 31), + (0, 34), + (0, 4), + (0, 0), + (0, 189), + (0, 2), + (0, 34), + (0, 7), + (0, 13), + (0, 259), + (0, 1111), + (0, 1998), + (0, 758), + (0, 229), + (0, 2), + (0, 894), + (0, 666), + (0, 9), + (0, 6), + (0, 7), + (0, 286), + (0, 424), + (0, 1269), + (0, 19), + (0, 324), + (0, 6), + (0, 208), + (0, 0), + (0, 43), + (0, 15), + (0, 45), + (0, 1), + (0, 1), + (0, 1458), + (0, 23), + (0, 10), + (0, 70), + (0, 35), + (0, 1144), + (0, 721), + (0, 21), + (0, 117), + (0, 152), + (0, 12), + (0, 406), + (0, 13), + (0, 55), + (0, 117), + (0, 174), + (0, 11), + (0, 366), + (0, 1), + (0, 762), + (0, 479), + (0, 17), + (0, 148), + (0, 11), + (0, 29), + (0, 0), + (0, 355), + (0, 1), + (0, 0), + (0, 0), + (0, 0), + (0, 0), + (0, 0), + (0, 11), + (0, 2), + (0, 0), + (0, 120), + (0, 5), + (0, 4), + (0, 11), + (0, 0), + (0, 51), + (0, 20), + (0, 273), + (0, 37), + (0, 6), + (0, 13), + (0, 800), + (0, 313), + (0, 3), + (0, 83), + (0, 4), + (0, 725), + (0, 3), + (0, 847), + (0, 1372), + (0, 0), + (0, 2), + (0, 1236), + (0, 11), + (0, 7), + (0, 7), + (0, 731), + (0, 215), + (0, 32), + (0, 3), + (0, 15), + (0, 349), + (0, 7), + (0, 335), + (0, 952), + (0, 142), + (0, 1), + (0, 0), + (0, 55), + (0, 153), + (0, 361), + (0, 5), + (0, 0), + (0, 383), + (0, 70), + (0, 0), + (0, 175), + (0, 150), + (0, 220), + (0, 2), + (0, 231), + (0, 24), + (0, 243), + (0, 70), + (0, 3), + (0, 862), + (0, 34), + (0, 37), + (0, 1561), + (0, 3), + (0, 2515), + (0, 0), + (0, 1), + (0, 151), + (0, 66), + (0, 39), + (0, 619), + (0, 67), + (0, 4), + (0, 31), + (0, 159), + (0, 56), + (0, 4), + (0, 38), + (0, 23), + (0, 617), + (0, 182), + (0, 8), + (0, 336), + (0, 256), + (0, 157), + (0, 12), + (0, 135), + (0, 1189), + (0, 25), + (0, 63), + (0, 0), + (0, 113), + (0, 0), + (0, 720), + (0, 1), + (0, 4), + (0, 0), + (0, 0), + (0, 414), + (0, 0), + (0, 17), + (0, 144), + (0, 1014), + (0, 121), + (0, 4), + (0, 1), + (0, 208), + (0, 6), + (0, 0), + (0, 82), + (0, 25), + (0, 27), + (0, 113), + (0, 7), + (0, 277), + (0, 3395), + (0, 2592), + (0, 508), + (0, 0), + (0, 53), + (0, 1126), + (0, 1), + (0, 336), + (0, 26), + (0, 100), + (0, 27), + (0, 31), + (0, 450), + (0, 1), + (0, 161), + (0, 4), + (0, 287), + (0, 605), + (0, 276), + (0, 25), + (0, 72), + (0, 5), + (0, 779), + (0, 751), + (0, 3), + (0, 6), + (0, 180), + (0, 4060), + (0, 206), + (0, 453), + (0, 0), + (0, 937), + (0, 62), + (0, 258), + (0, 25), + (0, 203), + (0, 0), + (0, 8), + (0, 375), + (0, 32), + (0, 13), + (0, 59), + (0, 1831), + (0, 1), + (0, 0), + (0, 12), + (0, 524), + (0, 233), + (0, 1376), + (0, 0), + (0, 1), + (0, 61), + (0, 343), + (0, 0), + (0, 2), + (0, 195), + (0, 180), + (0, 158), + (0, 88), + (0, 81), + (0, 17), + (0, 184), + (0, 2), + (0, 4), + (0, 125), + (0, 19), + (0, 2), + (0, 8), + (0, 401), + (0, 1941), + (0, 487), + (0, 2), + (0, 417), + (0, 588), + (0, 341), + (0, 2383), + (0, 492), + (0, 1538), + (0, 17), + (0, 11), + (0, 23), + (0, 1073), + (0, 9), + (0, 176), + (0, 2), + (0, 9), + (0, 281), + (0, 915), + (0, 532), + (0, 1233), + (0, 23), + (0, 43), + (0, 6), + (0, 6), + (0, 348), + (0, 2), + (0, 2328), + (0, 87), + (0, 3129), + (0, 1), + (0, 522), + (0, 5), + (0, 507), + (0, 458), + (0, 5), + (0, 12), + (0, 1759), + (0, 0), + (0, 1), + (0, 5), + (0, 12), + (0, 0), + (0, 453), + (0, 41), + (0, 442), + (0, 93), + (0, 9), + (0, 4), + (0, 0), + (0, 3), + (0, 1704), + (0, 1224), + (0, 4), + (0, 953), + (0, 768), + (0, 1), + (0, 59), + (0, 4), + (0, 0), + (0, 3), + (0, 2), + (0, 0), + (0, 1312), + (0, 0), + (0, 1), + (0, 313), + (0, 298), + (0, 1), + (0, 7), + (0, 767), + (0, 222), + (0, 52), + (0, 27), + (0, 340), + (0, 362), + (0, 195), + (0, 0), + (0, 10), + (0, 0), + (0, 3), + (0, 652), + (0, 2), + (0, 203), + (0, 1630), + (0, 1), + (0, 40), + (0, 0), + (0, 338), + (0, 769), + (0, 3), + (0, 1014), + (0, 263), + (0, 9), + (0, 1), + (0, 318), + (0, 461), + (0, 97), + (0, 1131), + (0, 13), + (0, 19), + (0, 543), + (0, 80), + (0, 1102), + (0, 2), + (0, 43), + (0, 41), + (0, 1347), + (0, 993), + (0, 1430), + (0, 125), + (0, 50), + (0, 1111), + (0, 298), + (0, 1536), + (0, 71), + (0, 21), + (0, 97), + (0, 12), + (0, 1), + (0, 157), + (0, 8), + (0, 504), + (0, 6), + (0, 3), + (0, 82), + (0, 998), + (0, 991), + (0, 10), + (0, 76), + (0, 263), + (0, 11), + (0, 3003), + (0, 39), + (0, 6), + (0, 0), + (0, 1656), + (0, 70), + (0, 8), + (0, 203), + (0, 4), + (0, 4), + (0, 358), + (0, 0), + (0, 5), + (0, 3), + (0, 39), + (0, 417), + (0, 927), + (0, 1074), + (0, 53), + (0, 0), + (0, 1066), + (0, 3419), + (0, 123), + (0, 0), + (0, 2115), + (0, 2779), + (0, 374), + (0, 14), + (0, 27), + (0, 44), + (0, 430), + (0, 8), + (0, 4), + (0, 933), + (0, 2106), + (0, 63), + (0, 97), + (0, 18), + (0, 6), + (0, 20), + (0, 10), + (0, 13), + (0, 116), + (0, 433), + (0, 4463), + (0, 163), + (0, 1), + (0, 3), + (0, 386), + (0, 21), + (0, 1), + (0, 33), + (0, 0), + (0, 249), + (0, 3933), + (0, 1717), + (0, 2), + (0, 11), + (0, 4293), + (0, 5), + (0, 1), + (0, 5), + (0, 56), + (0, 240), + (0, 97), + (0, 0), + (0, 81), + (0, 68), + (0, 151), + (0, 5), + (0, 1), + (0, 4), + (0, 0), + (0, 6), + (0, 0), + (0, 90), + (0, 26), + (0, 669), + (0, 91), + (0, 48), + (0, 12), + (0, 71), + (0, 173), + (0, 316), + (0, 24), + (0, 33), + (0, 79), + (0, 3), + (0, 39), + (0, 190), + (0, 18), + (0, 49), + (0, 145), + (0, 149), + (0, 47), + (0, 262), + (0, 27), + (0, 59), + (0, 6), + (0, 324), + (0, 183), + (0, 25), + (0, 7), + (0, 365), + (0, 62), + (0, 380), + (0, 18), + (0, 20), + (0, 1224), + (0, 18), + (0, 0), + (0, 28), + (0, 9), + (0, 0), + (0, 8), + (0, 425), + (0, 223), + (0, 0), + (0, 9), + (0, 215), + (0, 18), + (0, 6), + (0, 277), + (0, 641), + (0, 142), + (0, 43), + (0, 100), + (0, 6), + (0, 194), + (0, 10), + (0, 240), + (0, 1), + (0, 4), + (0, 1), + (0, 162), + (0, 22), + (0, 2), + (0, 40), + (0, 238), + (0, 1840), + (0, 1052), + (0, 2), + (0, 3), + (0, 3642), + (0, 0), + (0, 477), + (0, 1511), + (0, 0), + (0, 345), + (0, 8981), + (0, 13), + (0, 12), + (0, 105), + (0, 37), + (0, 94), + (0, 0), + (0, 0), + (0, 232), + (0, 12), + (0, 66), + (0, 309), + (0, 254), + (0, 1239), + (0, 1031), + (0, 4), + (0, 2080), + (0, 37), + (0, 3), + (0, 93), + (0, 641), + (0, 35), + (0, 20), + (0, 2081), + (0, 1802), + (0, 301), + (0, 1045), + (0, 22), + (0, 7), + (0, 708), + (0, 161), + (0, 712), + (0, 6), + (0, 15), + (0, 16), + (0, 1), + (0, 1), + (0, 67), + (0, 264), + (0, 11), + (0, 57), + (0, 2051), + (0, 43), + (0, 21), + (0, 172), + (0, 23), + (0, 3), + (0, 201), + (0, 114), + (0, 354), + (0, 22), + (1, 8), + (0, 6), + (0, 0), + (0, 1464), + (0, 0), + (0, 161), + (0, 8), + (0, 0), + (0, 161), + (0, 2), + (0, 6), + (0, 23), + (0, 36), + (0, 559), + (0, 477), + (0, 52), + (0, 21), + (0, 0), + (0, 1996), + (0, 10), + (0, 20), + (0, 10), + (0, 210), + (0, 149), + (0, 8), + (0, 3), + (0, 2053), + (0, 0), + (0, 2), + (0, 24), + (0, 51), + (0, 3), + (0, 0), + (0, 7), + (0, 1), + (0, 2162), + (0, 3254), + (0, 473), + (0, 195), + (0, 458), + (0, 39), + (0, 258), + (0, 19), + (0, 133), + (0, 525), + (0, 865), + (0, 202), + (0, 67), + (0, 124), + (0, 2826), + (0, 31), + (0, 2), + (0, 0), + (0, 9), + (0, 16), + (0, 0), + (0, 322), + (0, 93), + (0, 5), + (0, 4), + (0, 60), + (0, 1), + (0, 55), + (0, 90), + (0, 392), + (0, 563), + (0, 77), + (0, 742), + (0, 434), + (0, 11), + (0, 79), + (0, 62), + (0, 0), + (0, 428), + (0, 707), + (0, 763), + (0, 32), + (0, 3140), + (0, 82), + (0, 26), + (0, 230), + (0, 411), + (0, 5), + (0, 62), + (0, 1500), + (0, 15), + (0, 501), + (0, 85), + (0, 0), + (0, 324), + (0, 12), + (0, 11), + (0, 1), + (0, 10), + (0, 37), + (0, 50), + (0, 2), + (0, 3358), + (0, 6), + (0, 1952), + (0, 594), + (0, 678), + (0, 0), + (0, 977), + (0, 15), + (0, 46), + (0, 0), + (0, 2), + (0, 1471), + (0, 224), + (0, 12), + (0, 108), + (0, 271), + (0, 0), + (0, 587), + (0, 0), + (0, 0), + (0, 1), + (0, 1331), + (0, 3), + (0, 41), + (0, 663), + (0, 2), + (0, 36), + (0, 933), + (0, 101), + (0, 87), + (0, 36), + (0, 957), + (0, 516), + (0, 1462), + (0, 1190), + (0, 190), + (0, 4), + (0, 97), + (0, 4), + (0, 2), + (0, 120), + (0, 26), + (0, 0), + (0, 48), + (0, 55), + (0, 71), + (0, 270), + (0, 7), + (0, 2071), + (0, 1152), + (0, 31), + (0, 31), + (0, 1), + (0, 97), + (0, 516), + (0, 7), + (0, 3), + (0, 1468), + (0, 20), + (0, 431), + (0, 32), + (0, 53), + (0, 1), + (0, 67), + (0, 45), + (0, 6338), + (0, 50), + (0, 74), + (0, 66), + (0, 102), + (0, 17), + (0, 3), + (0, 63), + (0, 347), + (0, 87), + (0, 13), + (0, 145), + (0, 23), + (0, 452), + (0, 129), + (0, 0), + (0, 153), + (0, 632), + (0, 1), + (0, 1), + (0, 152), + (0, 36), + (0, 8), + (0, 1004), + (0, 256), + (0, 288), + (0, 441), + (0, 370), + (0, 0), + (0, 567), + (0, 97), + (0, 703), + (0, 10), + (0, 1915), + (0, 68), + (0, 50), + (0, 3), + (0, 0), + (0, 1263), + (0, 12), + (0, 1439), + (0, 284), + (0, 419), + (0, 85), + (0, 31), + (0, 0), + (0, 0), + (0, 647), + (0, 2), + (0, 948), + (0, 713), + (0, 3084), + (0, 19), + (0, 39), + (0, 58), + (0, 567), + (0, 427), + (0, 23), + (0, 2970), + (0, 1552), + (0, 312), + (0, 315), + (0, 142), + (0, 0), + (0, 1488), + (0, 38), + (0, 53), + (0, 32), + (0, 20), + (0, 637), + (0, 15), + (0, 2), + (0, 3), + (0, 1933), + (0, 0), + (0, 0), + (0, 0), + (0, 89), + (0, 3), + (0, 14), + (0, 1), + (0, 18), + (0, 495), + (0, 1191), + (0, 27), + (0, 4327), + (0, 36), + (0, 844), + (0, 304), + (0, 234), + (0, 796), + (0, 18), + (0, 16), + (0, 141), + (0, 0), + (0, 18), + (0, 549), + (0, 2), + (0, 4), + (0, 204), + (0, 7), + (0, 31), + (0, 80), + (0, 17), + (0, 15), + (0, 16), + (0, 531), + (0, 350), + (0, 1), + (0, 1056), + (0, 24), + (0, 4), + (0, 291), + (0, 1258), + (0, 85), + (0, 2854), + (0, 27), + (0, 23), + (0, 34), + (0, 1686), + (0, 1), + (0, 1553), + (0, 36), + (0, 5), + (0, 3), + (0, 7), + (0, 19), + (0, 119), + (0, 769), + (0, 3), + (0, 0), + (0, 28), + (0, 133), + (0, 148), + (0, 3), + (0, 226), + (0, 500), + (0, 770), + (0, 21), + (0, 18), + (0, 93), + (0, 13), + (0, 5), + (0, 689), + (0, 18), + (0, 920), + (0, 3), + (0, 1947), + (0, 4825), + (0, 7), + (0, 12), + (0, 1812), + (0, 2546), + (0, 3), + (0, 587), + (0, 45), + (0, 5), + (0, 1), + (0, 18), + (0, 1), + (0, 14), + (0, 947), + (0, 989), + (0, 2), + (0, 164), + (0, 0), + (0, 27), + (0, 0), + (0, 4), + (0, 2), + (0, 1102), + (0, 423), + (0, 0), + (0, 0), + (0, 1446), + (0, 86), + (0, 1757), + (0, 5), + (0, 0), + (0, 227), + (0, 195), + (0, 2), + (0, 0), + (0, 43), + (0, 84), + (0, 2), + (0, 32), + (0, 55), + (0, 43), + (0, 40), + (0, 207), + (0, 8), + (0, 4398), + (0, 351), + (0, 64), + (0, 425), + (0, 0), + (0, 1852), + (0, 1), + (0, 43), + (0, 145), + (0, 50), + (0, 24), + (0, 74), + (0, 263), + (0, 1490), + (0, 1234), + (0, 27), + (0, 1), + (0, 1963), + (0, 79), + (0, 2), + (0, 0), + (0, 106), + (0, 23), + (0, 1200), + (0, 340), + (0, 529), + (0, 13), + (0, 6), + (0, 346), + (0, 9), + (0, 12), + (0, 18), + (0, 48), + (0, 0), + (0, 0), + (0, 1215), + (0, 11), + (0, 1), + (0, 91), + (0, 4), + (0, 3), + (0, 1906), + (0, 566), + (0, 7), + (0, 116), + (0, 438), + (0, 55), + (0, 333), + (0, 1016), + (0, 191), + (0, 52), + (0, 2317), + (0, 346), + (0, 1565), + (0, 46), + (0, 77), + (0, 28), + (0, 0), + (0, 12), + (0, 980), + (0, 264), + (0, 1809), + (0, 28), + (0, 33), + (0, 1), + (0, 8), + (0, 29), + (0, 3), + (0, 368), + (0, 6), + (0, 93), + (0, 54), + (0, 0), + (0, 1), + (0, 10), + (0, 505), + (0, 30), + (0, 0), + (0, 3), + (0, 2), + (0, 3), + (0, 574), + (0, 7328), + (0, 1), + (0, 40), + (0, 49), + (0, 40), + (0, 1684), + (0, 290), + (0, 13), + (0, 0), + (0, 5296), + (0, 145), + (0, 44), + (0, 58), + (0, 33), + (0, 333), + (0, 31), + (0, 386), + (0, 71), + (0, 492), + (0, 423), + (0, 51), + (0, 13), + (0, 8), + (0, 102), + (0, 520), + (0, 57), + (0, 143), + (0, 830), + (0, 1947), + (0, 53), + (0, 5), + (0, 264), + (0, 618), + (0, 16), + (0, 42), + (0, 436), + (0, 1205), + (0, 1672), + (0, 736), + (0, 748), + (0, 1892), + (0, 1168), + (0, 34), + (0, 85), + (0, 407), + (0, 163), + (0, 53), + (0, 1159), + (0, 6), + (0, 3), + (0, 2), + (0, 168), + (0, 656), + (0, 1648), + (0, 15), + (0, 2), + (0, 3), + (0, 19), + (0, 10), + (0, 11), + (0, 345), + (0, 52), + (0, 299), + (0, 158), + (0, 1), + (0, 14), + (0, 3727), + (0, 78), + (0, 6), + (0, 92), + (0, 172), + (0, 1797), + (0, 1), + (0, 823), + (0, 48), + (0, 0), + (0, 600), + (0, 48), + (0, 58), + (0, 11), + (0, 916), + (0, 6), + (0, 155), + (0, 15), + (0, 2775), + (0, 167), + (0, 23), + (0, 52), + (0, 15), + (0, 49), + (0, 17), + (0, 5), + (0, 9), + (0, 19), + (0, 90), + (0, 3), + (0, 114), + (0, 67), + (0, 13), + (0, 1856), + (0, 283), + (0, 467), + (0, 108), + (0, 31), + (0, 4), + (0, 145), + (0, 2), + (0, 54), + (0, 57), + (0, 60), + (0, 1786), + (0, 155), + (0, 205), + (0, 19), + (0, 1417), + (0, 125), + (0, 2318), + (0, 22), + (0, 1), + (0, 2021), + (0, 32), + (0, 876), + (0, 26), + (0, 508), + (0, 7), + (0, 3), + (0, 0), + (0, 75), + (0, 108), + (0, 469), + (0, 120), + (0, 237), + (0, 4), + (0, 2), + (0, 696), + (0, 39), + (0, 73), + (0, 0), + (0, 1055), + (0, 8), + (0, 0), + (0, 4772), + (0, 235), + (0, 4605), + (0, 367), + (0, 18), + (0, 3), + (0, 173), + (0, 69), + (0, 16), + (0, 3), + (0, 1264), + (0, 48), + (0, 6343), + (0, 17), + (0, 1844), + (0, 3700), + (0, 5), + (0, 0), + (0, 449), + (0, 0), + (0, 1770), + (0, 568), + (0, 23), + (0, 71), + (0, 43), + (0, 788), + (0, 920), + (0, 0), + (0, 0), + (0, 10), + (0, 0), + (0, 0), + (0, 115), + (0, 1), + (0, 243), + (0, 1968), + (0, 17), + (0, 22), + (0, 170), + (0, 90), + (0, 319), + (0, 530), + (0, 11), + (0, 199), + (0, 65), + (0, 1648), + (0, 3), + (0, 381), + (0, 513), + (0, 2), + (0, 47), + (0, 43), + (0, 0), + (0, 0), + (0, 30), + (0, 0), + (0, 9), + (0, 26), + (0, 148), + (0, 2), + (0, 62), + (0, 411), + (0, 0), + (0, 24), + (0, 302), + (0, 6), + (0, 100), + (0, 1820), + (0, 786), + (0, 392), + (0, 8), + (0, 79), + (0, 71), + (0, 268), + (0, 425), + (0, 45), + (0, 122), + (0, 1478), + (0, 1594), + (0, 1436), + (0, 274), + (0, 38), + (0, 28), + (0, 1411), + (0, 182), + (0, 1), + (0, 10), + (0, 1612), + (0, 568), + (0, 11), + (0, 2033), + (0, 96), + (0, 4), + (0, 1869), + (0, 7727), + (0, 159), + (0, 142), + (0, 35), + (0, 0), + (0, 366), + (0, 2686), + (0, 2), + (0, 2934), + (0, 94), + (0, 20), + (0, 336), + (0, 3156), + (0, 0), + (0, 129), + (0, 0), + (0, 155), + (0, 1126), + (0, 29), + (0, 1), + (0, 17), + (0, 18), + (0, 446), + (0, 322), + (0, 5), + (0, 3198), + (0, 13), + (0, 460), + (0, 353), + (0, 12), + (0, 46), + (0, 11), + (0, 1072), + (0, 10), + (0, 40), + (0, 37), + (0, 2766), + (0, 217), + (0, 238), + (0, 0), + (0, 124), + (0, 663), + (0, 164), + (0, 6), + (0, 3284), + (0, 1184), + (0, 102), + (0, 9), + (0, 98), + (0, 11), + (0, 493), + (0, 291), + (0, 219), + (0, 559), + (0, 6383), + (0, 154), + (0, 575), + (0, 4), + (0, 0), + (0, 26), + (0, 24), + (0, 262), + (0, 40), + (0, 1), + (0, 238), + (0, 1783), + (0, 132), + (0, 427), + (0, 421), + (0, 1409), + (0, 146), + (0, 1220), + (0, 1), + (0, 0), + (0, 40), + (0, 384), + (0, 71), + (0, 96), + (0, 1), + (0, 0), + (0, 0), + (0, 0), + (0, 47), + (0, 0), + (0, 329), + (0, 8), + (0, 51), + (0, 2290), + (0, 0), + (0, 489), + (0, 685), + (0, 56), + (0, 77), + (0, 2), + (0, 1), + (0, 2493), + (0, 1924), + (0, 3), + (0, 12), + (0, 47), + (0, 283), + (0, 161), + (0, 1), + (0, 24), + (0, 25), + (0, 38), + (0, 57), + (0, 11), + (0, 1), + (0, 5851), + (0, 85), + (0, 203), + (0, 2), + (0, 563), + (0, 13), + (0, 30), + (0, 21), + (0, 3080), + (0, 5079), + (0, 8), + (0, 9), + (0, 2780), + (0, 1116), + (0, 46), + (0, 56), + (0, 28), + (0, 3), + (0, 78), + (0, 5), + (0, 4374), + (0, 109), + (0, 5), + (0, 48), + (0, 1907), + (0, 376), + (0, 0), + (0, 1827), + (0, 1007), + (0, 4), + (0, 1), + (0, 316), + (0, 7), + (0, 5), + (0, 259), + (0, 287), + (0, 60), + (0, 87), + (0, 24), + (0, 0), + (0, 964), + (0, 24), + (0, 56), + (0, 1259), + (0, 29), + (0, 33), + (0, 563), + (0, 0), + (0, 12), + (0, 394), + (0, 16), + (0, 211), + (0, 223), + (0, 0), + (0, 10605), + (0, 582), + (0, 0), + (0, 22), + (0, 130), + (0, 17), + (0, 5), + (0, 2), + (0, 161), + (0, 272), + (0, 601), + (0, 45), + (0, 1288), + (0, 0), + (0, 0), + (0, 7), + (0, 1697), + (0, 140), + (0, 0), + (0, 3), + (0, 57), + (0, 0), + (0, 1200), + (0, 525), + (0, 6690), + (0, 97), + (0, 0), + (0, 1), + (0, 34), + (0, 0), + (0, 50), + (0, 15), + (0, 10), + (0, 40), + (0, 27), + (0, 153), + (0, 1), + (0, 159), + (0, 354), + (0, 813), + (0, 0), + (0, 24), + (0, 883), + (0, 1), + (0, 2), + (0, 73), + (0, 18), + (0, 144), + (0, 56), + (0, 9), + (0, 1), + (0, 145), + (0, 5), + (0, 61), + (0, 320), + (0, 1724), + (0, 3714), + (0, 8), + (0, 189), + (0, 51), + (0, 758), + (0, 811), + (0, 1), + (0, 1895), + (0, 258), + (0, 39), + (0, 19), + (0, 306), + (0, 520), + (0, 135), + (0, 1360), + (0, 1662), + (0, 8), + (0, 2143), + (0, 10), + (0, 399), + (0, 630), + (0, 411), + (0, 33), + (0, 127), + (0, 246), + (0, 1418), + (0, 20), + (0, 0), + (0, 117), + (0, 945), + (0, 386), + (0, 14), + (0, 54), + (0, 553), + (0, 40), + (0, 83), + (0, 0), + (0, 1297), + (0, 33), + (0, 1686), + (0, 910), + (0, 31), + (0, 3), + (0, 0), + (0, 12940), + (0, 51), + (0, 198), + (0, 4), + (0, 2), + (0, 1461), + (0, 51), + (0, 180), + (0, 1), + (0, 0), + (0, 602), + (0, 14), + (0, 974), + (0, 3), + (0, 5432), + (0, 8), + (0, 0), + (0, 28), + (0, 7), + (0, 47), + (0, 141), + (0, 263), + (0, 1295), + (0, 281), + (0, 2616), + (0, 247), + (0, 6292), + (0, 320), + (0, 61), + (0, 73), + (0, 422), + (0, 9), + (0, 11), + (0, 904), + (0, 234), + (0, 2576), + (0, 630), + (0, 22), + (0, 200), + (0, 152), + (0, 44), + (0, 10), + (0, 28), + (0, 16), + (0, 5), + (0, 2894), + (0, 265), + (0, 1977), + (0, 182), + (0, 4), + (0, 1583), + (0, 7), + (0, 2261), + (0, 29), + (0, 176), + (0, 338), + (0, 11), + (0, 178), + (0, 53), + (0, 272), + (0, 1044), + (0, 13712), + (0, 150), + (0, 0), + (0, 10), + (0, 393), + (0, 6), + (0, 1217), + (0, 2496), + (0, 232), + (0, 69), + (0, 591), + (0, 140), + (0, 266), + (0, 1), + (0, 24), + (0, 459), + (0, 6214), + (0, 45), + (0, 69), + (0, 353), + (0, 2012), + (0, 1029), + (0, 2252), + (0, 47), + (0, 246), + (0, 2), + (0, 767), + (0, 2752), + (0, 2), + (0, 206), + (0, 91), + (0, 311), + (0, 130), + (0, 38), + (0, 33), + (0, 211), + (0, 535), + (0, 4488), + (0, 2313), + (0, 1), + (0, 582), + (0, 0), + (0, 14), + (0, 0), + (0, 225), + (0, 28), + (0, 21), + (0, 0), + (0, 760), + (0, 4), + (0, 382), + (0, 12), + (0, 14), + (0, 4), + (0, 19), + (0, 17), + (0, 1948), + (0, 14), + (0, 3815), + (0, 869), + (0, 90), + (0, 93), + (0, 2282), + (0, 814), + (0, 3), + (0, 461), + (0, 14), + (0, 131), + (0, 3336), + (0, 47), + (0, 1088), + (0, 151), + (0, 3), + (0, 1150), + (0, 2754), + (0, 905), + (0, 74), + (0, 1), + (0, 897), + (0, 10), + (0, 786), + (0, 2821), + (0, 267), + (0, 18), + (0, 642), + (0, 1), + (0, 1990), + (0, 4), + (0, 140), + (0, 2415), + (0, 39), + (0, 28), + (0, 969), + (0, 2612), + (0, 45), + (0, 11), + (0, 66), + (0, 344), + (0, 96), + (0, 0), + (0, 1), + (0, 48), + (0, 50), + (0, 13), + (0, 324), + (0, 139), + (0, 9), + (0, 890), + (0, 47), + (0, 271), + (0, 75), + (0, 1351), + (0, 3), + (0, 67), + (0, 113), + (0, 5), + (0, 166), + (0, 1), + (0, 137), + (0, 4), + (0, 534), + (0, 2846), + (0, 16), + (0, 0), + (0, 206), + (0, 84), + (0, 353), + (0, 32), + (0, 121), + (0, 868), + (0, 0), + (0, 55), + (0, 817), + (0, 103), + (0, 55), + (0, 20), + (0, 0), + (0, 1), + (0, 5), + (0, 214), + (0, 232), + (0, 37), + (0, 1418), + (0, 4), + (0, 2), + (0, 219), + (0, 80), + (0, 2046), + (0, 43), + (0, 429), + (0, 30), + (0, 17), + (0, 3), + (0, 125), + (0, 184), + (0, 1485), + (0, 744), + (0, 4), + (0, 4), + (0, 2), + (0, 7205), + (0, 2), + (0, 60), + (0, 116), + (0, 3), + (0, 532), + (0, 901), + (0, 389), + (0, 0), + (0, 420), + (0, 80), + (0, 1147), + (0, 4), + (0, 48), + (0, 15), + (0, 2287), + (0, 1590), + (0, 5), + (0, 38), + (0, 2578), + (0, 1274), + (0, 2), + (0, 493), + (0, 992), + (0, 1452), + (0, 0), + (0, 263), + (0, 209), + (0, 95), + (0, 104), + (0, 1126), + (0, 592), + (0, 18), + (0, 154), + (0, 75), + (0, 442), + (0, 25), + (0, 69), + (0, 7), + (0, 225), + (0, 1080), + (0, 1230), + (0, 22), + (0, 4), + (0, 357), + (0, 267), + (0, 987), + (0, 769), + (0, 350), + (0, 307), + (0, 443), + (0, 73), + (0, 16), + (0, 123), + (0, 840), + (0, 932), + (0, 8), + (0, 892), + (0, 430), + (0, 61), + (0, 10070), + (0, 3671), + (0, 34), + (0, 1), + (0, 2), + (0, 0), + (0, 10), + (0, 676), + (0, 23), + (0, 23), + (0, 57), + (0, 744), + (0, 149), + (0, 10468), + (0, 78), + (0, 43), + (0, 28), + (0, 0), + (0, 7), + (0, 4), + (0, 283), + (0, 68), + (0, 2), + (0, 627), + (0, 3837), + (0, 51), + (0, 833), + (0, 1), + (0, 29), + (0, 3), + (0, 610), + (0, 29), + (0, 33), + (0, 2), + (0, 24), + (0, 33), + (0, 0), + (0, 39), + (0, 13), + (0, 202), + (0, 1), + (0, 9546), + (0, 414), + (0, 1565), + (0, 81), + (0, 43), + (0, 1), + (0, 9), + (0, 1), + (0, 37), + (0, 503), + (0, 331), + (0, 1270), + (0, 535), + (0, 53), + (0, 751), + (0, 0), + (0, 96), + (0, 8), + (0, 372), + (0, 5), + (0, 281), + (0, 1211), + (0, 504), + (0, 134), + (0, 4), + (0, 683), + (0, 280), + (0, 2946), + (0, 23), + (0, 60), + (0, 122), + (0, 576), + (0, 2029), + (0, 515), + (0, 545), + (0, 6), + (0, 266), + (0, 2255), + (0, 17), + (0, 561), + (0, 1793), + (0, 0), + (0, 3743), + (0, 1807), + (0, 533), + (0, 0), + (0, 1548), + (0, 21), + (0, 84), + (0, 3051), + (0, 1), + (0, 16), + (0, 674), + (0, 7), + (0, 705), + (0, 1396), + (0, 3), + (0, 883), + (0, 4754), + (0, 1547), + (0, 0), + (0, 517), + (0, 1841), + (0, 373), + (0, 0), + (0, 4206), + (0, 70), + (0, 1666), + (0, 149), + (0, 806), + (0, 5), + (0, 28), + (0, 2), + (0, 87), + (0, 440), + (0, 1681), + (0, 281), + (0, 17), + (0, 359), + (0, 0), + (0, 15), + (0, 20), + (0, 121), + (0, 4894), + (0, 11), + (0, 0), + (0, 352), + (0, 68), + (0, 181), + (0, 48), + (0, 4), + (0, 3), + (0, 800), + (0, 275), + (0, 192), + (0, 2555), + (0, 12), + (0, 17), + (0, 446), + (0, 693), + (0, 1), + (0, 30), + (0, 90), + (0, 541), + (0, 3627), + (0, 452), + (0, 181), + (0, 1052), + (0, 7912), + (0, 703), + (0, 111), + (0, 104), + (0, 218), + (0, 4), + (0, 13), + (0, 247), + (0, 170), + (0, 1106), + (0, 11), + (0, 162), + (0, 2021), + (0, 13), + (0, 40), + (0, 24), + (0, 598), + (0, 32), + (0, 975), + (0, 3), + (0, 194), + (0, 0), + (0, 32), + (0, 375), + (0, 1014), + (0, 288), + (0, 2), + (0, 913), + (0, 329), + (0, 10), + (0, 10), + (0, 2496), + (0, 19), + (0, 9), + (0, 108), + (0, 4), + (0, 0), + (0, 1117), + (0, 6638), + (0, 21), + (0, 2), + (0, 150), + (0, 45), + (0, 30), + (0, 0), + (0, 439), + (0, 4152), + (0, 0), + (0, 8), + (0, 1284), + (0, 11), + (0, 4), + (0, 1367), + (0, 47), + (0, 129), + (0, 22), + (0, 27), + (0, 27), + (0, 0), + (0, 5), + (0, 5579), + (0, 0), + (0, 8), + (0, 24), + (0, 710), + (0, 9), + (0, 23), + (0, 0), + (0, 0), + (0, 38), + (0, 92), + (0, 2), + (0, 6), + (0, 2935), + (0, 427), + (0, 1042), + (0, 1030), + (0, 323), + (0, 359), + (0, 90), + (0, 12), + (0, 42), + (0, 13788), + (0, 105), + (0, 8), + (0, 5316), + (0, 5587), + (0, 2605), + (0, 1750), + (0, 112), + (0, 125), + (0, 1152), + (0, 316), + (0, 39), + (0, 99), + (0, 2), + (0, 341), + (0, 110), + (0, 5), + (0, 1), + (0, 826), + (0, 1835), + (0, 16), + (0, 1), + (0, 1), + (0, 110), + (0, 0), + (0, 0), + (0, 124), + (0, 24), + (0, 1), + (0, 1043), + (0, 8629), + (0, 0), + (0, 8), + (0, 8), + (0, 22), + (0, 143), + (0, 7), + (0, 11), + (0, 2), + (0, 10), + (0, 13), + (0, 3485), + (0, 245), + (0, 2419), + (0, 75), + (0, 18), + (0, 938), + (0, 701), + (0, 49), + (0, 28), + (0, 499), + (0, 17), + (0, 127), + (0, 917), + (0, 35), + (0, 103), + (0, 133), + (0, 572), + (0, 17), + (0, 34), + (0, 877), + (0, 204), + (0, 268), + (0, 4259), + (0, 3), + (0, 122), + (0, 6), + (0, 395), + (0, 266), + (0, 20), + (0, 884), + (0, 0), + (0, 855), + (0, 965), + (0, 48), + (0, 220), + (0, 779), + (0, 7802), + (0, 205), + (0, 5), + (0, 121), + (0, 372), + (0, 1), + (0, 8357), + (0, 625), + (0, 5020), + (0, 16), + (0, 232), + (0, 40), + (0, 26), + (0, 888), + (0, 3888), + (0, 2302), + (0, 5651), + (0, 49), + (0, 84), + (0, 0), + (0, 625), + (0, 45), + (0, 0), + (0, 5), + (0, 35), + (0, 155), + (0, 924), + (0, 11), + (0, 1140), + (0, 2), + (0, 9), + (0, 23), + (0, 5), + (0, 22), + (0, 372), + (0, 382), + (0, 4053), + (0, 97), + (0, 5352), + (0, 39), + (0, 248), + (0, 1), + (0, 496), + (0, 326), + (0, 13), + (0, 811), + (0, 0), + (0, 812), + (0, 208), + (0, 198), + (0, 4), + (0, 1464), + (0, 1507), + (0, 946), + (0, 34), + (0, 4), + (0, 1), + (0, 8), + (0, 8), + (0, 0), + (0, 31), + (0, 75), + (0, 5), + (0, 384), + (0, 134), + (0, 298), + (0, 342), + (0, 103), + (0, 9126), + (0, 99), + (0, 2), + (0, 370), + (0, 321), + (0, 8071), + (0, 1550), + (0, 902), + (0, 63), + (0, 162), + (0, 436), + (0, 1188), + (0, 0), + (0, 4), + (0, 298), + (0, 2759), + (0, 283), + (0, 33), + (0, 28), + (0, 130), + (0, 3160), + (0, 200), + (0, 122), + (0, 3553), + (0, 207), + (0, 30), + (0, 11), + (0, 3400), + (0, 0), + (0, 1), + (0, 27), + (0, 271), + (0, 929), + (0, 1975), + (0, 473), + (0, 5966), + (0, 1129), + (0, 1), + (0, 778), + (0, 3655), + (0, 688), + (0, 171), + (0, 1), + (0, 53), + (0, 14866), + (0, 880), + (0, 4251), + (0, 454), + (0, 5619), + (0, 7), + (0, 59), + (0, 604), + (0, 11130), + (0, 768), + (0, 292), + (0, 5), + (0, 3062), + (0, 1163), + (0, 2463), + (0, 1433), + (0, 0), + (0, 13), + (0, 351), + (0, 2309), + (0, 1637), + (0, 21), + (0, 56), + (0, 191), + (0, 521), + (0, 6), + (0, 1238), + (0, 17), + (0, 3), + (0, 2278), + (0, 1), + (0, 512), + (0, 28), + (0, 3), + (0, 1573), + (0, 1263), + (0, 4), + (0, 13991), + (0, 2219), + (0, 46), + (0, 1108), + (0, 25), + (0, 55), + (0, 280), + (0, 1063), + (0, 443), + (0, 37), + (0, 2065), + (0, 294), + (0, 1), + (0, 3), + (0, 1), + (0, 5), + (0, 368), + (0, 37), + (0, 687), + (0, 0), + (0, 9), + (0, 3632), + (0, 337), + (0, 202), + (0, 3), + (0, 217), + (0, 3102), + (0, 152), + (0, 595), + (0, 517), + (0, 657), + (0, 102), + (0, 207), + (0, 979), + (0, 585), + (0, 1978), + (0, 7), + (0, 945), + (0, 37), + (0, 55), + (0, 121), + (0, 3991), + (0, 0), + (0, 476), + (0, 5), + (0, 10), + (0, 483), + (0, 7), + (0, 5769), + (0, 9), + (0, 274), + (0, 3475), + (0, 36), + (0, 33), + (0, 31), + (0, 6), + (0, 5266), + (0, 560), + (0, 0), + (0, 0), + (0, 0), + (0, 196), + (0, 209), + (0, 884), + (0, 12), + (0, 450), + (0, 183), + (0, 867), + (0, 3082), + (0, 27), + (0, 1022), + (0, 408), + (0, 39), + (0, 337), + (0, 17), + (0, 31), + (0, 27), + (0, 5367), + (0, 231), + (0, 25), + (0, 2), + (0, 691), + (0, 1290), + (0, 82), + (0, 1389), + (0, 8), + (0, 176), + (0, 392), + (0, 520), + (0, 108), + (0, 310), + (0, 177), + (0, 49), + (0, 3219), + (0, 5), + (0, 0), + (0, 1), + (0, 821), + (0, 1), + (0, 4), + (0, 289), + (0, 13), + (0, 2702), + (0, 261), + (0, 9), + (0, 38), + (0, 430), + (0, 16), + (0, 39), + (0, 140), + (0, 472), + (0, 27), + (0, 1436), + (0, 27), + (0, 64), + (0, 2162), + (0, 365), + (0, 79), + (0, 353), + (0, 20), + (0, 22), + (0, 3), + (0, 0), + (0, 39), + (0, 100), + (0, 87), + (0, 12), + (0, 976), + (0, 677), + (0, 447), + (0, 6), + (0, 851), + (0, 834), + (0, 10), + (0, 1490), + (0, 248), + (0, 19), + (0, 349), + (0, 2), + (0, 2), + (0, 226), + (0, 4106), + (0, 3416), + (0, 12765), + (0, 9), + (0, 950), + (0, 47), + (0, 69), + (0, 305), + (0, 48), + (0, 145), + (0, 10), + (0, 15), + (0, 512), + (0, 272), + (0, 5), + (0, 59), + (0, 5804), + (0, 309), + (0, 0), + (0, 1648), + (0, 7912), + (0, 15), + (0, 10550), + (0, 1), + (0, 448), + (0, 81), + (0, 94), + (0, 1), + (0, 17), + (0, 15), + (0, 10304), + (0, 144), + (0, 0), + (0, 3), + (0, 12), + (0, 272), + (0, 1060), + (0, 5), + (0, 1270), + (0, 9), + (0, 13989), + (0, 2272), + (0, 2566), + (0, 295), + (0, 12), + (0, 37), + (0, 394), + (0, 13), + (0, 0), + (0, 54), + (0, 2567), + (0, 0), + (0, 1690), + (0, 440), + (0, 4094), + (0, 60), + (0, 4853), + (0, 3973), + (0, 232), + (0, 1490), + (0, 17), + (0, 3517), + (0, 44), + (0, 39), + (0, 205), + (0, 365), + (0, 209), + (0, 374), + (0, 11), + (0, 0), + (0, 4), + (0, 156), + (0, 28), + (0, 1700), + (0, 39), + (0, 188), + (0, 0), + (0, 390), + (0, 380), + (0, 221), + (0, 1502), + (0, 1540), + (0, 0), + (0, 24), + (0, 1046), + (0, 0), + (0, 538), + (0, 434), + (0, 1179), + (0, 3436), + (0, 265), + (0, 6), + (0, 395), + (0, 2), + (0, 2018), + (0, 400), + (0, 1011), + (0, 549), + (0, 140), + (0, 133), + (0, 7), + (0, 7072), + (0, 9), + (0, 118), + (0, 79), + (0, 368), + (0, 2), + (0, 1765), + (0, 17), + (0, 1928), + (0, 211), + (0, 23), + (0, 2421), + (0, 2465), + (0, 1), + (0, 25), + (0, 37), + (0, 62), + (0, 1026), + (0, 18804), + (0, 22), + (0, 885), + (0, 1), + (0, 0), + (0, 370), + (0, 59), + (0, 565), + (0, 312), + (0, 1762), + (0, 594), + (0, 36), + (0, 947), + (0, 153), + (0, 968), + (0, 17), + (0, 138), + (0, 3872), + (0, 0), + (0, 3093), + (0, 4295), + (0, 174), + (0, 519), + (0, 570), + (0, 103), + (0, 3262), + (0, 61), + (0, 44), + (0, 7), + (0, 4), + (0, 0), + (0, 175), + (0, 125), + (0, 0), + (0, 71), + (0, 74), + (0, 2790), + (0, 99), + (0, 1180), + (0, 11), + (0, 70), + (0, 1415), + (0, 72), + (0, 2), + (0, 4), + (0, 1), + (0, 58), + (0, 297), + (0, 178), + (0, 332), + (0, 290), + (0, 21), + (0, 351), + (0, 22), + (0, 19), + (0, 989), + (0, 924), + (0, 11861), + (0, 59), + (0, 71), + (0, 1), + (0, 0), + (0, 320), + (0, 0), + (0, 2615), + (0, 8163), + (0, 108), + (0, 4489), + (0, 67), + (0, 0), + (0, 4), + (0, 58), + (0, 2880), + (0, 413), + (0, 299), + (0, 182), + (0, 3156), + (0, 1734), + (0, 2886), + (0, 73), + (0, 89), + (0, 8), + (0, 1498), + (0, 33), + (0, 6994), + (0, 1023), + (0, 77), + (0, 9), + (0, 353), + (0, 0), + (0, 12308), + (0, 1380), + (0, 299), + (0, 3963), + (0, 4327), + (0, 5), + (0, 753), + (0, 7), + (0, 27), + (0, 13), + (0, 2145), + (0, 125), + (0, 401), + (0, 20), + (0, 559), + (0, 47), + (0, 36), + (0, 6), + (0, 0), + (0, 1654), + (0, 4), + (0, 295), + (0, 0), + (0, 853), + (0, 188), + (0, 607), + (0, 67), + (0, 86), + (0, 4), + (0, 11), + (0, 8472), + (0, 1), + (0, 5), + (0, 10), + (0, 3), + (0, 0), + (0, 17), + (0, 115), + (0, 271), + (0, 1776), + (0, 1727), + (0, 46), + (0, 2), + (0, 8), + (0, 606), + (0, 10202), + (0, 5), + (0, 22), + (0, 37), + (0, 84), + (0, 90), + (0, 165), + (0, 124), + (0, 0), + (0, 32), + (0, 87), + (0, 2026), + (0, 387), + (0, 18), + (0, 81), + (0, 60), + (0, 5281), + (0, 0), + (0, 0), + (0, 28), + (0, 851), + (0, 97), + (1, 25), + (0, 101), + (0, 10), + (0, 84), + (0, 3), + (0, 7534), + (0, 1442), + (0, 5725), + (0, 29), + (0, 3459), + (0, 129), + (0, 7), + (0, 0), + (0, 1), + (0, 6), + (0, 4256), + (0, 433), + (0, 285), + (0, 1540), + (0, 624), + (0, 1479), + (0, 627), + (0, 107), + (0, 11), + (0, 2149), + (0, 968), + (0, 20), + (0, 53), + (0, 480), + (0, 4), + (0, 0), + (0, 857), + (0, 1248), + (0, 11), + (0, 412), + (0, 80), + (0, 4303), + (0, 100), + (0, 16), + (0, 910), + (0, 5), + (0, 489), + (0, 11), + (0, 0), + (0, 2408), + (0, 2), + (0, 5833), + (0, 8), + (0, 528), + (0, 5), + (0, 49), + (0, 1757), + (0, 7), + (0, 0), + (0, 50), + (0, 3), + (0, 0), + (0, 51), + (0, 0), + (0, 46), + (0, 597), + (0, 142), + (0, 1467), + (0, 26), + (0, 4791), + (0, 10), + (0, 211), + (0, 2112), + (0, 56), + (0, 1058), + (0, 0), + (0, 116), + (0, 18), + (0, 0), + (0, 10024), + (0, 111), + (0, 5949), + (0, 1740), + (0, 161), + (0, 3), + (0, 10), + (0, 1853), + (0, 1223), + (0, 0), + (0, 8), + (0, 408), + (0, 101), + (0, 2015), + (0, 229), + (0, 351), + (0, 0), + (0, 4), + (0, 9), + (0, 1410), + (0, 1), + (0, 10), + (0, 74), + (0, 0), + (0, 196), + (0, 3496), + (0, 350), + (0, 16), + (0, 166), + (0, 1159), + (0, 16), + (0, 524), + (0, 3), + (0, 9), + (0, 127), + (0, 24), + (0, 9), + (0, 37), + (0, 1889), + (0, 8), + (0, 11315), + (0, 19), + (0, 16), + (0, 4342), + (0, 856), + (0, 4279), + (0, 38), + (0, 11028), + (0, 73), + (0, 30), + (0, 87), + (0, 0), + (0, 648), + (0, 9), + (0, 55), + (0, 14), + (0, 80), + (0, 28), + (0, 2), + (0, 0), + (0, 48), + (0, 265), + (0, 1706), + (0, 2985), + (0, 20), + (0, 82), + (0, 233), + (0, 40), + (0, 50), + (0, 5), + (0, 38), + (0, 276), + (0, 23), + (0, 254), + (0, 324), + (0, 0), + (0, 1), + (0, 160), + (0, 117), + (0, 4), + (0, 406), + (0, 1741), + (0, 230), + (0, 52), + (0, 116), + (0, 4116), + (0, 1245), + (0, 27), + (0, 31), + (0, 75), + (0, 22), + (0, 2039), + (0, 1706), + (0, 703), + (0, 1532), + (0, 1847), + (0, 340), + (0, 122), + (0, 19), + (0, 11), + (0, 847), + (0, 1), + (0, 1789), + (0, 360), + (0, 7033), + (0, 393), + (0, 431), + (0, 126), + (0, 4), + (0, 20), + (0, 3537), + (0, 0), + (0, 1123), + (0, 159), + (0, 356), + (0, 3883), + (0, 3687), + (0, 5), + (0, 2781), + (0, 768), + (0, 1981), + (0, 6), + (0, 8), + (0, 2198), + (0, 107), + (0, 41), + (0, 2982), + (0, 46), + (0, 294), + (0, 14546), + (0, 1023), + (0, 181), + (0, 6), + (0, 352), + (0, 5266), + (0, 14), + (0, 15), + (0, 9944), + (0, 2024), + (0, 120), + (0, 262), + (0, 1800), + (0, 0), + (0, 2115), + (0, 31), + (0, 543), + (0, 11), + (0, 1759), + (0, 231), + (0, 12), + (0, 86), + (0, 58), + (0, 2659), + (0, 902), + (0, 99), + (0, 3400), + (0, 3456), + (0, 100), + (0, 12471), + (0, 10131), + (0, 0), + (0, 124), + (0, 216), + (0, 23), + (0, 521), + (0, 1), + (0, 3987), + (0, 2), + (0, 102), + (0, 2416), + (0, 2364), + (0, 366), + (0, 11), + (0, 10), + (0, 281), + (0, 208), + (0, 746), + (0, 3330), + (0, 3589), + (0, 234), + (0, 0), + (0, 5668), + (0, 102), + (0, 1862), + (0, 246), + (0, 1477), + (0, 268), + (0, 70), + (0, 1262), + (0, 7295), + (0, 270), + (0, 1600), + (0, 3127), + (0, 216), + (0, 49), + (0, 498), + (0, 5534), + (0, 17), + (0, 250), + (0, 1780), + (0, 0), + (0, 27), + (0, 237), + (0, 57), + (0, 734), + (0, 6088), + (0, 168), + (0, 4248), + (0, 37), + (0, 11602), + (0, 31), + (0, 261), + (0, 1116), + (0, 0), + (0, 8312), + (0, 100), + (0, 245), + (0, 7409), + (0, 3), + (0, 313), + (0, 20), + (0, 8583), + (0, 11218), + (0, 2), + (0, 2), + (0, 7328), + (0, 696), + (0, 215), + (0, 10), + (0, 623), + (0, 169), + (0, 83), + (0, 760), + (0, 1), + (0, 286), + (0, 68), + (0, 68), + (0, 67), + (0, 1), + (0, 951), + (0, 45), + (0, 60), + (0, 3964), + (0, 16), + (0, 7), + (0, 36), + (0, 83), + (0, 75), + (0, 44), + (0, 19), + (0, 55), + (0, 4), + (0, 1467), + (0, 0), + (0, 3241), + (0, 5348), + (0, 0), + (0, 212), + (0, 1), + (0, 15974), + (0, 170), + (0, 3135), + (0, 2901), + (0, 2983), + (0, 3), + (0, 24), + (0, 118), + (0, 674), + (0, 799), + (0, 39), + (0, 222), + (0, 5489), + (0, 85), + (0, 1), + (0, 272), + (0, 4944), + (0, 14810), + (0, 0), + (0, 871), + (0, 399), + (0, 1), + (0, 5), + (0, 8), + (0, 1726), + (0, 543), + (0, 17), + (0, 62), + (0, 5286), + (0, 7543), + (0, 570), + (0, 49), + (0, 0), + (0, 64), + (0, 1341), + (0, 25), + (0, 249), + (0, 0), + (0, 1), + (0, 2380), + (0, 3171), + (0, 180), + (0, 0), + (0, 82), + (0, 1445), + (0, 1792), + (0, 0), + (0, 222), + (0, 32), + (0, 22), + (0, 3), + (0, 41), + (0, 72), + (0, 963), + (0, 57), + (0, 128), + (0, 11), + (0, 7), + (0, 2607), + (0, 180), + (0, 87), + (0, 381), + (0, 92), + (0, 2055), + (0, 4920), + (0, 486), + (0, 1133), + (0, 6), + (0, 1074), + (0, 42), + (0, 60), + (0, 155), + (0, 2), + (0, 1089), + (0, 59), + (0, 43), + (0, 392), + (0, 12894), + (0, 7), + (0, 48), + (0, 64), + (0, 1), + (0, 0), + (0, 1), + (0, 938), + (0, 833), + (0, 2326), + (0, 27), + (0, 3), + (0, 71), + (0, 295), + (0, 1096), + (0, 6), + (0, 3), + (0, 12), + (0, 591), + (0, 190), + (0, 7), + (0, 857), + (0, 3744), + (0, 4), + (0, 506), + (0, 2130), + (0, 4), + (0, 11), + (0, 56), + (0, 1100), + (0, 34), + (0, 1335), + (0, 338), + (0, 24), + (0, 729), + (0, 8486), + (0, 468), + (0, 1300), + (0, 1359), + (0, 1), + (0, 115), + (0, 3), + (0, 129), + (0, 30), + (0, 5302), + (0, 366), + (0, 453), + (0, 518), + (0, 0), + (0, 4961), + (0, 7), + (0, 3), + (0, 805), + (0, 281), + (0, 1500), + (0, 1), + (0, 1645), + (0, 4), + (0, 231), + (0, 38), + (0, 455), + (0, 7), + (0, 127), + (0, 87), + (0, 0), + (0, 220), + (0, 9), + (0, 390), + (0, 46), + (0, 9124), + (0, 596), + (0, 82), + (0, 20), + (0, 981), + (0, 293), + (0, 549), + (0, 346), + (0, 13), + (0, 1840), + (0, 0), + (0, 2042), + (0, 563), + (0, 1168), + (0, 1), + (0, 503), + (0, 12394), + (0, 0), + (0, 306), + (0, 187), + (0, 244), + (0, 477), + (0, 3865), + (0, 9649), + (0, 467), + (0, 659), + (0, 30), + (0, 0), + (0, 564), + (0, 162), + (0, 2635), + (0, 113), + (0, 316), + (0, 3888), + (0, 8), + (0, 4454), + (0, 124), + (0, 16), + (0, 13339), + (0, 1776), + (0, 3277), + (0, 117), + (0, 749), + (0, 6), + (0, 1171), + (0, 635), + (0, 9865), + (0, 4846), + (0, 990), + (0, 11), + (0, 146), + (0, 1130), + (0, 5118), + (0, 702), + (0, 83), + (0, 2029), + (0, 1354), + (0, 732), + (0, 1048), + (0, 142), + (0, 135), + (0, 11), + (0, 22), + (0, 0), + (0, 2), + (0, 454), + (0, 2202), + (0, 446), + (0, 7528), + (0, 4), + (0, 1263), + (0, 47), + (0, 4452), + (0, 67), + (0, 159), + (0, 2), + (0, 6), + (0, 5), + (0, 8842), + (0, 95), + (0, 381), + (0, 8078), + (0, 5), + (0, 3), + (0, 81), + (0, 13014), + (0, 1977), + (0, 48), + (0, 972), + (0, 120), + (0, 988), + (0, 503), + (0, 2), + (0, 879), + (0, 1106), + (0, 1), + (0, 178), + (0, 8477), + (0, 3), + (0, 5259), + (0, 4312), + (0, 21), + (0, 8151), + (0, 7592), + (0, 5465), + (0, 245), + (0, 5), + (0, 17559), + (0, 224), + (0, 26), + (0, 0), + (0, 277), + (0, 2), + (0, 0), + (0, 677), + (0, 627), + (0, 3), + (0, 583), + (0, 4), + (0, 582), + (0, 0), + (0, 40), + (0, 67), + (0, 3025), + (0, 254), + (0, 1440), + (0, 68), + (0, 261), + (0, 18), + (0, 1), + (0, 685), + (0, 87), + (0, 2245), + (0, 276), + (0, 154), + (0, 1267), + (0, 69), + (0, 3), + (0, 33), + (0, 676), + (0, 67), + (0, 0), + (0, 3461), + (0, 11), + (0, 523), + (0, 1943), + (0, 137), + (0, 2389), + (0, 19424), + (0, 2), + (0, 1360), + (0, 1524), + (0, 3341), + (0, 1797), + (0, 2), + (0, 179), + (0, 449), + (0, 48), + (0, 7), + (0, 15), + (0, 1910), + (0, 25), + (0, 0), + (0, 34), + (0, 839), + (0, 12), + (0, 0), + (0, 255), + (0, 3), + (0, 470), + (0, 35), + (0, 309), + (0, 475), + (0, 1004), + (0, 1042), + (0, 718), + (0, 24), + (0, 311), + (0, 107), + (0, 2), + (0, 29), + (0, 3042), + (0, 4), + (0, 939), + (0, 105), + (0, 171), + (0, 2992), + (0, 475), + (0, 98), + (0, 132), + (0, 31), + (0, 4), + (0, 1), + (0, 2068), + (0, 2125), + (0, 8), + (0, 3), + (0, 5873), + (0, 9), + (0, 135), + (0, 3142), + (0, 50), + (0, 4694), + (0, 2014), + (0, 145), + (0, 0), + (0, 30), + (0, 9473), + (0, 3082), + (0, 637), + (0, 18), + (0, 2336), + (0, 2130), + (0, 641), + (0, 9471), + (0, 5), + (0, 563), + (0, 10), + (0, 1052), + (0, 61), + (0, 10430), + (0, 10), + (0, 85), + (0, 479), + (0, 912), + (0, 0), + (0, 2278), + (0, 6967), + (0, 783), + (1, 463), + (0, 2627), + (0, 5), + (0, 18), + (0, 12309), + (0, 237), + (0, 20), + (0, 555), + (0, 1), + (0, 206), + (0, 0), + (0, 72), + (0, 723), + (0, 4703), + (0, 3896), + (0, 468), + (0, 100), + (0, 43), + (0, 111), + (0, 10330), + (0, 68), + (0, 521), + (0, 1204), + (0, 1717), + (0, 1323), + (0, 300), + (0, 669), + (0, 1575), + (0, 5), + (0, 1), + (0, 311), + (0, 388), + (0, 8826), + (0, 6), + (0, 32), + (0, 46), + (0, 220), + (0, 1), + (0, 545), + (0, 5), + (0, 55), + (0, 9), + (0, 2078), + (0, 107), + (0, 173), + (0, 26), + (0, 21130), + (0, 1598), + (0, 526), + (0, 5), + (0, 2039), + (0, 25), + (0, 4067), + (0, 769), + (0, 114), + (0, 417), + (0, 1), + (0, 320), + (0, 21), + (0, 986), + (0, 418), + (0, 3), + (0, 2148), + (0, 573), + (0, 778), + (0, 4011), + (0, 55), + (0, 5179), + (0, 123), + (0, 0), + (0, 900), + (0, 79), + (0, 121), + (0, 8148), + (0, 18), + (0, 15502), + (0, 264), + (0, 5894), + (0, 109), + (0, 2636), + (0, 11053), + (0, 5922), + (0, 148), + (0, 177), + (0, 0), + (0, 1471), + (0, 0), + (0, 1124), + (0, 169), + (0, 157), + (0, 159), + (0, 21133), + (0, 48), + (0, 315), + (0, 1231), + (0, 202), + (0, 3454), + (0, 1046), + (0, 9079), + (0, 10242), + (0, 1794), + (0, 147), + (0, 7598), + (0, 34), + (0, 13), + (0, 7879), + (0, 5639), + (0, 153), + (0, 3298), + (0, 14), + (0, 5), + (0, 15), + (0, 4170), + (0, 274), + (0, 14657), + (0, 638), + (0, 12), + (0, 4), + (0, 523), + (0, 103), + (0, 4276), + (0, 1631), + (0, 7718), + (0, 12806), + (0, 45), + (0, 403), + (0, 131), + (0, 1581), + (0, 2059), + (0, 9795), + (0, 74), + (0, 612), + (0, 228), + (0, 214), + (0, 16936), + (0, 8), + (0, 17532), + (0, 2546), + (0, 13), + (0, 12041), + (0, 11108), + (0, 1), + (0, 5), + (0, 461), + (0, 3979), + (0, 57), + (0, 34), + (0, 0), + (0, 204), + (0, 558), + (0, 77), + (0, 6), + (0, 318), + (0, 603), + (0, 6), + (0, 56), + (0, 1292), + (0, 258), + (0, 3063), + (0, 38), + (0, 33), + (0, 1704), + (0, 11), + (0, 4148), + (0, 1622), + (0, 314), + (0, 674), + (0, 2310), + (0, 146), + (0, 789), + (0, 4945), + (0, 22), + (0, 11530), + (0, 5027), + (0, 121), + (0, 38), + (0, 1127), + (0, 162), + (0, 3400), + (0, 1), + (0, 212), + (0, 487), + (0, 11812), + (0, 8196), + (0, 1526), + (0, 473), + (0, 21087), + (0, 49), + (0, 6), + (0, 898), + (0, 1556), + (0, 13), + (0, 1224), + (0, 12), + (0, 439), + (0, 56), + (0, 19204), + (0, 2), + (0, 3804), + (0, 26), + (0, 5767), + (0, 439), + (0, 0), + (0, 649), + (0, 1), + (0, 63), + (0, 9), + (0, 1741), + (0, 4), + (0, 2291), + (0, 1684), + (0, 1), + (0, 954), + (0, 2), + (0, 3175), + (0, 20), + (0, 28), + (0, 141), + (0, 34), + (0, 118), + (0, 4), + (0, 2), + (0, 212), + (0, 3987), + (0, 2537), + (0, 0), + (0, 2), + (0, 28), + (1, 561), + (0, 135), + (0, 13), + (0, 1), + (0, 423), + (0, 244), + (0, 98), + (0, 422), + (0, 895), + (0, 85), + (0, 86), + (0, 95), + (0, 64), + (0, 52), + (0, 26), + (0, 1878), + (0, 63), + (0, 263), + (0, 2556), + (0, 4), + (0, 5905), + (0, 13051), + (0, 5), + (0, 5496), + (0, 35), + (0, 121), + (0, 348), + (0, 448), + (0, 1112), + (0, 13), + (0, 2), + (0, 27), + (0, 55), + (0, 12), + (0, 1), + (0, 85), + (0, 5), + (0, 120), + (0, 387), + (0, 16722), + (0, 0), + (0, 40), + (0, 213), + (0, 480), + (0, 0), + (0, 3040), + (0, 4), + (0, 1646), + (0, 1648), + (0, 152), + (0, 433), + (0, 46), + (0, 4297), + (0, 2), + (0, 1110), + (0, 1), + (0, 179), + (0, 4), + (0, 2344), + (0, 6579), + (0, 73), + (0, 1658), + (0, 33), + (0, 13), + (0, 333), + (0, 1), + (0, 62), + (0, 237), + (0, 596), + (0, 6494), + (0, 2238), + (0, 418), + (0, 91), + (0, 3059), + (0, 3), + (0, 2134), + (0, 2166), + (0, 274), + (0, 237), + (0, 6), + (0, 1991), + (0, 131), + (0, 4584), + (0, 336), + (0, 10), + (0, 8), + (0, 0), + (0, 562), + (0, 15), + (0, 884), + (0, 10), + (0, 5), + (0, 1441), + (0, 10738), + (0, 7505), + (0, 1187), + (0, 782), + (0, 219), + (0, 7), + (0, 14), + (0, 799), + (0, 1638), + (0, 494), + (0, 6941), + (0, 4343), + (0, 145), + (0, 21788), + (0, 597), + (0, 7236), + (0, 0), + (0, 9), + (0, 613), + (0, 7), + (0, 58), + (0, 338), + (0, 1), + (0, 70), + (0, 16), + (0, 18861), + (0, 215), + (0, 457), + (0, 32), + (0, 59), + (0, 112), + (0, 84), + (0, 7), + (0, 500), + (0, 70), + (0, 27845), + (0, 1396), + (0, 0), + (0, 13021), + (0, 86), + (0, 2089), + (0, 306), + (0, 3217), + (0, 50), + (0, 19), + (0, 2316), + (0, 287), + (0, 27), + (0, 20376), + (0, 168), + (0, 1413), + (0, 4), + (0, 0), + (0, 3), + (0, 2911), + (0, 1608), + (0, 2732), + (0, 2722), + (0, 20), + (0, 118), + (0, 449), + (0, 3528), + (0, 602), + (0, 2), + (0, 1151), + (0, 124), + (0, 6), + (0, 0), + (0, 18418), + (0, 32), + (0, 0), + (0, 5874), + (0, 20622), + (0, 2158), + (0, 113), + (0, 5), + (0, 1587), + (0, 10), + (0, 36), + (0, 273), + (0, 2542), + (0, 1180), + (0, 73), + (0, 235), + (0, 522), + (0, 9437), + (0, 9835), + (0, 3), + (0, 2636), + (0, 50), + (0, 900), + (0, 0), + (0, 130), + (0, 2), + (0, 1), + (0, 2171), + (0, 5), + (0, 4939), + (0, 167), + (0, 1142), + (0, 1), + (0, 21627), + (0, 0), + (0, 3), + (0, 5), + (0, 11707), + (0, 516), + (0, 7689), + (0, 10933), + (0, 7129), + (0, 2354), + (0, 1946), + (0, 14259), + (0, 9), + (0, 3), + (0, 416), + (0, 4128), + (0, 871), + (0, 20), + (0, 8), + (0, 8), + (0, 263), + (0, 78), + (0, 3), + (0, 4962), + (0, 51), + (0, 73), + (0, 9566), + (0, 333), + (0, 12), + (0, 229), + (0, 1073), + (0, 6803), + (0, 1), + (0, 770), + (0, 21), + (0, 1670), + (0, 12), + (0, 282), + (0, 5455), + (0, 100), + (0, 2723), + (0, 4), + (0, 271), + (0, 2), + (0, 14330), + (0, 10), + (0, 6119), + (0, 12471), + (0, 3), + (0, 5399), + (0, 1090), + (0, 130), + (0, 85), + (0, 1), + (0, 658), + (0, 73), + (0, 988), + (0, 16), + (0, 2921), + (0, 1898), + (0, 46), + (0, 30), + (0, 3067), + (0, 0), + (0, 389), + (0, 108), + (0, 67), + (0, 1280), + (0, 731), + (0, 4075), + (0, 2), + (0, 7), + (0, 14), + (0, 22448), + (0, 302), + (0, 2712), + (0, 203), + (0, 1729), + (0, 13497), + (0, 388), + (0, 103), + (0, 74), + (0, 7987), + (0, 424), + (0, 0), + (0, 0), + (0, 125), + (0, 18076), + (0, 8889), + (0, 42), + (0, 197), + (0, 7461), + (0, 2539), + (0, 1903), + (0, 6), + (0, 267), + (0, 4219), + (0, 297), + (0, 4115), + (0, 1250), + (0, 43), + (0, 4598), + (0, 6), + (0, 1151), + (0, 2380), + (0, 1), + (0, 78), + (0, 19), + (0, 1), + (0, 1), + (0, 1619), + (0, 4359), + (0, 203), + (0, 969), + (0, 4255), + (0, 25), + (0, 7313), + (0, 369), + (0, 569), + (0, 160), + (0, 74), + (0, 511), + (0, 39), + (0, 9764), + (0, 140), + (0, 16), + (0, 292), + (0, 1155), + (0, 2248), + (0, 1), + (0, 6725), + (0, 90), + (0, 0), + (0, 65), + (0, 109), + (0, 427), + (0, 451), + (0, 70), + (0, 13827), + (0, 1563), + (0, 1), + (0, 68), + (0, 1280), + (0, 1039), + (0, 1636), + (0, 8817), + (0, 2226), + (0, 0), + (0, 249), + (0, 9481), + (0, 1064), + (0, 3548), + (0, 5), + (0, 78), + (0, 1795), + (0, 0), + (0, 2070), + (0, 2), + (0, 7), + (0, 6670), + (0, 1453), + (0, 10), + (0, 0), + (0, 5), + (0, 2967), + (0, 5618), + (0, 339), + (0, 2), + (0, 116), + (0, 543), + (0, 6087), + (0, 22058), + (0, 28), + (0, 772), + (0, 4796), + (0, 1123), + (0, 14017), + (0, 6), + (0, 44), + (0, 5615), + (0, 2149), + (0, 4634), + (0, 467), + (0, 2326), + (0, 6763), + (0, 8296), + (0, 226), + (0, 23207), + (0, 31), + (0, 982), + (0, 149), + (0, 226), + (0, 11133), + (0, 8), + (0, 13908), + (0, 31), + (0, 21), + (0, 909), + (0, 5449), + (0, 3600), + (0, 8698), + (0, 2270), + (0, 18291), + (0, 292), + (0, 3), + (0, 468), + (0, 67), + (0, 2833), + (0, 201), + (0, 42), + (0, 1), + (0, 14917), + (0, 175), + (0, 9314), + (0, 26), + (0, 129), + (0, 201), + (0, 766), + (2, 763), + (0, 19), + (0, 3), + (0, 2971), + (0, 4751), + (0, 160), + (0, 5237), + (0, 1919), + (0, 4), + (0, 12), + (0, 10533), + (0, 82), + (0, 3991), + (0, 77), + (0, 981), + (0, 8975), + (0, 98), + (0, 21), + (0, 1209), + (0, 84), + (0, 42), + (0, 5354), + (0, 5627), + (0, 23827), + (0, 2), + (0, 12132), + (0, 27), + (1, 21575), + (0, 1544), + (0, 15), + (0, 355), + (0, 4840), + (0, 3685), + (0, 8), + (0, 20291), + (0, 6473), + (0, 474), + (0, 236), + (0, 1375), + (0, 99), + (0, 1780), + (0, 12), + (0, 542), + (0, 1), + (0, 4), + (0, 1608), + (0, 175), + (0, 9508), + (0, 866), + (0, 10892), + (0, 3), + (0, 183), + (0, 53), + (0, 8), + (0, 8403), + (0, 2591), + (0, 52), + (0, 223), + (0, 14619), + (0, 6962), + (0, 302), + (0, 4399), + (0, 1), + (0, 29), + (0, 116), + (0, 224), + (0, 0), + (0, 12), + (0, 1732), + (0, 1595), + (0, 559), + (0, 33), + (0, 21), + (0, 3851), + (0, 31), + (0, 39), + (0, 763), + (0, 19), + (0, 36), + (0, 5997), + (0, 5), + (0, 1), + (0, 60), + (0, 95), + (0, 107), + (0, 2), + (0, 1033), + (0, 22709), + (0, 2), + (0, 120), + (0, 6), + (0, 171), + (0, 921), + (0, 16546), + (0, 0), + (0, 816), + (0, 0), + (0, 1184), + (0, 3), + (0, 4), + (0, 2467), + (0, 22480), + (0, 47), + (0, 25222), + (0, 17944), + (0, 3), + (0, 7), + (0, 8066), + (0, 573), + (0, 5), + (0, 295), + (0, 4658), + (0, 7654), + (0, 110), + (0, 8712), + (0, 64), + (0, 2527), + (0, 5224), + (0, 4967), + (0, 11), + (0, 5), + (0, 6196), + (0, 21), + (0, 4), + (0, 16), + (0, 9237), + (0, 4684), + (0, 49), + (0, 86), + (0, 81), + (0, 4663), + (0, 4385), + (0, 32), + (0, 57), + (0, 1061), + (0, 85), + (0, 12453), + (0, 24955), + (0, 115), + (0, 20162), + (0, 6), + (0, 1486), + (0, 2246), + (0, 10365), + (0, 10822), + (0, 1713), + (0, 0), + (0, 1590), + (0, 5), + (0, 3206), + (0, 83), + (0, 30), + (0, 4), + (0, 2751), + (0, 5210), + (0, 66), + (0, 2759), + (0, 4), + (0, 13876), + (0, 163), + (0, 789), + (0, 825), + (0, 1), + (0, 8744), + (0, 18244), + (0, 6670), + (0, 11), + (0, 0), + (0, 3911), + (0, 0), + (0, 19), + (0, 4273), + (0, 255), + (0, 91), + (0, 7818), + (0, 24), + (0, 98), + (0, 109), + (0, 1), + (0, 37), + (0, 54), + (0, 213), + (0, 8), + (0, 7980), + (0, 170), + (0, 24), + (0, 1359), + (0, 2066), + (0, 10785), + (0, 249), + (0, 0), + (0, 13437), + (0, 86), + (0, 678), + (0, 12863), + (0, 16), + (0, 5129), + (0, 20), + (0, 92), + (0, 262), + (0, 209), + (0, 2), + (0, 0), + (0, 331), + (0, 15), + (0, 4265), + (0, 24), + (0, 3785), + (0, 4204), + (0, 1), + (0, 0), + (0, 597), + (0, 1168), + (0, 2961), + (0, 1), + (0, 2), + (0, 1200), + (0, 3447), + (0, 1971), + (0, 218), + (0, 19639), + (0, 10018), + (0, 962), + (0, 14021), + (0, 10), + (0, 3408), + (0, 477), + (0, 48), + (0, 23), + (0, 279), + (0, 44), + (0, 193), + (0, 52), + (0, 398), + (0, 12), + (0, 26), + (0, 3365), + (0, 2), + (0, 40), + (0, 183), + (0, 215), + (0, 390), + (0, 429), + (0, 5), + (0, 609), + (0, 107), + (0, 442), + (0, 32), + (0, 92), + (0, 55), + (0, 129), + (0, 4440), + (0, 572), + (0, 19), + (0, 3454), + (0, 6692), + (0, 12), + (0, 27), + (0, 3463), + (0, 19483), + (0, 8465), + (0, 6219), + (0, 256), + (0, 15322), + (0, 401), + (0, 31), + (0, 562), + (0, 16), + (0, 4747), + (0, 339), + (0, 807), + (0, 29), + (0, 11), + (0, 0), + (0, 31), + (0, 4993), + (0, 62), + (0, 5502), + (0, 859), + (0, 25), + (0, 14879), + (0, 1641), + (0, 32), + (0, 82), + (0, 3341), + (0, 778), + (0, 8528), + (0, 34), + (0, 0), + (0, 10359), + (0, 1880), + (1, 1231), + (0, 1028), + (0, 2210), + (0, 138), + (0, 4), + (0, 5195), + (0, 276), + (0, 964), + (0, 5657), + (0, 321), + (0, 112), + (0, 254), + (0, 2240), + (0, 15653), + (0, 12), + (0, 119), + (0, 7079), + (0, 119), + (0, 107), + (0, 54), + (0, 3), + (0, 3289), + (0, 1445), + (0, 87), + (0, 41), + (0, 2162), + (0, 2), + (0, 45), + (0, 4361), + (0, 223), + (0, 23607), + (0, 1673), + (0, 37), + (0, 2078), + (0, 1038), + (0, 6490), + (0, 1745), + (0, 12), + (0, 1951), + (0, 0), + (0, 7918), + (0, 108), + (0, 17230), + (0, 264), + (0, 388), + (0, 206), + (0, 172), + (0, 211), + (0, 3424), + (0, 186), + (1, 23493), + (0, 1), + (0, 124), + (0, 77), + (0, 13182), + (0, 529), + (0, 3019), + (0, 170), + (0, 4399), + (0, 332), + (0, 368), + (0, 132), + (0, 248), + (0, 4714), + (0, 282), + (0, 642), + (1, 3273), + (0, 13), + (1, 20403), + (0, 101), + (0, 25678), + (0, 15610), + (0, 9), + (0, 56), + (0, 456), + (0, 0), + (0, 104), + (0, 7), + (0, 1), + (0, 24492), + (0, 0), + (0, 5839), + (0, 1), + (0, 2), + (0, 3674), + (0, 0), + (0, 2132), + (0, 6498), + (0, 0), + (0, 8484), + (0, 1384), + (0, 21765), + (0, 5796), + (1, 2257), + (0, 0), + (0, 64), + (0, 1674), + (0, 373), + (0, 587), + (0, 11), + (0, 144), + (0, 6917), + (0, 1298), + (0, 136), + (0, 3164), + (0, 2), + (0, 439), + (0, 222), + (0, 179), + (0, 20115), + (0, 8), + (0, 75), + (0, 232), + (0, 3), + (0, 707), + (0, 7), + (0, 292), + (0, 20), + (0, 1), + (0, 267), + (0, 62), + (0, 200), + (0, 123), + (0, 21), + (0, 211), + (0, 10876), + (0, 1415), + (0, 147), + (0, 1152), + (0, 18026), + (0, 739), + (0, 1419), + (0, 200), + (0, 107), + (0, 3661), + (0, 0), + (0, 332), + (0, 15728), + (0, 8469), + (0, 9781), + (0, 150), + (0, 8), + (0, 2235), + (0, 1130), + (0, 1072), + (0, 4), + (0, 4993), + (0, 2494), + (0, 2923), + (0, 4047), + (0, 1493), + (0, 4), + (0, 12), + (0, 21), + (0, 136), + (0, 8281), + (0, 183), + (0, 9), + (0, 0), + (0, 4), + (0, 15), + (0, 118), + (0, 2), + (0, 12387), + (0, 1705), + (0, 1900), + (0, 107), + (0, 1595), + (0, 3167), + (0, 28323), + (0, 10925), + (0, 20421), + (0, 6242), + (0, 21268), + (0, 12742), + (0, 27080), + (0, 159), + (0, 579), + (0, 58), + (0, 1124), + (0, 49), + (0, 8), + (0, 3664), + (0, 72), + (0, 21013), + (0, 19), + (0, 352), + (0, 71), + (0, 1), + (0, 29), + (0, 161), + (0, 67), + (0, 5104), + (0, 264), + (0, 30), + (0, 40), + (0, 160), + (0, 2243), + (0, 3792), + (0, 3), + (0, 67), + (0, 42), + (0, 180), + (0, 42), + (0, 5063), + (0, 0), + (0, 36), + (0, 16631), + (0, 26998), + (0, 190), + (0, 6570), + (0, 7611), + (0, 22058), + (0, 800), + (0, 76), + (0, 97), + (0, 6609), + (0, 1063), + (0, 1), + (0, 658), + (0, 599), + (0, 383), + (0, 1), + (0, 139), + (0, 173), + (0, 4), + (0, 6), + (0, 4765), + (0, 3), + (0, 12), + (0, 4434), + (0, 22353), + (0, 420), + (0, 17), + (0, 917), + (0, 15), + (0, 2909), + (0, 4391), + (0, 211), + (0, 2566), + (0, 22), + (0, 21), + (0, 19), + (0, 26897), + (0, 3486), + (0, 691), + (0, 132), + (0, 1995), + (0, 12187), + (0, 1850), + (0, 427), + (0, 1), + (0, 606), + (0, 10), + (0, 888), + (0, 4936), + (0, 542), + (0, 1511), + (0, 561), + (0, 0), + (0, 80), + (0, 1709), + (0, 15926), + (0, 6432), + (0, 5412), + (0, 2181), + (0, 732), + (0, 1), + (0, 1460), + (0, 2), + (0, 8728), + (0, 9), + (0, 80), + (0, 29), + (0, 5074), + (0, 8814), + (0, 3), + (0, 499), + (0, 50), + (0, 0), + (0, 60), + (0, 3), + (0, 1), + (0, 111), + (1, 7971), + (0, 101), + (0, 881), + (0, 398), + (0, 88), + (0, 2223), + (0, 18404), + (0, 17), + (0, 1080), + (0, 5412), + (0, 23), + (0, 10487), + (0, 354), + (0, 18187), + (0, 9), + (0, 7), + (0, 226), + (0, 23), + (0, 308), + (0, 550), + (0, 12922), + (0, 3), + (0, 19707), + (0, 49), + (0, 96), + (0, 2570), + (0, 0), + (0, 29), + (0, 8382), + (0, 34), + (0, 35), + (0, 2), + (0, 23626), + (0, 700), + (0, 12969), + (0, 51), + (0, 8793), + (0, 0), + (0, 854), + (0, 253), + (0, 2545), + (0, 99), + (0, 5), + (0, 18166), + (1, 4980), + (0, 1), + (0, 7), + (0, 0), + (0, 28716), + (0, 99), + (0, 10), + (0, 225), + (0, 2711), + (0, 4233), + (0, 1308), + (0, 81), + (0, 3), + (0, 506), + (1, 10219), + (0, 0), + (0, 391), + (0, 0), + (0, 4876), + (0, 4870), + (0, 10283), + (0, 5), + (0, 7313), + (0, 1178), + (0, 3171), + (0, 3492), + (0, 54), + (0, 24382), + (0, 41), + (0, 0), + (0, 366), + (0, 1115), + (0, 62), + (0, 9), + (0, 485), + (2, 11722), + (0, 1732), + (0, 3066), + (0, 11), + (0, 5070), + (0, 202), + (0, 20382), + (0, 5), + (0, 0), + (0, 214), + (1, 15972), + (0, 24), + (0, 759), + (0, 19), + (0, 19), + (0, 197), + (0, 196), + (0, 71), + (0, 28), + (0, 1523), + (0, 136), + (0, 28703), + (1, 22066), + (0, 1097), + (0, 180), + (0, 355), + (0, 461), + (0, 5098), + (0, 503), + (0, 16839), + (0, 181), + (0, 22403), + (0, 0), + (0, 0), + (1, 8480), + (0, 28), + (0, 175), + (0, 21911), + (0, 2684), + (0, 180), + (0, 910), + (0, 750), + (0, 182), + (0, 5), + (0, 69), + (0, 24625), + (0, 33), + (0, 5845), + (0, 562), + (0, 26366), + (1, 6910), + (0, 0), + (0, 23094), + (0, 25), + (0, 5816), + (0, 0), + (0, 391), + (0, 223), + (0, 29), + (0, 1016), + (0, 22409), + (0, 7919), + (0, 12), + (0, 2264), + (0, 22), + (0, 15559), + (0, 9876), + (0, 10), + (0, 2039), + (0, 456), + (0, 497), + (0, 8504), + (0, 42), + (0, 5449), + (0, 2986), + (0, 12), + (0, 2816), + (0, 518), + (0, 2160), + (0, 0), + (0, 7), + (0, 22), + (0, 5029), + (0, 70), + (0, 3521), + (0, 109), + (0, 1886), + (0, 6748), + (0, 45), + (0, 689), + (0, 4), + (0, 26154), + (0, 3307), + (0, 1032), + (0, 47), + (0, 56), + (0, 1123), + (0, 505), + (0, 1), + (0, 5), + (0, 29), + (0, 653), + (3, 3792), + (0, 33), + (0, 236), + (0, 140), + (0, 71), + (0, 146), + (0, 15), + (0, 1169), + (0, 6191), + (0, 3), + (0, 2194), + (1, 7536), + (0, 16252), + (0, 7016), + (0, 14), + (0, 1251), + (0, 3298), + (0, 1), + (0, 942), + (0, 3), + (0, 5), + (0, 164), + (0, 24435), + (0, 11), + (0, 1345), + (0, 191), + (0, 1599), + (0, 1004), + (0, 1251), + (0, 1626), + (0, 162), + ]), + entries: ::phf::Slice::Static(&[ + (UniCase("lightnign"), "lightning"), + (UniCase("hierachical"), "hierarchical"), + (UniCase("crystallisation"), "crystallization"), + (UniCase("superham"), "superhuman"), + (UniCase("executionner"), "executioner"), + (UniCase("partiarchal"), "patriarchal"), + (UniCase("childen"), "children"), + (UniCase("domesitcated"), "domesticated"), + (UniCase("deutschalnd"), "deutschland"), + (UniCase("educationnal"), "educational"), + (UniCase("compramised"), "compromised"), + (UniCase("foricbly"), "forcibly"), + (UniCase("electronik"), "election"), + (UniCase("vegetarain"), "vegetarians"), + (UniCase("restauraunts"), "restaurants"), + (UniCase("assemple"), "assemble"), + (UniCase("anticapate"), "anticipate"), + (UniCase("extradtion"), "extraction"), + (UniCase("backgorunds"), "backgrounds"), + (UniCase("swivelled"), "swiveled"), + (UniCase("eugencis"), "eugenics"), + (UniCase("kurbick"), "kubrick"), + (UniCase("interstaller"), "interstellar"), + (UniCase("exaggarating"), "exaggerating"), + (UniCase("comminucate"), "communicate"), + (UniCase("transplantes"), "transplants"), + (UniCase("internatinal"), "international"), + (UniCase("negoitation"), "negotiation"), + (UniCase("captialization"), "capitalization"), + (UniCase("intriuge"), "intrigue"), + (UniCase("evloving"), "evolving"), + (UniCase("expressin"), "expression"), + (UniCase("internalisation"), "internalization"), + (UniCase("definie"), "definite"), + (UniCase("neutralt"), "neutrality"), + (UniCase("proletaricat"), "proletariat"), + (UniCase("andoirds"), "androids"), + (UniCase("explenatory"), "explanatory"), + (UniCase("theroists"), "theorists"), + (UniCase("acceptabel"), "acceptable"), + (UniCase("calcuim"), "calcium"), + (UniCase("misreable"), "miserable"), + (UniCase("annihliated"), "annihilated"), + (UniCase("palestenian"), "palestinian"), + (UniCase("nuremburg"), "nuremberg"), + (UniCase("consolodate"), "consolidate"), + (UniCase("configuracion"), "configuration"), + (UniCase("enthuisasts"), "enthusiasts"), + (UniCase("wishlisht"), "wishlist"), + (UniCase("nasvhille"), "nashville"), + (UniCase("koncentrations"), "concentrations"), + (UniCase("depcited"), "depicted"), + (UniCase("collission"), "collisions"), + (UniCase("finisse"), "finishes"), + (UniCase("sysamdin"), "sysadmin"), + (UniCase("conveinently"), "conveniently"), + (UniCase("contrabution"), "contribution"), + (UniCase("implementes"), "implements"), + (UniCase("touchsceen"), "touchscreen"), + (UniCase("obersvation"), "observation"), + (UniCase("consentrating"), "concentrating"), + (UniCase("nacionalists"), "nationalists"), + (UniCase("conflciting"), "conflicting"), + (UniCase("mediocer"), "mediocre"), + (UniCase("encrpyted"), "encrypted"), + (UniCase("scorpiomon"), "scorpion"), + (UniCase("poisin"), "poison"), + (UniCase("automobilies"), "automobile"), + (UniCase("anedoctal"), "anecdotal"), + (UniCase("acused"), "accused"), + (UniCase("abritration"), "arbitration"), + (UniCase("frankiln"), "franklin"), + (UniCase("marijuanna"), "marijuana"), + (UniCase("australain"), "australians"), + (UniCase("diagramms"), "diagrams"), + (UniCase("bureaucrazy"), "bureaucracy"), + (UniCase("arbitrariliy"), "arbitrarily"), + (UniCase("birghtness"), "brightness"), + (UniCase("evovles"), "evolves"), + (UniCase("substans"), "substances"), + (UniCase("haemophiliacs"), "hemophiliacs"), + (UniCase("raelism"), "realism"), + (UniCase("responces"), "response"), + (UniCase("retrosepct"), "retrospect"), + (UniCase("theatre"), "theater"), + (UniCase("philipines"), "philippines"), + (UniCase("aggressivly"), "aggressively"), + (UniCase("illsuions"), "illusions"), + (UniCase("polarised"), "polarized"), + (UniCase("showboarding"), "snowboarding"), + (UniCase("maginficent"), "magnificent"), + (UniCase("staminia"), "stamina"), + (UniCase("greviances"), "grievances"), + (UniCase("underminining"), "undermining"), + (UniCase("incompatiable"), "incompatible"), + (UniCase("levetate"), "levitate"), + (UniCase("unreleated"), "unreleased"), + (UniCase("teusday"), "tuesday"), + (UniCase("enchancment"), "enchantment"), + (UniCase("missiony"), "missionary"), + (UniCase("appearnace"), "appearances"), + (UniCase("smartare"), "smarter"), + (UniCase("expropiated"), "expropriated"), + (UniCase("algorthim"), "algorithm"), + (UniCase("supplemetal"), "supplemental"), + (UniCase("xenophopia"), "xenophobia"), + (UniCase("assimalate"), "assimilate"), + (UniCase("marvellously"), "marvelously"), + (UniCase("bootleader"), "bootloader"), + (UniCase("medievel"), "medieval"), + (UniCase("foregorund"), "foreground"), + (UniCase("atelast"), "atleast"), + (UniCase("estimacion"), "estimation"), + (UniCase("enligthenment"), "enlightenment"), + (UniCase("organismen"), "organise"), + (UniCase("assosiated"), "associated"), + (UniCase("theatres"), "theaters"), + (UniCase("scnadinavian"), "scandinavian"), + (UniCase("articulted"), "articulated"), + (UniCase("moeny"), "money"), + (UniCase("indicitave"), "indicative"), + (UniCase("spectacularily"), "spectacularly"), + (UniCase("homelessess"), "homelessness"), + (UniCase("appearences"), "appearances"), + (UniCase("accuraccy"), "accuracy"), + (UniCase("illegales"), "illegals"), + (UniCase("captialists"), "capitalists"), + (UniCase("angualr"), "angular"), + (UniCase("concersion"), "concession"), + (UniCase("decendant"), "descendant"), + (UniCase("sorcercy"), "sorcery"), + (UniCase("caligraphy"), "calligraphy"), + (UniCase("compositoin"), "compositions"), + (UniCase("culitvate"), "cultivate"), + (UniCase("bureaucratisch"), "bureaucratic"), + (UniCase("indipendent"), "independent"), + (UniCase("constitutionnal"), "constitutional"), + (UniCase("pedohpile"), "pedophile"), + (UniCase("neglicting"), "neglecting"), + (UniCase("compadible"), "compatible"), + (UniCase("legalizaton"), "legalization"), + (UniCase("coursefork"), "coursework"), + (UniCase("paralell"), "parallel"), + (UniCase("excessivly"), "excessively"), + (UniCase("hositlity"), "hostility"), + (UniCase("achievments"), "achievements"), + (UniCase("inferioir"), "inferior"), + (UniCase("diagnositc"), "diagnostic"), + (UniCase("tramboline"), "trampoline"), + (UniCase("synchronised"), "synchronized"), + (UniCase("promenantly"), "prominently"), + (UniCase("proselytising"), "proselytizing"), + (UniCase("endores"), "endorse"), + (UniCase("brutaly"), "brutally"), + (UniCase("encyclopidia"), "encyclopedia"), + (UniCase("foreginers"), "foreigners"), + (UniCase("netruality"), "neutrality"), + (UniCase("miscarrige"), "miscarriage"), + (UniCase("arcehtype"), "archetype"), + (UniCase("sketpical"), "skeptical"), + (UniCase("consensul"), "consensual"), + (UniCase("frequentily"), "frequently"), + (UniCase("jamaicia"), "jamaica"), + (UniCase("dictionaire"), "dictionaries"), + (UniCase("ensalve"), "enslave"), + (UniCase("misile"), "missile"), + (UniCase("ineqaulity"), "inequality"), + (UniCase("twilgiht"), "twilight"), + (UniCase("jacksonvillle"), "jacksonville"), + (UniCase("disrecpected"), "disrespected"), + (UniCase("speciallly"), "specially"), + (UniCase("devistating"), "devastating"), + (UniCase("imaginativo"), "imagination"), + (UniCase("wonderfull"), "wonderful"), + (UniCase("divinitory"), "divinity"), + (UniCase("cauncks"), "canucks"), + (UniCase("martail"), "martial"), + (UniCase("overshadowd"), "overshadowed"), + (UniCase("dionsaurs"), "dinosaurs"), + (UniCase("libertea"), "liberate"), + (UniCase("consequnce"), "consequence"), + (UniCase("professorn"), "profession"), + (UniCase("disorganised"), "disorganized"), + (UniCase("nutirent"), "nutrient"), + (UniCase("oponent"), "opponent"), + (UniCase("visualised"), "visualized"), + (UniCase("subsiquently"), "subsequently"), + (UniCase("overcharing"), "overarching"), + (UniCase("historicaly"), "historically"), + (UniCase("abominacion"), "abomination"), + (UniCase("indroduction"), "introduction"), + (UniCase("agriculure"), "agriculture"), + (UniCase("elimiate"), "eliminate"), + (UniCase("highligthing"), "highlighting"), + (UniCase("definayely"), "definately"), + (UniCase("morisette"), "morissette"), + (UniCase("marshamllow"), "marshmallow"), + (UniCase("researce"), "researcher"), + (UniCase("darcula"), "dracula"), + (UniCase("lithunaia"), "lithuania"), + (UniCase("mecahnic"), "mechanic"), + (UniCase("cornithians"), "corinthians"), + (UniCase("conflcits"), "conflicts"), + (UniCase("maintinance"), "maintenance"), + (UniCase("stomache"), "stomach"), + (UniCase("logictical"), "logistical"), + (UniCase("landingers"), "landings"), + (UniCase("reserverd"), "reserved"), + (UniCase("addres"), "address"), + (UniCase("indonesa"), "indonesia"), + (UniCase("catastropic"), "catastrophic"), + (UniCase("scoreborad"), "scoreboard"), + (UniCase("extravogant"), "extravagant"), + (UniCase("preductive"), "predictive"), + (UniCase("unsubscrbe"), "unsubscribe"), + (UniCase("assotiations"), "associations"), + (UniCase("unbeliavably"), "unbelievably"), + (UniCase("signapore"), "singapore"), + (UniCase("awesomenss"), "awesomeness"), + (UniCase("patroits"), "patriots"), + (UniCase("automatico"), "automation"), + (UniCase("anaesthetise"), "anesthetize"), + (UniCase("unviersally"), "universally"), + (UniCase("definetyl"), "definetly"), + (UniCase("legitamacy"), "legitimacy"), + (UniCase("masscare"), "massacre"), + (UniCase("singulair"), "singular"), + (UniCase("doplhins"), "dolphins"), + (UniCase("acceleraton"), "acceleration"), + (UniCase("hypethetically"), "hypothetically"), + (UniCase("convenit"), "convenient"), + (UniCase("quantitiy"), "quantity"), + (UniCase("monolistic"), "monolithic"), + (UniCase("protestas"), "protests"), + (UniCase("applaudes"), "applause"), + (UniCase("southamtpon"), "southampton"), + (UniCase("restricteds"), "restricts"), + (UniCase("demograpics"), "demographics"), + (UniCase("untranslateable"), "untranslatable"), + (UniCase("federativo"), "federation"), + (UniCase("norhteast"), "northeast"), + (UniCase("contrubutes"), "contributes"), + (UniCase("repubicans"), "republicans"), + (UniCase("hesiman"), "heisman"), + (UniCase("temperatues"), "temperatures"), + (UniCase("overwealming"), "overwhelming"), + (UniCase("differentes"), "differences"), + (UniCase("accumulare"), "accumulate"), + (UniCase("socialsim"), "socialism"), + (UniCase("transportarse"), "transporter"), + (UniCase("arbitraton"), "arbitration"), + (UniCase("predocessors"), "predecessors"), + (UniCase("specualtive"), "speculative"), + (UniCase("orignials"), "originals"), + (UniCase("francaises"), "franchises"), + (UniCase("specailty"), "specialty"), + (UniCase("birdges"), "bridges"), + (UniCase("consultata"), "consultant"), + (UniCase("aleinated"), "alienated"), + (UniCase("imprisonent"), "imprisonment"), + (UniCase("insitution"), "institution"), + (UniCase("buddhisim"), "buddhism"), + (UniCase("soveriengty"), "sovereignty"), + (UniCase("palestinans"), "palestinians"), + (UniCase("accalimed"), "acclaimed"), + (UniCase("investigatie"), "investigative"), + (UniCase("godlman"), "goldman"), + (UniCase("thunderjolt"), "thunderbolt"), + (UniCase("affortable"), "affordable"), + (UniCase("subsrcibed"), "subscribed"), + (UniCase("prevantative"), "preventative"), + (UniCase("hamburgr"), "hamburgers"), + (UniCase("simulaiton"), "simulations"), + (UniCase("differintiate"), "differentiate"), + (UniCase("bangladesch"), "bangladesh"), + (UniCase("absoultes"), "absolutes"), + (UniCase("tortilllas"), "tortilla"), + (UniCase("intellecual"), "intellectual"), + (UniCase("temepst"), "tempest"), + (UniCase("claculators"), "calculators"), + (UniCase("privilegied"), "privileged"), + (UniCase("marketpalce"), "marketplace"), + (UniCase("califronian"), "californian"), + (UniCase("orphanes"), "orphans"), + (UniCase("corresponing"), "corresponding"), + (UniCase("breasttaking"), "breathtaking"), + (UniCase("defintiely"), "definitely"), + (UniCase("nominativo"), "nomination"), + (UniCase("infraread"), "infrared"), + (UniCase("pshycopath"), "psychopath"), + (UniCase("exaggurating"), "exaggerating"), + (UniCase("unbraikable"), "unbreakable"), + (UniCase("pessimisstic"), "pessimistic"), + (UniCase("yourselvs"), "yourselves"), + (UniCase("requerimento"), "requirement"), + (UniCase("porpose"), "propose"), + (UniCase("admitedly"), "admittedly"), + (UniCase("necessiate"), "necessitate"), + (UniCase("pittsbrugh"), "pittsburgh"), + (UniCase("explination"), "explanation"), + (UniCase("politley"), "politely"), + (UniCase("astonising"), "astonishing"), + (UniCase("illustrater"), "illustrator"), + (UniCase("lifesystem"), "filesystem"), + (UniCase("capitolists"), "capitalists"), + (UniCase("containd"), "contained"), + (UniCase("communitites"), "communities"), + (UniCase("incrementos"), "increments"), + (UniCase("phenomenom"), "phenomenon"), + (UniCase("spontaneuos"), "spontaneous"), + (UniCase("anmesia"), "amnesia"), + (UniCase("capitalistes"), "capitalists"), + (UniCase("computating"), "computation"), + (UniCase("restriciton"), "restrictions"), + (UniCase("renuion"), "reunion"), + (UniCase("goldike"), "godlike"), + (UniCase("bandiwdth"), "bandwidth"), + (UniCase("milligramme"), "milligram"), + (UniCase("preferible"), "preferable"), + (UniCase("catholicus"), "catholics"), + (UniCase("mechanised"), "mechanized"), + (UniCase("prematurelly"), "prematurely"), + (UniCase("compadibility"), "compatibility"), + (UniCase("accelerater"), "accelerator"), + (UniCase("mediterrannean"), "mediterranean"), + (UniCase("trailes"), "trailers"), + (UniCase("itemised"), "itemized"), + (UniCase("stateman"), "statesman"), + (UniCase("malfunktion"), "malfunction"), + (UniCase("notabley"), "notably"), + (UniCase("continum"), "continuum"), + (UniCase("reinstallled"), "reinstalled"), + (UniCase("perspecitve"), "perspective"), + (UniCase("morbildy"), "morbidly"), + (UniCase("tightining"), "tightening"), + (UniCase("skateing"), "skating"), + (UniCase("protogonist"), "protagonist"), + (UniCase("defenceless"), "defenseless"), + (UniCase("offensivly"), "offensively"), + (UniCase("popultaion"), "populations"), + (UniCase("civilising"), "civilizing"), + (UniCase("relpacement"), "replacement"), + (UniCase("comaprison"), "comparison"), + (UniCase("suseptable"), "susceptible"), + (UniCase("cocktials"), "cocktails"), + (UniCase("exceptionel"), "exceptional"), + (UniCase("archtype"), "archetype"), + (UniCase("convorsations"), "conversations"), + (UniCase("protugal"), "portugal"), + (UniCase("sufferered"), "suffered"), + (UniCase("torchlgiht"), "torchlight"), + (UniCase("disconenct"), "disconnect"), + (UniCase("paritally"), "partially"), + (UniCase("defitenly"), "definetly"), + (UniCase("levelled"), "leveled"), + (UniCase("revitalise"), "revitalize"), + (UniCase("lifetsyles"), "lifestyles"), + (UniCase("dessicated"), "desiccated"), + (UniCase("monstrasity"), "monstrosity"), + (UniCase("accpetance"), "acceptance"), + (UniCase("industrialises"), "industrializes"), + (UniCase("humoros"), "humorous"), + (UniCase("atheistc"), "atheistic"), + (UniCase("engagemnet"), "engagements"), + (UniCase("votlage"), "voltage"), + (UniCase("monitord"), "monitored"), + (UniCase("suroundings"), "surroundings"), + (UniCase("zimbawbe"), "zimbabwe"), + (UniCase("comforming"), "comforting"), + (UniCase("shenaniganns"), "shenanigans"), + (UniCase("preinitalization"), "preinitialization"), + (UniCase("aristote"), "aristotle"), + (UniCase("independendly"), "independently"), + (UniCase("southtampon"), "southampton"), + (UniCase("cycloen"), "cyclone"), + (UniCase("determins"), "determines"), + (UniCase("intimiated"), "intimidate"), + (UniCase("avataras"), "avatars"), + (UniCase("subruban"), "suburban"), + (UniCase("essencials"), "essentials"), + (UniCase("hopsitalized"), "hospitalized"), + (UniCase("extropolate"), "extrapolate"), + (UniCase("custimizable"), "customizable"), + (UniCase("pedestrianises"), "pedestrianizes"), + (UniCase("saddnes"), "saddens"), + (UniCase("monitering"), "monitoring"), + (UniCase("hardenend"), "hardened"), + (UniCase("unimporant"), "unimportant"), + (UniCase("integrato"), "integration"), + (UniCase("essentialls"), "essentials"), + (UniCase("variabel"), "variable"), + (UniCase("downvoteing"), "downvoting"), + (UniCase("assocation"), "association"), + (UniCase("clarificaiton"), "clarification"), + (UniCase("expemtions"), "exemptions"), + (UniCase("annoucners"), "announcers"), + (UniCase("ministerens"), "ministers"), + (UniCase("absovle"), "absolve"), + (UniCase("conceviably"), "conceivably"), + (UniCase("whilsting"), "whistling"), + (UniCase("forgettting"), "forgetting"), + (UniCase("pubilsher"), "publisher"), + (UniCase("modificaton"), "modification"), + (UniCase("defelct"), "deflect"), + (UniCase("libretarian"), "libertarian"), + (UniCase("decoratie"), "decorative"), + (UniCase("exaggeratted"), "exaggerated"), + (UniCase("monrachy"), "monarchy"), + (UniCase("segregatie"), "segregated"), + (UniCase("desparation"), "desperation"), + (UniCase("compulsury"), "compulsory"), + (UniCase("abnornally"), "abnormally"), + (UniCase("collectifs"), "collects"), + (UniCase("mutliplayer"), "multiplayer"), + (UniCase("anarchiszm"), "anarchism"), + (UniCase("alechmist"), "alchemist"), + (UniCase("calculador"), "calculator"), + (UniCase("previosuly"), "previously"), + (UniCase("monstrosoty"), "monstrosity"), + (UniCase("weakenend"), "weakened"), + (UniCase("pyschological"), "psychological"), + (UniCase("instantenious"), "instantaneous"), + (UniCase("tramploine"), "trampoline"), + (UniCase("magincian"), "magician"), + (UniCase("speicals"), "specials"), + (UniCase("morbidley"), "morbidly"), + (UniCase("definitlety"), "definitly"), + (UniCase("peristent"), "persistent"), + (UniCase("sceintifically"), "scientifically"), + (UniCase("metalurgic"), "metallurgic"), + (UniCase("terrabyte"), "terabyte"), + (UniCase("questionned"), "questioned"), + (UniCase("collaros"), "collars"), + (UniCase("structurels"), "structures"), + (UniCase("afair"), "affair"), + (UniCase("katastrophic"), "catastrophic"), + (UniCase("convoulted"), "convoluted"), + (UniCase("heratige"), "heritage"), + (UniCase("allthough"), "although"), + (UniCase("phsyiological"), "physiological"), + (UniCase("thereaputic"), "therapeutic"), + (UniCase("dichtomy"), "dichotomy"), + (UniCase("guardin"), "guardian"), + (UniCase("interect"), "interacted"), + (UniCase("mediocirty"), "mediocrity"), + (UniCase("rhymme"), "rhyme"), + (UniCase("randomzied"), "randomized"), + (UniCase("generationers"), "generations"), + (UniCase("lotharingen"), "lothringen"), + (UniCase("endorcement"), "endorsement"), + (UniCase("terrotories"), "territories"), + (UniCase("halluzination"), "hallucination"), + (UniCase("xenophoby"), "xenophobia"), + (UniCase("respectuos"), "respects"), + (UniCase("adventageous"), "advantageous"), + (UniCase("acknolwedges"), "acknowledges"), + (UniCase("visualizaiton"), "visualization"), + (UniCase("innotation"), "innovation"), + (UniCase("influances"), "influences"), + (UniCase("accroding"), "according"), + (UniCase("startegically"), "strategically"), + (UniCase("synthesised"), "synthesized"), + (UniCase("prevailling"), "prevailing"), + (UniCase("outfeild"), "outfield"), + (UniCase("spindel"), "spindle"), + (UniCase("ancedote"), "anecdote"), + (UniCase("graudates"), "graduates"), + (UniCase("profesion"), "profusion"), + (UniCase("ostrecized"), "ostracized"), + (UniCase("tutorual"), "tutorial"), + (UniCase("hamphsire"), "hampshire"), + (UniCase("boook"), "book"), + (UniCase("kennedey"), "kennedy"), + (UniCase("competetion"), "competition"), + (UniCase("firefigthers"), "firefighters"), + (UniCase("journalis"), "journals"), + (UniCase("incomaptible"), "incompatible"), + (UniCase("overthinkig"), "overthinking"), + (UniCase("calcluator"), "calculators"), + (UniCase("conservativs"), "conservatism"), + (UniCase("facutally"), "factually"), + (UniCase("wreslter"), "wrestler"), + (UniCase("sterilze"), "sterile"), + (UniCase("squishly"), "squishy"), + (UniCase("calcluations"), "calculation"), + (UniCase("compulsivo"), "compulsion"), + (UniCase("procesed"), "proceeds"), + (UniCase("whistels"), "whistles"), + (UniCase("microtax"), "microatx"), + (UniCase("scholary"), "scholarly"), + (UniCase("definjtely"), "definately"), + (UniCase("illuminite"), "illuminati"), + (UniCase("knowledgble"), "knowledgable"), + (UniCase("statisitcally"), "statistically"), + (UniCase("represssion"), "repression"), + (UniCase("timne"), "time"), + (UniCase("mosnter"), "monster"), + (UniCase("desensatized"), "desensitized"), + (UniCase("artistas"), "artists"), + (UniCase("manafacturers"), "manufacturers"), + (UniCase("dysoptian"), "dystopian"), + (UniCase("portrayl"), "portrayal"), + (UniCase("epaulette"), "epaulet"), + (UniCase("lecutres"), "lectures"), + (UniCase("carefuly"), "carefully"), + (UniCase("ejaculatte"), "ejaculate"), + (UniCase("harbour"), "harbor"), + (UniCase("publicher"), "publisher"), + (UniCase("indefinitive"), "indefinite"), + (UniCase("instititional"), "institutional"), + (UniCase("diety"), "deity"), + (UniCase("nineth"), "ninth"), + (UniCase("sacreficed"), "sacrificed"), + (UniCase("justificstion"), "justifications"), + (UniCase("metropolin"), "metropolitan"), + (UniCase("organisim"), "organism"), + (UniCase("addcits"), "addicts"), + (UniCase("platnium"), "platinum"), + (UniCase("gauntlent"), "gauntlet"), + (UniCase("performancewise"), "performances"), + (UniCase("supervisar"), "supervisor"), + (UniCase("pensies"), "penises"), + (UniCase("aviaiton"), "aviation"), + (UniCase("terrorising"), "terrorizing"), + (UniCase("defininitely"), "definitively"), + (UniCase("beautilful"), "beautifully"), + (UniCase("supscriptions"), "subscriptions"), + (UniCase("regulares"), "regulars"), + (UniCase("movesped"), "movespeed"), + (UniCase("essense"), "essence"), + (UniCase("authentisity"), "authenticity"), + (UniCase("apologise"), "apologize"), + (UniCase("spectaculair"), "spectacular"), + (UniCase("indepdenent"), "independents"), + (UniCase("homecomming"), "homecoming"), + (UniCase("organised"), "organized"), + (UniCase("duelled"), "dueled"), + (UniCase("unionising"), "unionizing"), + (UniCase("fabulos"), "fabulous"), + (UniCase("hopsitals"), "hospitals"), + (UniCase("disclamier"), "disclaimer"), + (UniCase("auotcorrect"), "autocorrect"), + (UniCase("governmnet"), "government"), + (UniCase("mischeivous"), "mischievous"), + (UniCase("portrating"), "portraying"), + (UniCase("survivabililty"), "survivability"), + (UniCase("ethicallly"), "ethically"), + (UniCase("instructior"), "instructor"), + (UniCase("exersices"), "exercises"), + (UniCase("motherbard"), "motherboard"), + (UniCase("peopels"), "peoples"), + (UniCase("differnece"), "difference"), + (UniCase("retaliaton"), "retaliation"), + (UniCase("theoreticly"), "theoretical"), + (UniCase("temporay"), "temporary"), + (UniCase("fundamentalits"), "fundamentalists"), + (UniCase("dyregulation"), "deregulation"), + (UniCase("conviluted"), "convoluted"), + (UniCase("formadible"), "formidable"), + (UniCase("depositd"), "deposited"), + (UniCase("realisticaly"), "realistically"), + (UniCase("organisert"), "organizers"), + (UniCase("joanthan"), "jonathan"), + (UniCase("hstory"), "history"), + (UniCase("extreems"), "extremes"), + (UniCase("allegeance"), "allegiance"), + (UniCase("omre"), "more"), + (UniCase("peritinkle"), "periwinkle"), + (UniCase("insectos"), "insects"), + (UniCase("eifnach"), "einfach"), + (UniCase("goosebums"), "goosebumps"), + (UniCase("electricial"), "electrical"), + (UniCase("industriels"), "industries"), + (UniCase("institutionella"), "institutional"), + (UniCase("criticies"), "criticise"), + (UniCase("vulnarability"), "vulnerability"), + (UniCase("sattelites"), "satellites"), + (UniCase("intentinal"), "intentional"), + (UniCase("perihperal"), "peripheral"), + (UniCase("veiwers"), "viewers"), + (UniCase("incrediblely"), "incredibly"), + (UniCase("esitmation"), "estimation"), + (UniCase("brazillans"), "brazilians"), + (UniCase("controversa"), "controversial"), + (UniCase("moulded"), "molded"), + (UniCase("selectiose"), "selections"), + (UniCase("intervied"), "interviewed"), + (UniCase("mathemetician"), "mathematician"), + (UniCase("establishemnt"), "establishments"), + (UniCase("prohibicion"), "prohibition"), + (UniCase("eyeballls"), "eyeballs"), + (UniCase("microscophic"), "microscopic"), + (UniCase("frustrats"), "frustrates"), + (UniCase("treasurey"), "treasury"), + (UniCase("nationalising"), "nationalizing"), + (UniCase("conveniance"), "convenience"), + (UniCase("hemlets"), "helmets"), + (UniCase("premire"), "premier"), + (UniCase("recordarse"), "recorder"), + (UniCase("midifeld"), "midfield"), + (UniCase("mircotransactions"), "microtransactions"), + (UniCase("reinforcemnt"), "reinforcement"), + (UniCase("obligerated"), "obliterated"), + (UniCase("oversimplificating"), "oversimplification"), + (UniCase("assassinato"), "assassination"), + (UniCase("recurrance"), "recurrence"), + (UniCase("deficately"), "definately"), + (UniCase("celebrationis"), "celebrations"), + (UniCase("underwar"), "underwater"), + (UniCase("serenitary"), "serenity"), + (UniCase("neighbourgood"), "neighbourhood"), + (UniCase("monstruos"), "monstrous"), + (UniCase("equilavent"), "equivalent"), + (UniCase("activistes"), "activists"), + (UniCase("aptitudine"), "aptitude"), + (UniCase("overpopluation"), "overpopulation"), + (UniCase("connectos"), "connectors"), + (UniCase("arithmentic"), "arithmetic"), + (UniCase("realy"), "really"), + (UniCase("ostracises"), "ostracizes"), + (UniCase("coordinants"), "coordinates"), + (UniCase("developors"), "develops"), + (UniCase("condiscending"), "condescending"), + (UniCase("techtician"), "technician"), + (UniCase("strategis"), "strategies"), + (UniCase("ostenisbly"), "ostensibly"), + (UniCase("democrasies"), "democracies"), + (UniCase("mayalsia"), "malaysia"), + (UniCase("pursuaded"), "persuaded"), + (UniCase("chemcial"), "chemical"), + (UniCase("gaurd"), "guard"), + (UniCase("interpretationen"), "interpretations"), + (UniCase("commerically"), "commercially"), + (UniCase("logisitcs"), "logistics"), + (UniCase("transgeder"), "transgender"), + (UniCase("compeating"), "completing"), + (UniCase("terrorises"), "terrorizes"), + (UniCase("crucibe"), "crucible"), + (UniCase("historinhas"), "historians"), + (UniCase("prostituee"), "prostitute"), + (UniCase("inspektors"), "inspectors"), + (UniCase("compleet"), "complete"), + (UniCase("predjuice"), "prejudice"), + (UniCase("minstry"), "ministry"), + (UniCase("crimanally"), "criminally"), + (UniCase("preceeding"), "preceding"), + (UniCase("rumorus"), "rumours"), + (UniCase("compariosn"), "comparisons"), + (UniCase("populationes"), "populations"), + (UniCase("abstruction"), "abstraction"), + (UniCase("distoriton"), "distortion"), + (UniCase("simulacion"), "simulation"), + (UniCase("testice"), "testicle"), + (UniCase("thurdsays"), "thursdays"), + (UniCase("expansivos"), "expansions"), + (UniCase("artcile"), "article"), + (UniCase("utilisable"), "utilizable"), + (UniCase("contagios"), "contagious"), + (UniCase("pedestirans"), "pedestrians"), + (UniCase("intellectuel"), "intellectual"), + (UniCase("detectie"), "detectives"), + (UniCase("grapefrukt"), "grapefruit"), + (UniCase("napolean"), "napoleon"), + (UniCase("bureaucrasy"), "bureaucrats"), + (UniCase("compunet"), "compute"), + (UniCase("constraits"), "constraints"), + (UniCase("pulisher"), "publisher"), + (UniCase("slipperly"), "slippery"), + (UniCase("prostitutos"), "prostitutes"), + (UniCase("snowballling"), "snowballing"), + (UniCase("tutoriales"), "tutorials"), + (UniCase("worshoping"), "worshiping"), + (UniCase("prioritice"), "prioritize"), + (UniCase("celebrites"), "celebrities"), + (UniCase("compeitions"), "competitions"), + (UniCase("stardardized"), "standardized"), + (UniCase("populos"), "populous"), + (UniCase("symptomes"), "symptoms"), + (UniCase("juadism"), "judaism"), + (UniCase("overprised"), "overpriced"), + (UniCase("reffering"), "referring"), + (UniCase("incorrecty"), "incorrectly"), + (UniCase("indiands"), "indians"), + (UniCase("brazileans"), "brazilians"), + (UniCase("skillslots"), "skillshots"), + (UniCase("wallpapaers"), "wallpapers"), + (UniCase("converstion"), "conversion"), + (UniCase("arcitechture"), "architecture"), + (UniCase("vascetomy"), "vasectomy"), + (UniCase("clasic"), "classic"), + (UniCase("politickin"), "politician"), + (UniCase("deflecto"), "deflection"), + (UniCase("haemorrhaging"), "hemorrhaging"), + (UniCase("commodoties"), "commodities"), + (UniCase("vaccinatie"), "vaccinated"), + (UniCase("caricatore"), "caricature"), + (UniCase("acceleread"), "accelerated"), + (UniCase("immortalising"), "immortalizing"), + (UniCase("renewabels"), "renewables"), + (UniCase("tenacle"), "tentacle"), + (UniCase("checkear"), "checker"), + (UniCase("symapthy"), "sympathy"), + (UniCase("enthusiastics"), "enthusiasts"), + (UniCase("caterpillers"), "caterpillars"), + (UniCase("commendments"), "commandments"), + (UniCase("persumably"), "presumably"), + (UniCase("replaceble"), "replaceable"), + (UniCase("bernouilli"), "bernoulli"), + (UniCase("expolsion"), "explosion"), + (UniCase("comepndium"), "compendium"), + (UniCase("templarios"), "templars"), + (UniCase("rennovation"), "renovation"), + (UniCase("politicises"), "politicizes"), + (UniCase("destinty"), "destiny"), + (UniCase("sterilising"), "sterilizing"), + (UniCase("compilcated"), "complicate"), + (UniCase("constarnation"), "consternation"), + (UniCase("epidsodes"), "episodes"), + (UniCase("denominaton"), "denomination"), + (UniCase("quizes"), "quizzes"), + (UniCase("hestiation"), "hesitation"), + (UniCase("concentratons"), "concentrations"), + (UniCase("notario"), "ontario"), + (UniCase("withdrawles"), "withdrawals"), + (UniCase("virualization"), "visualization"), + (UniCase("perdictive"), "predictive"), + (UniCase("fictious"), "fictitious"), + (UniCase("cuestionable"), "questionable"), + (UniCase("condulences"), "condolences"), + (UniCase("reincatnation"), "reincarnation"), + (UniCase("meaninng"), "meaning"), + (UniCase("wnated"), "wanted"), + (UniCase("nulcear"), "nuclear"), + (UniCase("phylosophical"), "philosophical"), + (UniCase("fabricacion"), "fabrication"), + (UniCase("arrengement"), "arrangement"), + (UniCase("multipleye"), "multiply"), + (UniCase("incorporare"), "incorporate"), + (UniCase("rilvaries"), "rivalries"), + (UniCase("euphoira"), "euphoria"), + (UniCase("misrepresentaion"), "misrepresentation"), + (UniCase("elimimates"), "eliminates"), + (UniCase("planeswlakers"), "planeswalker"), + (UniCase("technologia"), "technological"), + (UniCase("commision"), "commission"), + (UniCase("duetschland"), "deutschland"), + (UniCase("hypocrit"), "hypocrite"), + (UniCase("childbrith"), "childbirth"), + (UniCase("wednesdsay"), "wednesdays"), + (UniCase("reorganisations"), "reorganizations"), + (UniCase("impossable"), "impossible"), + (UniCase("verison"), "version"), + (UniCase("conserned"), "concerned"), + (UniCase("infinitie"), "infinite"), + (UniCase("cartirdge"), "cartridge"), + (UniCase("fountian"), "fountain"), + (UniCase("jamiacan"), "jamaican"), + (UniCase("subisdized"), "subsidized"), + (UniCase("reasonal"), "reasonably"), + (UniCase("courthourse"), "courthouse"), + (UniCase("automatiek"), "automate"), + (UniCase("virginis"), "virgins"), + (UniCase("muffinus"), "muffins"), + (UniCase("personaly"), "personally"), + (UniCase("mechanims"), "mechanism"), + (UniCase("narcissisitc"), "narcissist"), + (UniCase("deliberant"), "deliberate"), + (UniCase("iranina"), "iranian"), + (UniCase("vincinity"), "vicinity"), + (UniCase("airporta"), "airports"), + (UniCase("reconaissance"), "reconnaissance"), + (UniCase("thankfuly"), "thankfully"), + (UniCase("festivales"), "festivals"), + (UniCase("reflecto"), "reflection"), + (UniCase("inclinde"), "incline"), + (UniCase("transcrpit"), "transcript"), + (UniCase("withdrawning"), "withdrawing"), + (UniCase("documantaries"), "documentaries"), + (UniCase("promisculous"), "promiscuous"), + (UniCase("preperations"), "preparations"), + (UniCase("gamerga"), "gamertag"), + (UniCase("metaphsyics"), "metaphysics"), + (UniCase("paitent"), "patient"), + (UniCase("intimidare"), "intimidate"), + (UniCase("carmalite"), "carmelite"), + (UniCase("monologe"), "monologue"), + (UniCase("comeptition"), "competition"), + (UniCase("adn"), "and"), + (UniCase("abstante"), "bastante"), + (UniCase("mannersims"), "mannerisms"), + (UniCase("avtaars"), "avatars"), + (UniCase("oylmpics"), "olympics"), + (UniCase("connectivitiy"), "connectivity"), + (UniCase("dyansty"), "dynasty"), + (UniCase("daed"), "dead"), + (UniCase("familairity"), "familiarity"), + (UniCase("pratictioner"), "practitioners"), + (UniCase("staduim"), "stadium"), + (UniCase("lithuaina"), "lithuania"), + (UniCase("electhor"), "electro"), + (UniCase("conflictos"), "conflicts"), + (UniCase("achieveds"), "achieves"), + (UniCase("thesits"), "theists"), + (UniCase("mandarion"), "mandarin"), + (UniCase("diasble"), "disable"), + (UniCase("caliofrnia"), "californian"), + (UniCase("unlockes"), "unlocks"), + (UniCase("familiarises"), "familiarizes"), + (UniCase("abnoramlly"), "abnormally"), + (UniCase("manifactures"), "manufactures"), + (UniCase("virbator"), "vibrator"), + (UniCase("socrateks"), "socrates"), + (UniCase("bureaucracie"), "bureaucratic"), + (UniCase("orded"), "ordered"), + (UniCase("improvized"), "improvised"), + (UniCase("campuss"), "campuses"), + (UniCase("natioanlist"), "nationalist"), + (UniCase("ejacualtion"), "ejaculation"), + (UniCase("cuacasian"), "caucasian"), + (UniCase("colonises"), "colonizes"), + (UniCase("helictoper"), "helicopters"), + (UniCase("ehtanol"), "ethanol"), + (UniCase("gltiches"), "glitches"), + (UniCase("periphrial"), "peripheral"), + (UniCase("deatlhy"), "deathly"), + (UniCase("perdictions"), "predictions"), + (UniCase("paragrah"), "paragraph"), + (UniCase("encyclopeedia"), "encyclopedia"), + (UniCase("relentlesly"), "relentlessly"), + (UniCase("onsalught"), "onslaught"), + (UniCase("econimically"), "economically"), + (UniCase("vaildated"), "validated"), + (UniCase("amnestry"), "amnesty"), + (UniCase("stuidos"), "studios"), + (UniCase("anaesthesia"), "anesthesia"), + (UniCase("spectauclar"), "spectacular"), + (UniCase("stormfrount"), "stormfront"), + (UniCase("garabge"), "garbage"), + (UniCase("munchis"), "munchies"), + (UniCase("respriatory"), "respiratory"), + (UniCase("penalites"), "penalties"), + (UniCase("fortunetly"), "fortunately"), + (UniCase("separaters"), "separates"), + (UniCase("astronaunt"), "astronaut"), + (UniCase("pancaeks"), "pancakes"), + (UniCase("humaniod"), "humanoid"), + (UniCase("tihs"), "this"), + (UniCase("militarises"), "militarizes"), + (UniCase("delpoyed"), "deployed"), + (UniCase("congresssmen"), "congressmen"), + (UniCase("atrillery"), "artillery"), + (UniCase("intevene"), "intervene"), + (UniCase("independante"), "independents"), + (UniCase("pretensje"), "pretense"), + (UniCase("heaviliy"), "heavily"), + (UniCase("commantator"), "commentator"), + (UniCase("interferance"), "interference"), + (UniCase("presidet"), "presidents"), + (UniCase("bergamont"), "bergamot"), + (UniCase("refrigirator"), "refrigerator"), + (UniCase("downstaris"), "downstairs"), + (UniCase("respectivily"), "respectively"), + (UniCase("virtuose"), "virtues"), + (UniCase("speechers"), "speeches"), + (UniCase("neighbours"), "neighbors"), + (UniCase("eastwod"), "eastwood"), + (UniCase("sacrifaced"), "sacrificed"), + (UniCase("belabouring"), "belaboring"), + (UniCase("versalite"), "versatile"), + (UniCase("authorise"), "authorize"), + (UniCase("partecipated"), "participated"), + (UniCase("tuesdsy"), "tuesdays"), + (UniCase("expolit"), "exploit"), + (UniCase("disproportiante"), "disproportionate"), + (UniCase("precedense"), "precedence"), + (UniCase("manifestado"), "manifesto"), + (UniCase("deadlifs"), "deadlifts"), + (UniCase("ungreatful"), "ungrateful"), + (UniCase("conicidental"), "coincidental"), + (UniCase("alchoolism"), "alcoholism"), + (UniCase("intimidatin"), "intimidation"), + (UniCase("occurrance"), "occurrence"), + (UniCase("cheezecake"), "cheesecake"), + (UniCase("automatied"), "automate"), + (UniCase("disgruntld"), "disgruntled"), + (UniCase("kilometeres"), "kilometers"), + (UniCase("apsaragus"), "asparagus"), + (UniCase("affaires"), "affairs"), + (UniCase("mutliple"), "multiple"), + (UniCase("inhumaan"), "inhuman"), + (UniCase("prescrie"), "prescribed"), + (UniCase("quarantene"), "quarantine"), + (UniCase("occaison"), "occasion"), + (UniCase("illuminoti"), "illuminati"), + (UniCase("permisison"), "permissions"), + (UniCase("misdemeaner"), "misdemeanor"), + (UniCase("admissable"), "admissible"), + (UniCase("furstrated"), "frustrated"), + (UniCase("facilitare"), "facilitate"), + (UniCase("spiritus"), "spirits"), + (UniCase("particularise"), "particularize"), + (UniCase("unplesant"), "unpleasant"), + (UniCase("accross"), "across"), + (UniCase("illuminuti"), "illuminati"), + (UniCase("fighitng"), "fighting"), + (UniCase("propertius"), "properties"), + (UniCase("incramentally"), "incrementally"), + (UniCase("apon"), "upon"), + (UniCase("unconscioulsy"), "unconsciously"), + (UniCase("visibley"), "visibly"), + (UniCase("construst"), "constructs"), + (UniCase("rennovated"), "renovated"), + (UniCase("nothern"), "northern"), + (UniCase("sidelinien"), "sideline"), + (UniCase("predecesor"), "predecessor"), + (UniCase("genuinelly"), "genuinely"), + (UniCase("patriotisch"), "patriotic"), + (UniCase("exorbidant"), "exorbitant"), + (UniCase("unforgivible"), "unforgivable"), + (UniCase("metabolised"), "metabolized"), + (UniCase("maintanance"), "maintenance"), + (UniCase("inadverdently"), "inadvertently"), + (UniCase("challanges"), "challenges"), + (UniCase("disurption"), "disruption"), + (UniCase("northwesten"), "northwestern"), + (UniCase("respectos"), "respects"), + (UniCase("paranoida"), "paranoia"), + (UniCase("paedophilia"), "pedophilia"), + (UniCase("charaterized"), "characterized"), + (UniCase("ingerdients"), "ingredients"), + (UniCase("inheritage"), "heritage"), + (UniCase("familair"), "familiar"), + (UniCase("complais"), "complains"), + (UniCase("puting"), "putting"), + (UniCase("prescribtion"), "prescription"), + (UniCase("abondon"), "abandon"), + (UniCase("canalise"), "canalize"), + (UniCase("checkare"), "checker"), + (UniCase("graphis"), "graphics"), + (UniCase("particually"), "particularly"), + (UniCase("unsencored"), "uncensored"), + (UniCase("relfected"), "reflected"), + (UniCase("incompatiblity"), "incompatibility"), + (UniCase("copenhaguen"), "copenhagen"), + (UniCase("unrealisitic"), "unrealistic"), + (UniCase("adresable"), "addressable"), + (UniCase("playthrouhg"), "playthroughs"), + (UniCase("misinterpretting"), "misinterpreting"), + (UniCase("psichologically"), "psychologically"), + (UniCase("remarkabley"), "remarkably"), + (UniCase("teleprotation"), "teleportation"), + (UniCase("comfortabil"), "comfortably"), + (UniCase("enthusaists"), "enthusiasts"), + (UniCase("incarcelated"), "incarcerated"), + (UniCase("ambluance"), "ambulance"), + (UniCase("combinaison"), "combinations"), + (UniCase("consumersim"), "consumerism"), + (UniCase("delcaring"), "declaring"), + (UniCase("abdonimal"), "abdominal"), + (UniCase("fufill"), "fulfill"), + (UniCase("imperilled"), "imperiled"), + (UniCase("discound"), "discounted"), + (UniCase("opportuniste"), "opportunities"), + (UniCase("ingreidents"), "ingredient"), + (UniCase("flaghsip"), "flagship"), + (UniCase("inconsiquential"), "inconsequential"), + (UniCase("expemtion"), "exemption"), + (UniCase("principels"), "principals"), + (UniCase("energising"), "energizing"), + (UniCase("reaponsibilities"), "responsibilities"), + (UniCase("correctess"), "correctness"), + (UniCase("capitalise"), "capitalize"), + (UniCase("wokring"), "working"), + (UniCase("tyres"), "tires"), + (UniCase("respondus"), "responds"), + (UniCase("introdiction"), "introduction"), + (UniCase("thermodymanics"), "thermodynamics"), + (UniCase("mkaing"), "making"), + (UniCase("developmet"), "developments"), + (UniCase("apropriate"), "appropriate"), + (UniCase("generatting"), "generating"), + (UniCase("understandabley"), "understandably"), + (UniCase("histerically"), "historically"), + (UniCase("overclockig"), "overclocking"), + (UniCase("colonizaton"), "colonization"), + (UniCase("downstiars"), "downstairs"), + (UniCase("electorns"), "electrons"), + (UniCase("swatiska"), "swastika"), + (UniCase("insuinating"), "insinuating"), + (UniCase("indestructibe"), "indestructible"), + (UniCase("pyramidas"), "pyramids"), + (UniCase("suceeds"), "succeeds"), + (UniCase("puplisher"), "publisher"), + (UniCase("undefinitely"), "indefinitely"), + (UniCase("substiture"), "substitute"), + (UniCase("backsta"), "backseat"), + (UniCase("resurrektion"), "resurrection"), + (UniCase("categorised"), "categorized"), + (UniCase("grahpically"), "graphically"), + (UniCase("hiesman"), "heisman"), + (UniCase("tapitude"), "aptitude"), + (UniCase("performace"), "performance"), + (UniCase("substitues"), "substitutes"), + (UniCase("appriceate"), "appreciates"), + (UniCase("condomns"), "condoms"), + (UniCase("massachussetts"), "massachusetts"), + (UniCase("ungoldy"), "ungodly"), + (UniCase("archiac"), "archaic"), + (UniCase("charactoristics"), "characteristics"), + (UniCase("resistered"), "resisted"), + (UniCase("netwrok"), "network"), + (UniCase("oustanding"), "outstanding"), + (UniCase("idiologically"), "ideologically"), + (UniCase("dissastified"), "dissatisfied"), + (UniCase("oursleves"), "ourselves"), + (UniCase("dissarray"), "disarray"), + (UniCase("protocool"), "protocol"), + (UniCase("triggern"), "triggering"), + (UniCase("creacionism"), "creationism"), + (UniCase("capitlaize"), "capitalized"), + (UniCase("postive"), "positive"), + (UniCase("infintiely"), "infinitely"), + (UniCase("baordwalk"), "boardwalk"), + (UniCase("trageted"), "targeted"), + (UniCase("mysteriouly"), "mysteriously"), + (UniCase("responsd"), "responds"), + (UniCase("wrecthed"), "wretched"), + (UniCase("blizzad"), "blizzard"), + (UniCase("insaney"), "insanely"), + (UniCase("varians"), "variants"), + (UniCase("justifiy"), "justify"), + (UniCase("signifikant"), "significant"), + (UniCase("atrocoties"), "atrocities"), + (UniCase("persuasian"), "persuasion"), + (UniCase("jaimacan"), "jamaican"), + (UniCase("stealhty"), "stealthy"), + (UniCase("headseat"), "headset"), + (UniCase("hypocrasy"), "hypocrisy"), + (UniCase("excell"), "excel"), + (UniCase("evovled"), "evolved"), + (UniCase("fortunte"), "fortune"), + (UniCase("importas"), "imports"), + (UniCase("nuclean"), "unclean"), + (UniCase("proceddings"), "proceedings"), + (UniCase("sympathatic"), "sympathetic"), + (UniCase("dipthongs"), "diphthongs"), + (UniCase("fertilises"), "fertilizes"), + (UniCase("monstrostiy"), "monstrosity"), + (UniCase("amoungst"), "amongst"), + (UniCase("disgustiny"), "disgustingly"), + (UniCase("exepmtions"), "exemptions"), + (UniCase("demenstrations"), "demonstrations"), + (UniCase("experiemntal"), "experimental"), + (UniCase("statsitical"), "statistical"), + (UniCase("delpeted"), "depleted"), + (UniCase("murdereres"), "murderers"), + (UniCase("consiciousness"), "consciousness"), + (UniCase("grizzley"), "grizzly"), + (UniCase("transplats"), "transplants"), + (UniCase("refreshener"), "refresher"), + (UniCase("imigration"), "emigration"), + (UniCase("franchines"), "franchises"), + (UniCase("charactarization"), "characterization"), + (UniCase("minneapols"), "minneapolis"), + (UniCase("neutrailty"), "neutrality"), + (UniCase("accelorate"), "accelerate"), + (UniCase("universitites"), "universities"), + (UniCase("automatron"), "automation"), + (UniCase("tyranies"), "tyrannies"), + (UniCase("componet"), "components"), + (UniCase("lnowledgable"), "knowledgable"), + (UniCase("resolviste"), "resolves"), + (UniCase("autistisch"), "autistic"), + (UniCase("disctinctive"), "distinctive"), + (UniCase("embodyment"), "embodiment"), + (UniCase("longtiem"), "longtime"), + (UniCase("dissatisifed"), "dissatisfied"), + (UniCase("instantaenous"), "instantaneous"), + (UniCase("specimines"), "specimen"), + (UniCase("snivelling"), "sniveling"), + (UniCase("xenophonic"), "xenophobic"), + (UniCase("stroytelling"), "storytelling"), + (UniCase("mulitplication"), "multiplication"), + (UniCase("pyschedelics"), "psychedelics"), + (UniCase("compresson"), "compression"), + (UniCase("machins"), "machines"), + (UniCase("emphatized"), "emphasized"), + (UniCase("widespred"), "widespread"), + (UniCase("renewebles"), "renewables"), + (UniCase("emision"), "emission"), + (UniCase("cylcist"), "cyclist"), + (UniCase("delcare"), "declare"), + (UniCase("nationalty"), "nationality"), + (UniCase("unbeliavable"), "unbelievable"), + (UniCase("naturual"), "natural"), + (UniCase("unreasonabley"), "unreasonably"), + (UniCase("elimintates"), "eliminates"), + (UniCase("cirlces"), "circles"), + (UniCase("correlatos"), "correlates"), + (UniCase("mataphorical"), "metaphorical"), + (UniCase("organisera"), "organizers"), + (UniCase("alcoholisim"), "alcoholism"), + (UniCase("haematology"), "hematology"), + (UniCase("molesterd"), "molested"), + (UniCase("imperealist"), "imperialist"), + (UniCase("enviornmentally"), "environmentally"), + (UniCase("geogrpahic"), "geographic"), + (UniCase("confimred"), "confirmed"), + (UniCase("alteast"), "atleast"), + (UniCase("exploint"), "exploit"), + (UniCase("moulted"), "molted"), + (UniCase("withdrawel"), "withdrawal"), + (UniCase("subscirbe"), "subscribe"), + (UniCase("politicising"), "politicizing"), + (UniCase("questionalble"), "questionable"), + (UniCase("specailists"), "specialists"), + (UniCase("totalitatian"), "totalitarian"), + (UniCase("dysfunktion"), "dysfunction"), + (UniCase("effectiviness"), "effectiveness"), + (UniCase("institutionalises"), "institutionalizes"), + (UniCase("capitalizacion"), "capitalization"), + (UniCase("burlgar"), "burglar"), + (UniCase("separetely"), "separately"), + (UniCase("alternativly"), "alternatively"), + (UniCase("dowloads"), "downloads"), + (UniCase("exerternal"), "external"), + (UniCase("scandinava"), "scandinavian"), + (UniCase("celitcs"), "celtics"), + (UniCase("proficeint"), "proficient"), + (UniCase("departmens"), "departments"), + (UniCase("initisl"), "initials"), + (UniCase("withelist"), "whitelist"), + (UniCase("repsecting"), "respecting"), + (UniCase("accessbile"), "accessible"), + (UniCase("doubellift"), "doublelift"), + (UniCase("soverein"), "sovereign"), + (UniCase("applainces"), "appliances"), + (UniCase("disagreemet"), "disagreements"), + (UniCase("asyncronous"), "asynchronous"), + (UniCase("perfromer"), "performer"), + (UniCase("soemthin"), "somethin"), + (UniCase("devestating"), "devastating"), + (UniCase("paticular"), "particular"), + (UniCase("susceptable"), "susceptible"), + (UniCase("captialize"), "capitalize"), + (UniCase("warcrat"), "warcraft"), + (UniCase("deprication"), "deprivation"), + (UniCase("anynomity"), "anonymity"), + (UniCase("mindleslly"), "mindlessly"), + (UniCase("pertaing"), "pertaining"), + (UniCase("originalis"), "originals"), + (UniCase("immobilised"), "immobilized"), + (UniCase("particularely"), "particularly"), + (UniCase("malaysa"), "malaysia"), + (UniCase("intervalles"), "intervals"), + (UniCase("redistirbution"), "redistribution"), + (UniCase("advantageos"), "advantageous"), + (UniCase("rumour"), "rumor"), + (UniCase("priveldges"), "privileges"), + (UniCase("propoganda"), "propaganda"), + (UniCase("patronising"), "patronizing"), + (UniCase("infallable"), "infallible"), + (UniCase("spectaters"), "spectators"), + (UniCase("assnage"), "assange"), + (UniCase("critera"), "criteria"), + (UniCase("bombarderad"), "bombarded"), + (UniCase("interpretacion"), "interpretation"), + (UniCase("icleandic"), "icelandic"), + (UniCase("philadeplhia"), "philadelphia"), + (UniCase("critisiscm"), "criticisms"), + (UniCase("customising"), "customizing"), + (UniCase("sponatneous"), "spontaneous"), + (UniCase("repectable"), "repeatable"), + (UniCase("uncertainy"), "uncertainty"), + (UniCase("presitigous"), "prestigious"), + (UniCase("substanial"), "substantial"), + (UniCase("guarenteed"), "guaranteed"), + (UniCase("indipendence"), "independence"), + (UniCase("frustrastion"), "frustrations"), + (UniCase("rebouncing"), "rebounding"), + (UniCase("pronouning"), "pronouncing"), + (UniCase("highligted"), "highlighted"), + (UniCase("confisgated"), "confiscated"), + (UniCase("terretories"), "territories"), + (UniCase("somethinbg"), "somethings"), + (UniCase("rocord"), "record"), + (UniCase("rhapsodise"), "rhapsodize"), + (UniCase("prohibitivo"), "prohibition"), + (UniCase("supremasist"), "supremacist"), + (UniCase("dictionay"), "dictionary"), + (UniCase("ridicoulusness"), "ridiculousness"), + (UniCase("mircales"), "miracles"), + (UniCase("inprisonment"), "imprisonment"), + (UniCase("antagonisic"), "antagonistic"), + (UniCase("defibately"), "definately"), + (UniCase("participaton"), "participant"), + (UniCase("demonstarted"), "demonstrated"), + (UniCase("begininng"), "beginning"), + (UniCase("flanethrower"), "flamethrower"), + (UniCase("premanently"), "permanently"), + (UniCase("americain"), "american"), + (UniCase("silicoon"), "silicon"), + (UniCase("calander"), "calendar"), + (UniCase("mutlitude"), "multitude"), + (UniCase("creatue"), "creature"), + (UniCase("minimalisitc"), "minimalist"), + (UniCase("curcuit"), "circuit"), + (UniCase("teamifghts"), "teamfights"), + (UniCase("pharmacyst"), "pharmacist"), + (UniCase("philadlephia"), "philadelphia"), + (UniCase("valentimes"), "valentines"), + (UniCase("architechture"), "architecture"), + (UniCase("insistente"), "insistence"), + (UniCase("protrays"), "portrays"), + (UniCase("trasnlator"), "translator"), + (UniCase("prejiduces"), "prejudices"), + (UniCase("recitfy"), "rectify"), + (UniCase("morphen"), "morphine"), + (UniCase("irritacion"), "irritation"), + (UniCase("femminist"), "feminist"), + (UniCase("noteworhty"), "noteworthy"), + (UniCase("southernese"), "southerners"), + (UniCase("overpowerd"), "overpowered"), + (UniCase("conncetion"), "connections"), + (UniCase("envinroment"), "environments"), + (UniCase("wardobe"), "wardrobe"), + (UniCase("expresse"), "expressive"), + (UniCase("basektball"), "basketball"), + (UniCase("anitdepressants"), "antidepressants"), + (UniCase("libertaryan"), "libertarian"), + (UniCase("inconvienence"), "inconvenience"), + (UniCase("metropolos"), "metropolis"), + (UniCase("accessibile"), "accessible"), + (UniCase("garanteed"), "guaranteed"), + (UniCase("friendlines"), "friendlies"), + (UniCase("succours"), "succors"), + (UniCase("volonteer"), "volunteer"), + (UniCase("motoral"), "motorola"), + (UniCase("archetect"), "architect"), + (UniCase("bratenders"), "bartenders"), + (UniCase("relentness"), "relentless"), + (UniCase("radiactive"), "radioactive"), + (UniCase("metiphorically"), "metaphorically"), + (UniCase("foward"), "forward"), + (UniCase("survivabillity"), "survivability"), + (UniCase("orgasmes"), "orgasms"), + (UniCase("bastardus"), "bastards"), + (UniCase("seriosuly"), "seriously"), + (UniCase("shcemes"), "schemes"), + (UniCase("adnimistrator"), "administrators"), + (UniCase("overwhelimg"), "overwhelm"), + (UniCase("cyclits"), "cyclist"), + (UniCase("juducial"), "judicial"), + (UniCase("mediorce"), "mediocre"), + (UniCase("intervencion"), "intervention"), + (UniCase("antractica"), "antarctica"), + (UniCase("submisison"), "submissions"), + (UniCase("megatorn"), "megatron"), + (UniCase("hispancis"), "hispanics"), + (UniCase("territoriella"), "territorial"), + (UniCase("defensea"), "defenseman"), + (UniCase("prosectued"), "prosecuted"), + (UniCase("philosophycal"), "philosophically"), + (UniCase("jewerly"), "jewelry"), + (UniCase("ocuntry"), "country"), + (UniCase("shadasloo"), "shadaloo"), + (UniCase("visualizating"), "visualization"), + (UniCase("subsrciption"), "subscriptions"), + (UniCase("acquried"), "acquired"), + (UniCase("editorialise"), "editorialize"), + (UniCase("expries"), "expires"), + (UniCase("chairmain"), "chairman"), + (UniCase("subsudized"), "subsidized"), + (UniCase("administrar"), "administrator"), + (UniCase("loadous"), "loadouts"), + (UniCase("discipliniary"), "disciplinary"), + (UniCase("relevent"), "relevant"), + (UniCase("optomism"), "optimism"), + (UniCase("swasitka"), "swastika"), + (UniCase("morrocco"), "morocco"), + (UniCase("patriarcy"), "patriarchy"), + (UniCase("beseiged"), "besieged"), + (UniCase("differens"), "differences"), + (UniCase("colourful"), "colorful"), + (UniCase("sponosred"), "sponsored"), + (UniCase("crystalys"), "crystals"), + (UniCase("stupitidy"), "stupidity"), + (UniCase("consuelling"), "counselling"), + (UniCase("teamfigth"), "teamfight"), + (UniCase("programmes"), "programs"), + (UniCase("contimplate"), "contemplate"), + (UniCase("sysdamin"), "sysadmin"), + (UniCase("sweatshort"), "sweatshirt"), + (UniCase("stirrs"), "stirs"), + (UniCase("instututed"), "instituted"), + (UniCase("intepretator"), "interpretor"), + (UniCase("sociapathic"), "sociopathic"), + (UniCase("agracultural"), "agricultural"), + (UniCase("vyre"), "very"), + (UniCase("harases"), "harasses"), + (UniCase("somethinkg"), "somethings"), + (UniCase("insistes"), "insists"), + (UniCase("turrest"), "turrets"), + (UniCase("maximises"), "maximizes"), + (UniCase("carolled"), "caroled"), + (UniCase("storey"), "story"), + (UniCase("inconventional"), "unconventional"), + (UniCase("physcopaths"), "psychopaths"), + (UniCase("cheesees"), "cheeses"), + (UniCase("broadley"), "broadly"), + (UniCase("indirektly"), "indirectly"), + (UniCase("separatelly"), "separately"), + (UniCase("alientating"), "alienating"), + (UniCase("artemios"), "artemis"), + (UniCase("implementacion"), "implementation"), + (UniCase("considerant"), "considerate"), + (UniCase("trememdously"), "tremendously"), + (UniCase("mulitply"), "multiply"), + (UniCase("indictement"), "indictment"), + (UniCase("conceivabley"), "conceivably"), + (UniCase("canniablism"), "cannibalism"), + (UniCase("thta"), "that"), + (UniCase("waterprooof"), "waterproof"), + (UniCase("inadequete"), "inadequate"), + (UniCase("browisng"), "browsing"), + (UniCase("exercicing"), "exercising"), + (UniCase("describtion"), "description"), + (UniCase("appealling"), "appealing"), + (UniCase("peroids"), "periods"), + (UniCase("campusers"), "campuses"), + (UniCase("defaint"), "defiant"), + (UniCase("terratorial"), "territorial"), + (UniCase("revelaiton"), "revelations"), + (UniCase("transparentcy"), "transparency"), + (UniCase("interpert"), "interpret"), + (UniCase("attribue"), "attribute"), + (UniCase("hallusination"), "hallucination"), + (UniCase("meatballers"), "meatballs"), + (UniCase("spreaded"), "spread"), + (UniCase("demobilised"), "demobilized"), + (UniCase("transperant"), "transparent"), + (UniCase("catergorized"), "categorized"), + (UniCase("conatiner"), "container"), + (UniCase("promethesus"), "prometheus"), + (UniCase("thaliand"), "thailand"), + (UniCase("frientzoned"), "friendzoned"), + (UniCase("premillenial"), "premillennial"), + (UniCase("avation"), "aviation"), + (UniCase("glaicer"), "glacier"), + (UniCase("paraprashing"), "paraphrasing"), + (UniCase("glitchey"), "glitchy"), + (UniCase("narcisscist"), "narcissist"), + (UniCase("runnung"), "running"), + (UniCase("annoint"), "anoint"), + (UniCase("restrictins"), "restricts"), + (UniCase("depserate"), "desperate"), + (UniCase("necromencer"), "necromancer"), + (UniCase("artifiically"), "artificially"), + (UniCase("cashieres"), "cashiers"), + (UniCase("proponenets"), "proponents"), + (UniCase("secertly"), "secretly"), + (UniCase("administrativne"), "administrative"), + (UniCase("anomynity"), "anonymity"), + (UniCase("nauitlus"), "nautilus"), + (UniCase("succesions"), "succession"), + (UniCase("construced"), "constructed"), + (UniCase("democraphic"), "demographic"), + (UniCase("recoverys"), "recovers"), + (UniCase("greeneer"), "greener"), + (UniCase("owuldve"), "wouldve"), + (UniCase("trustworhty"), "trustworthy"), + (UniCase("reporteros"), "reporters"), + (UniCase("alledgely"), "allegedly"), + (UniCase("addopt"), "adopt"), + (UniCase("antisocail"), "antisocial"), + (UniCase("stimluating"), "stimulating"), + (UniCase("faciliate"), "facilitate"), + (UniCase("abandenment"), "abandonment"), + (UniCase("undenaibly"), "undeniably"), + (UniCase("tunnelling"), "tunneling"), + (UniCase("recepcionist"), "receptionist"), + (UniCase("podemso"), "podemos"), + (UniCase("attrocities"), "atrocities"), + (UniCase("journalsim"), "journalism"), + (UniCase("earnt"), "earned"), + (UniCase("attactment"), "attachment"), + (UniCase("globalisation"), "globalization"), + (UniCase("jamaicaman"), "jamaican"), + (UniCase("unauthoried"), "unauthorized"), + (UniCase("corporativo"), "corporation"), + (UniCase("explortation"), "exploitation"), + (UniCase("marliyn"), "marilyn"), + (UniCase("phenomenol"), "phenomenal"), + (UniCase("autograh"), "autograph"), + (UniCase("unsubstanciated"), "unsubstantiated"), + (UniCase("sweatshit"), "sweatshirt"), + (UniCase("lieing"), "lying"), + (UniCase("gravitatie"), "gravitate"), + (UniCase("actualmy"), "actualy"), + (UniCase("depolyed"), "deployed"), + (UniCase("hvae"), "have"), + (UniCase("phyiscs"), "physics"), + (UniCase("waggons"), "wagons"), + (UniCase("segrigation"), "segregation"), + (UniCase("attidute"), "attitude"), + (UniCase("othrodox"), "orthodox"), + (UniCase("clinicas"), "clinics"), + (UniCase("compots"), "compost"), + (UniCase("cringeworthly"), "cringeworthy"), + (UniCase("emergancies"), "emergencies"), + (UniCase("scracthes"), "scratches"), + (UniCase("infulential"), "influential"), + (UniCase("playthrogh"), "playthrough"), + (UniCase("phemonena"), "phenomena"), + (UniCase("peninusla"), "peninsula"), + (UniCase("magnificient"), "magnificent"), + (UniCase("deliverate"), "deliberate"), + (UniCase("orgainze"), "organize"), + (UniCase("stalkear"), "stalker"), + (UniCase("filessytem"), "filesystem"), + (UniCase("adeqaute"), "adequate"), + (UniCase("porletariat"), "proletariat"), + (UniCase("floursih"), "flourish"), + (UniCase("participante"), "participate"), + (UniCase("proffesor"), "professor"), + (UniCase("nocturen"), "nocturne"), + (UniCase("proselytises"), "proselytizes"), + (UniCase("intreguing"), "intriguing"), + (UniCase("hospitallity"), "hospitality"), + (UniCase("stutterring"), "stuttering"), + (UniCase("smartre"), "smarter"), + (UniCase("litllefinger"), "littlefinger"), + (UniCase("suscepitble"), "susceptible"), + (UniCase("famoust"), "famous"), + (UniCase("popoulus"), "populous"), + (UniCase("mistreaded"), "mistreated"), + (UniCase("manupulative"), "manipulative"), + (UniCase("technichian"), "technician"), + (UniCase("opose"), "oppose"), + (UniCase("factuallity"), "factually"), + (UniCase("ammendment"), "amendment"), + (UniCase("ajdectives"), "adjectives"), + (UniCase("memoriez"), "memorize"), + (UniCase("anonymoys"), "anonymously"), + (UniCase("intidimate"), "intimidate"), + (UniCase("foreward"), "foreword"), + (UniCase("agonises"), "agonizes"), + (UniCase("motiviated"), "motivated"), + (UniCase("asociated"), "associated"), + (UniCase("accomponied"), "accompanied"), + (UniCase("unsucessfull"), "unsuccessful"), + (UniCase("passabel"), "passable"), + (UniCase("partiets"), "parties"), + (UniCase("withholdng"), "withholding"), + (UniCase("incompetente"), "incompetence"), + (UniCase("croporations"), "corporations"), + (UniCase("conspriacies"), "conspiracies"), + (UniCase("allegience"), "allegiance"), + (UniCase("repeateadly"), "repeatedly"), + (UniCase("prevencion"), "prevention"), + (UniCase("insturmental"), "instrumental"), + (UniCase("wednessday"), "wednesdays"), + (UniCase("dissipatore"), "dissipate"), + (UniCase("intrige"), "intrigue"), + (UniCase("bodydbuilder"), "bodybuilder"), + (UniCase("cassawory"), "cassowary"), + (UniCase("ciltoris"), "clitoris"), + (UniCase("dementa"), "dementia"), + (UniCase("appeareance"), "appearance"), + (UniCase("desicions"), "decisions"), + (UniCase("incompatble"), "incompatible"), + (UniCase("implausble"), "implausible"), + (UniCase("virgintiy"), "virginity"), + (UniCase("acknolwedged"), "acknowledged"), + (UniCase("overlcocking"), "overclocking"), + (UniCase("lavae"), "larvae"), + (UniCase("louisvile"), "louisville"), + (UniCase("tyrannises"), "tyrannizes"), + (UniCase("manualy"), "manually"), + (UniCase("blasphmey"), "blasphemy"), + (UniCase("retrospekt"), "retrospect"), + (UniCase("engieneers"), "engineers"), + (UniCase("boradcasts"), "broadcasts"), + (UniCase("disgraseful"), "disgraceful"), + (UniCase("amrageddon"), "armageddon"), + (UniCase("demonstre"), "demonstrate"), + (UniCase("herculeasy"), "hercules"), + (UniCase("protistant"), "protestant"), + (UniCase("paychologist"), "psychologist"), + (UniCase("succcesses"), "successes"), + (UniCase("weild"), "wield"), + (UniCase("comissioned"), "commissioned"), + (UniCase("bureaucratics"), "bureaucrats"), + (UniCase("provervial"), "proverbial"), + (UniCase("sycning"), "syncing"), + (UniCase("dissapionted"), "dissapointed"), + (UniCase("decriminalising"), "decriminalizing"), + (UniCase("spoliers"), "spoilers"), + (UniCase("cylindre"), "cylinder"), + (UniCase("exploreres"), "explorers"), + (UniCase("inevitibly"), "inevitably"), + (UniCase("windsheilds"), "windshield"), + (UniCase("challeneger"), "challenger"), + (UniCase("advertisments"), "advertisements"), + (UniCase("formuladas"), "formulas"), + (UniCase("wrok"), "work"), + (UniCase("fossiles"), "fossils"), + (UniCase("mechanincs"), "mechanic"), + (UniCase("investagated"), "investigated"), + (UniCase("electrican"), "electrician"), + (UniCase("organzie"), "organize"), + (UniCase("initiatves"), "initiatives"), + (UniCase("conontation"), "connotation"), + (UniCase("repeatedlt"), "repealed"), + (UniCase("fethces"), "fetches"), + (UniCase("sungalsses"), "sunglasses"), + (UniCase("circularised"), "circularized"), + (UniCase("febuary"), "february"), + (UniCase("flippade"), "flipped"), + (UniCase("trialled"), "trialed"), + (UniCase("chanpionships"), "championships"), + (UniCase("intepretation"), "interpretation"), + (UniCase("prioritisation"), "prioritization"), + (UniCase("radioactice"), "radioactive"), + (UniCase("repsects"), "respects"), + (UniCase("esential"), "essential"), + (UniCase("infestating"), "infestation"), + (UniCase("cigerattes"), "cigarettes"), + (UniCase("exahustion"), "exhaustion"), + (UniCase("cancerns"), "cancers"), + (UniCase("superfical"), "superficial"), + (UniCase("thrusdays"), "thursdays"), + (UniCase("specialies"), "specializes"), + (UniCase("cholosterol"), "cholesterol"), + (UniCase("repeatetly"), "repeatedly"), + (UniCase("specialzed"), "specialized"), + (UniCase("encarcerated"), "incarcerated"), + (UniCase("pyschedelic"), "psychedelic"), + (UniCase("antiobitics"), "antibiotic"), + (UniCase("restaraunts"), "restaurants"), + (UniCase("epilepsey"), "epilepsy"), + (UniCase("westernises"), "westernizes"), + (UniCase("archetpye"), "archetype"), + (UniCase("constructus"), "constructs"), + (UniCase("scorpin"), "scorpion"), + (UniCase("inferir"), "inferior"), + (UniCase("discrimanatory"), "discriminatory"), + (UniCase("misinterpriting"), "misinterpreting"), + (UniCase("domiante"), "dominate"), + (UniCase("recgonize"), "recognize"), + (UniCase("steadliy"), "steadily"), + (UniCase("centigrammes"), "centigrams"), + (UniCase("mounth"), "month"), + (UniCase("manipule"), "manipulate"), + (UniCase("practicallity"), "practically"), + (UniCase("reniforcements"), "reinforcements"), + (UniCase("palestinier"), "palestine"), + (UniCase("supsension"), "suspension"), + (UniCase("absestos"), "asbestos"), + (UniCase("scannign"), "scanning"), + (UniCase("infaltable"), "inflatable"), + (UniCase("inexplicablly"), "inexplicably"), + (UniCase("heterosexuella"), "heterosexual"), + (UniCase("androidtvs"), "androids"), + (UniCase("experssion"), "expression"), + (UniCase("downloadas"), "downloads"), + (UniCase("upgardes"), "upgrades"), + (UniCase("subsadized"), "subsidized"), + (UniCase("embarassimg"), "embarassing"), + (UniCase("algoritmes"), "algorithms"), + (UniCase("greenhosue"), "greenhouse"), + (UniCase("restirction"), "restriction"), + (UniCase("subsequenty"), "subsequently"), + (UniCase("recongise"), "recognise"), + (UniCase("favoritisme"), "favorites"), + (UniCase("institutionlized"), "institutionalized"), + (UniCase("friendsies"), "friendlies"), + (UniCase("mosqueto"), "mosquitoes"), + (UniCase("legislacion"), "legislation"), + (UniCase("diminising"), "diminishing"), + (UniCase("communisim"), "communism"), + (UniCase("spirutually"), "spiritually"), + (UniCase("vamipres"), "vampires"), + (UniCase("intelligant"), "intelligent"), + (UniCase("quesitonable"), "questionable"), + (UniCase("jeweller"), "jeweler"), + (UniCase("condesned"), "condensed"), + (UniCase("denomonations"), "denominations"), + (UniCase("interprut"), "interrupt"), + (UniCase("vigrins"), "virgins"), + (UniCase("inguenity"), "ingenuity"), + (UniCase("dicovery"), "discovery"), + (UniCase("preservare"), "preserve"), + (UniCase("substansial"), "substantial"), + (UniCase("congressen"), "congressmen"), + (UniCase("automodertor"), "automoderator"), + (UniCase("cerberal"), "cerebral"), + (UniCase("covanent"), "covenant"), + (UniCase("interactifs"), "interacts"), + (UniCase("vulgarise"), "vulgarize"), + (UniCase("occassional"), "occasional"), + (UniCase("obediant"), "obedient"), + (UniCase("arival"), "arrival"), + (UniCase("whihc"), "which"), + (UniCase("desencitized"), "desensitized"), + (UniCase("versatiliy"), "versatility"), + (UniCase("detramental"), "detrimental"), + (UniCase("acadmic"), "academic"), + (UniCase("insidiuos"), "insidious"), + (UniCase("maestries"), "masteries"), + (UniCase("dusfunctional"), "dysfunctional"), + (UniCase("styrofaom"), "styrofoam"), + (UniCase("standbay"), "standby"), + (UniCase("suggestied"), "suggestive"), + (UniCase("contradicory"), "contradictory"), + (UniCase("sponteanously"), "spontaneously"), + (UniCase("archytypes"), "archetypes"), + (UniCase("intervines"), "intervenes"), + (UniCase("compromosing"), "compromising"), + (UniCase("surprizing"), "surprising"), + (UniCase("stabilisers"), "stabilizers"), + (UniCase("chansellor"), "chancellor"), + (UniCase("moustace"), "moustache"), + (UniCase("motorolja"), "motorola"), + (UniCase("photogrpaher"), "photographer"), + (UniCase("obsessie"), "obsessive"), + (UniCase("ceromony"), "ceremony"), + (UniCase("charicterization"), "characterization"), + (UniCase("chelsae"), "chelsea"), + (UniCase("informitive"), "informative"), + (UniCase("epliepsy"), "epilepsy"), + (UniCase("accidentaly"), "accidentally"), + (UniCase("rollerocaster"), "rollercoaster"), + (UniCase("mongolos"), "mongols"), + (UniCase("launhed"), "launched"), + (UniCase("flametrhower"), "flamethrower"), + (UniCase("incoroporated"), "incorporated"), + (UniCase("extendes"), "extends"), + (UniCase("sapcebar"), "spacebar"), + (UniCase("foreamrs"), "forearms"), + (UniCase("disclousre"), "disclosure"), + (UniCase("savours"), "savors"), + (UniCase("originnally"), "originally"), + (UniCase("unristricted"), "unrestricted"), + (UniCase("intellegent"), "intelligent"), + (UniCase("bleuberry"), "blueberry"), + (UniCase("appaluse"), "applause"), + (UniCase("islamisists"), "islamists"), + (UniCase("innocenters"), "innocents"), + (UniCase("cambirdge"), "cambridge"), + (UniCase("furition"), "fruition"), + (UniCase("emphsis"), "emphasis"), + (UniCase("incorrecly"), "incorrectly"), + (UniCase("misogynstic"), "misogynist"), + (UniCase("scramblies"), "scramble"), + (UniCase("procreatin"), "procreation"), + (UniCase("assassintation"), "assassination"), + (UniCase("rhapsodomy"), "rhapsody"), + (UniCase("performnace"), "performances"), + (UniCase("maneouvre"), "manoeuvre"), + (UniCase("analitycal"), "analytical"), + (UniCase("manufacutres"), "manufactures"), + (UniCase("scientificlly"), "scientifically"), + (UniCase("visualises"), "visualizes"), + (UniCase("bureaucracts"), "bureaucrats"), + (UniCase("citizinship"), "citizenship"), + (UniCase("sophisticaed"), "sophisticated"), + (UniCase("exisitng"), "existing"), + (UniCase("workfroce"), "workforce"), + (UniCase("restrictie"), "restrictive"), + (UniCase("chambre"), "chamber"), + (UniCase("arcehtypes"), "archetypes"), + (UniCase("restrics"), "restricts"), + (UniCase("infedility"), "infidelity"), + (UniCase("ministr"), "minister"), + (UniCase("critizising"), "criticizing"), + (UniCase("snowlfake"), "snowflake"), + (UniCase("advocay"), "advocacy"), + (UniCase("comprese"), "compressed"), + (UniCase("deflecticon"), "deflection"), + (UniCase("excpetionally"), "exceptionally"), + (UniCase("androgeny"), "androgyny"), + (UniCase("hallowen"), "halloween"), + (UniCase("interperters"), "interpreter"), + (UniCase("adolescense"), "adolescence"), + (UniCase("buliding"), "building"), + (UniCase("electoratul"), "electoral"), + (UniCase("instelling"), "installing"), + (UniCase("suppresors"), "suppressor"), + (UniCase("probabilite"), "probabilities"), + (UniCase("brainwased"), "brainwashed"), + (UniCase("anyoens"), "anyones"), + (UniCase("decoratieve"), "decorative"), + (UniCase("possiblilty"), "possibility"), + (UniCase("comfertable"), "comfortable"), + (UniCase("methodoly"), "methodology"), + (UniCase("anceint"), "ancient"), + (UniCase("pornograpghy"), "pornography"), + (UniCase("representativo"), "representation"), + (UniCase("headquarer"), "headquarter"), + (UniCase("unrpoven"), "unproven"), + (UniCase("aborginial"), "aboriginal"), + (UniCase("predictie"), "predictive"), + (UniCase("trinkes"), "trinkets"), + (UniCase("decscription"), "description"), + (UniCase("familiarze"), "familiarize"), + (UniCase("intergate"), "integrate"), + (UniCase("approximetly"), "approximately"), + (UniCase("stabilised"), "stabilized"), + (UniCase("clikcbait"), "clickbait"), + (UniCase("preimum"), "premium"), + (UniCase("interceptons"), "interceptions"), + (UniCase("neutraal"), "neutral"), + (UniCase("recrutiers"), "recruiters"), + (UniCase("volatillity"), "volatility"), + (UniCase("condmen"), "condemn"), + (UniCase("thoeretical"), "theoretical"), + (UniCase("pilgrimmages"), "pilgrimages"), + (UniCase("unrwitten"), "unwritten"), + (UniCase("storytellling"), "storytelling"), + (UniCase("adpatation"), "adaptation"), + (UniCase("enlighment"), "enlighten"), + (UniCase("tranistioning"), "transitioning"), + (UniCase("qualificaiton"), "qualifications"), + (UniCase("tjhe"), "the"), + (UniCase("appreication"), "appreciation"), + (UniCase("predictave"), "predictive"), + (UniCase("knowledgeble"), "knowledgeable"), + (UniCase("populer"), "popular"), + (UniCase("assistence"), "assistance"), + (UniCase("circumstantal"), "circumstantial"), + (UniCase("benefecial"), "beneficial"), + (UniCase("invisilibity"), "invisibility"), + (UniCase("technologicly"), "technological"), + (UniCase("saddenes"), "saddens"), + (UniCase("whitsles"), "whistles"), + (UniCase("depersonalising"), "depersonalizing"), + (UniCase("consolidare"), "consolidate"), + (UniCase("bulletpoof"), "bulletproof"), + (UniCase("suspectes"), "suspects"), + (UniCase("patriotisim"), "patriotism"), + (UniCase("proposterous"), "preposterous"), + (UniCase("deriviated"), "derived"), + (UniCase("intidimation"), "intimidation"), + (UniCase("defiintely"), "definately"), + (UniCase("sepcially"), "specially"), + (UniCase("comited"), "committed"), + (UniCase("aesthestic"), "aesthetics"), + (UniCase("massacer"), "massacre"), + (UniCase("handedy"), "handedly"), + (UniCase("acknolwedging"), "acknowledging"), + (UniCase("wholeheartdly"), "wholeheartedly"), + (UniCase("recommondations"), "recommendations"), + (UniCase("liberalisim"), "liberalism"), + (UniCase("megathred"), "megathread"), + (UniCase("monagomy"), "monogamy"), + (UniCase("helpped"), "helped"), + (UniCase("palestininan"), "palestinian"), + (UniCase("quailty"), "quality"), + (UniCase("philadelpha"), "philadelphia"), + (UniCase("kilometes"), "kilometers"), + (UniCase("altantic"), "atlantic"), + (UniCase("bortherhood"), "brotherhood"), + (UniCase("leviathn"), "leviathan"), + (UniCase("funnelling"), "funneling"), + (UniCase("repulican"), "republican"), + (UniCase("guaruntees"), "guarantees"), + (UniCase("ugprading"), "upgrading"), + (UniCase("calculatons"), "calculations"), + (UniCase("camouflague"), "camouflage"), + (UniCase("vacciners"), "vaccines"), + (UniCase("recorre"), "recorder"), + (UniCase("continenets"), "continents"), + (UniCase("auxilary"), "auxiliary"), + (UniCase("resistane"), "resistances"), + (UniCase("statistc"), "statistic"), + (UniCase("exoticas"), "exotics"), + (UniCase("persue"), "pursue"), + (UniCase("paltformer"), "platformer"), + (UniCase("metablosim"), "metabolism"), + (UniCase("publicitan"), "publication"), + (UniCase("vaccinato"), "vaccination"), + (UniCase("organisational"), "organizational"), + (UniCase("obivously"), "obviously"), + (UniCase("profitabel"), "profitable"), + (UniCase("portarying"), "portraying"), + (UniCase("stomrfront"), "stormfront"), + (UniCase("silhouete"), "silhouette"), + (UniCase("scaleable"), "scalable"), + (UniCase("shoudln"), "should"), + (UniCase("consicous"), "conscious"), + (UniCase("intervies"), "interviews"), + (UniCase("dimineshes"), "diminishes"), + (UniCase("sceptic"), "skeptic"), + (UniCase("randomes"), "randoms"), + (UniCase("automoderater"), "automoderator"), + (UniCase("investigationes"), "investigations"), + (UniCase("supersticion"), "superstition"), + (UniCase("divinition"), "divination"), + (UniCase("tocuhscreen"), "touchscreen"), + (UniCase("chancillor"), "chancellor"), + (UniCase("manoeuvring"), "maneuvering"), + (UniCase("polygoon"), "polygon"), + (UniCase("shelterd"), "sheltered"), + (UniCase("condomnation"), "condemnation"), + (UniCase("healtheir"), "healthier"), + (UniCase("propeht"), "prophet"), + (UniCase("arugement"), "arguement"), + (UniCase("protocoles"), "protocols"), + (UniCase("percise"), "precise"), + (UniCase("genitaliban"), "genitalia"), + (UniCase("libertarinaism"), "libertarianism"), + (UniCase("criminaly"), "criminally"), + (UniCase("naviagte"), "navigate"), + (UniCase("predictment"), "predicament"), + (UniCase("horiztonally"), "horizontally"), + (UniCase("controverial"), "controversial"), + (UniCase("inspectres"), "inspectors"), + (UniCase("abbreveation"), "abbreviation"), + (UniCase("hallcuination"), "hallucination"), + (UniCase("unconvectional"), "unconventional"), + (UniCase("wroking"), "working"), + (UniCase("satsified"), "satisfied"), + (UniCase("enveloppen"), "envelope"), + (UniCase("organistaions"), "organisations"), + (UniCase("resuced"), "rescued"), + (UniCase("socailized"), "socialized"), + (UniCase("communciate"), "communicate"), + (UniCase("glitchty"), "glitchy"), + (UniCase("eighteeen"), "eighteen"), + (UniCase("unrecognisable"), "unrecognizable"), + (UniCase("inteligence"), "intelligence"), + (UniCase("travelled"), "traveled"), + (UniCase("progresson"), "progression"), + (UniCase("snwoballs"), "snowballs"), + (UniCase("buliders"), "builders"), + (UniCase("specifcally"), "specifically"), + (UniCase("armagedddon"), "armageddon"), + (UniCase("downloadble"), "downloadable"), + (UniCase("activisim"), "activism"), + (UniCase("coefficent"), "coefficient"), + (UniCase("knietic"), "kinetic"), + (UniCase("captialist"), "capitalist"), + (UniCase("altriusm"), "altruism"), + (UniCase("contestaste"), "contestants"), + (UniCase("masteris"), "masteries"), + (UniCase("greenlad"), "greenland"), + (UniCase("introduciton"), "introduction"), + (UniCase("interfacce"), "interfaces"), + (UniCase("harmonises"), "harmonizes"), + (UniCase("urbanising"), "urbanizing"), + (UniCase("prospectos"), "prospects"), + (UniCase("cardinalis"), "cardinals"), + (UniCase("journalits"), "journals"), + (UniCase("anual"), "annual"), + (UniCase("indianna"), "indiana"), + (UniCase("disconencted"), "disconnected"), + (UniCase("soldiarity"), "solidarity"), + (UniCase("faptastically"), "fantastically"), + (UniCase("antivrius"), "antivirus"), + (UniCase("terrorised"), "terrorized"), + (UniCase("newspappers"), "newspapers"), + (UniCase("ejacualte"), "ejaculate"), + (UniCase("jersyes"), "jerseys"), + (UniCase("prosicutor"), "prosecutor"), + (UniCase("destoryed"), "destroyed"), + (UniCase("paitents"), "patients"), + (UniCase("coinsidence"), "coincidence"), + (UniCase("barberians"), "barbarians"), + (UniCase("infallibe"), "infallible"), + (UniCase("fluctuatin"), "fluctuations"), + (UniCase("distributin"), "distribution"), + (UniCase("adreneline"), "adrenaline"), + (UniCase("positevely"), "positively"), + (UniCase("courcework"), "coursework"), + (UniCase("straigntened"), "straightened"), + (UniCase("chairtable"), "charitable"), + (UniCase("robocoup"), "robocop"), + (UniCase("pulverising"), "pulverizing"), + (UniCase("cardborad"), "cardboard"), + (UniCase("analyts"), "analyst"), + (UniCase("bandwitdh"), "bandwidth"), + (UniCase("privelaged"), "privileged"), + (UniCase("colordao"), "colorado"), + (UniCase("instrucion"), "instruction"), + (UniCase("comando"), "commando"), + (UniCase("descripton"), "description"), + (UniCase("narcisssism"), "narcissism"), + (UniCase("heaveny"), "heavenly"), + (UniCase("propogates"), "propagates"), + (UniCase("mathcmaking"), "matchmaking"), + (UniCase("generaste"), "generates"), + (UniCase("materiaal"), "material"), + (UniCase("disbaling"), "disabling"), + (UniCase("redemtpion"), "redemption"), + (UniCase("louvred"), "louvered"), + (UniCase("cardnials"), "cardinals"), + (UniCase("everthing"), "everything"), + (UniCase("disresepcting"), "disrespecting"), + (UniCase("underminning"), "undermining"), + (UniCase("expansiones"), "expansions"), + (UniCase("beliveable"), "believable"), + (UniCase("protaganist"), "protagonist"), + (UniCase("hamliton"), "hamilton"), + (UniCase("calibre"), "caliber"), + (UniCase("scandenavian"), "scandinavian"), + (UniCase("broswing"), "browsing"), + (UniCase("endevour"), "endeavour"), + (UniCase("communiation"), "communication"), + (UniCase("alternativos"), "alternatives"), + (UniCase("braoder"), "broader"), + (UniCase("trasncript"), "transcript"), + (UniCase("coordinato"), "coordination"), + (UniCase("pyrimads"), "pyramids"), + (UniCase("abandonding"), "abandoning"), + (UniCase("travellers"), "travelers"), + (UniCase("asshatts"), "asshats"), + (UniCase("traumatising"), "traumatizing"), + (UniCase("practioner"), "practitioner"), + (UniCase("observaton"), "observation"), + (UniCase("francsico"), "francisco"), + (UniCase("throughly"), "thoroughly"), + (UniCase("instanse"), "instances"), + (UniCase("contens"), "contents"), + (UniCase("hospotality"), "hospitality"), + (UniCase("distributs"), "distributors"), + (UniCase("signalises"), "signalizes"), + (UniCase("mkaes"), "makes"), + (UniCase("sastified"), "satisfied"), + (UniCase("underheight"), "underweight"), + (UniCase("containters"), "containers"), + (UniCase("anarchsim"), "anarchism"), + (UniCase("hollywod"), "hollywood"), + (UniCase("funcitonality"), "functionality"), + (UniCase("speciliazed"), "specialize"), + (UniCase("amministrative"), "administrative"), + (UniCase("rentors"), "renters"), + (UniCase("converseley"), "conversely"), + (UniCase("saskatchwan"), "saskatchewan"), + (UniCase("catostraphic"), "catastrophic"), + (UniCase("arugmentative"), "argumentative"), + (UniCase("leceister"), "leicester"), + (UniCase("instruciton"), "instruction"), + (UniCase("controlllers"), "controllers"), + (UniCase("fermentato"), "fermentation"), + (UniCase("controlls"), "controls"), + (UniCase("brazilianess"), "brazilians"), + (UniCase("unsusbcribe"), "unsubscribe"), + (UniCase("symphatize"), "sympathize"), + (UniCase("consistant"), "consistent"), + (UniCase("concertmate"), "concentrate"), + (UniCase("produly"), "proudly"), + (UniCase("grenads"), "grenades"), + (UniCase("sumberged"), "submerged"), + (UniCase("chispet"), "chipset"), + (UniCase("naturalised"), "naturalized"), + (UniCase("tantalise"), "tantalize"), + (UniCase("spectacularely"), "spectacularly"), + (UniCase("switfly"), "swiftly"), + (UniCase("sensasionalism"), "sensationalism"), + (UniCase("bruisend"), "bruised"), + (UniCase("midotwn"), "midtown"), + (UniCase("acusation"), "causation"), + (UniCase("prepetuates"), "perpetuates"), + (UniCase("overemphasises"), "overemphasizes"), + (UniCase("certainity"), "certainty"), + (UniCase("rougly"), "roughly"), + (UniCase("principial"), "principal"), + (UniCase("chanlder"), "chandler"), + (UniCase("absolutelly"), "absolutely"), + (UniCase("illsutrator"), "illustrator"), + (UniCase("carbohyrdates"), "carbohydrates"), + (UniCase("flahses"), "flashes"), + (UniCase("alusion"), "allusion"), + (UniCase("glicthy"), "glitchy"), + (UniCase("preorderers"), "preorders"), + (UniCase("brielfy"), "briefly"), + (UniCase("tehy"), "they"), + (UniCase("corproations"), "corporations"), + (UniCase("ctuhlhu"), "cthulhu"), + (UniCase("poylgon"), "polygon"), + (UniCase("hopefullly"), "hopefully"), + (UniCase("seceed"), "succeed"), + (UniCase("respectuful"), "respectful"), + (UniCase("homophibia"), "homophobia"), + (UniCase("pracitse"), "practise"), + (UniCase("preferrring"), "preferring"), + (UniCase("marginalise"), "marginalize"), + (UniCase("hierachies"), "hierarchies"), + (UniCase("introdue"), "introduces"), + (UniCase("pscyhopathic"), "psychopathic"), + (UniCase("calgarry"), "calgary"), + (UniCase("archetects"), "architects"), + (UniCase("engeries"), "energies"), + (UniCase("bobybuilding"), "bodybuilding"), + (UniCase("oxidising"), "oxidizing"), + (UniCase("marshmallowness"), "marshmallows"), + (UniCase("cardiocascular"), "cardiovascular"), + (UniCase("implicatons"), "implications"), + (UniCase("frogiven"), "forgiven"), + (UniCase("regsitry"), "registry"), + (UniCase("lightheared"), "lighthearted"), + (UniCase("hypothesises"), "hypothesizes"), + (UniCase("confrontacion"), "confrontation"), + (UniCase("individualised"), "individualized"), + (UniCase("predictible"), "predictable"), + (UniCase("uncanney"), "uncanny"), + (UniCase("precisley"), "precisely"), + (UniCase("propencity"), "propensity"), + (UniCase("generalisations"), "generalizations"), + (UniCase("restriktion"), "restriction"), + (UniCase("conspirace"), "conspiracies"), + (UniCase("periphereal"), "peripheral"), + (UniCase("compulsary"), "compulsory"), + (UniCase("assualt"), "assault"), + (UniCase("tyrantical"), "tyrannical"), + (UniCase("sucessive"), "successive"), + (UniCase("hyperlogic"), "hyperbolic"), + (UniCase("reuptable"), "reputable"), + (UniCase("discrption"), "discretion"), + (UniCase("inventios"), "inventions"), + (UniCase("understans"), "understands"), + (UniCase("compatibiltiy"), "compatibility"), + (UniCase("metalurgical"), "metallurgical"), + (UniCase("bureaocrats"), "bureaucrats"), + (UniCase("aritsts"), "artists"), + (UniCase("towelling"), "toweling"), + (UniCase("survivour"), "survivor"), + (UniCase("lithuaninan"), "lithuania"), + (UniCase("stradegy"), "strategy"), + (UniCase("retalitated"), "retaliated"), + (UniCase("captais"), "captains"), + (UniCase("enchanement"), "enchantment"), + (UniCase("extentions"), "extensions"), + (UniCase("obversation"), "observation"), + (UniCase("facsism"), "fascism"), + (UniCase("consideratoin"), "considerations"), + (UniCase("aborigonal"), "aboriginal"), + (UniCase("predujices"), "prejudices"), + (UniCase("alrightly"), "alrighty"), + (UniCase("deficiancy"), "deficiency"), + (UniCase("owernship"), "ownership"), + (UniCase("specemin"), "specimen"), + (UniCase("inaccesibles"), "inaccessible"), + (UniCase("mulitplayer"), "multiplayer"), + (UniCase("propsective"), "prospective"), + (UniCase("destabilise"), "destabilize"), + (UniCase("illiegal"), "illegal"), + (UniCase("accompliss"), "accomplishes"), + (UniCase("unfriednly"), "unfriendly"), + (UniCase("oblitorated"), "obliterated"), + (UniCase("stereotypian"), "stereotyping"), + (UniCase("prejucides"), "prejudices"), + (UniCase("sistematically"), "systematically"), + (UniCase("distirbuted"), "distribute"), + (UniCase("zimbabwaen"), "zimbabwe"), + (UniCase("cacausian"), "caucasian"), + (UniCase("gaolbirds"), "jailbirds"), + (UniCase("impulisve"), "impulsive"), + (UniCase("inbeetwen"), "inbetween"), + (UniCase("wiew"), "view"), + (UniCase("daimonds"), "diamonds"), + (UniCase("grovelled"), "groveled"), + (UniCase("acronymns"), "acronyms"), + (UniCase("synoynm"), "synonym"), + (UniCase("stimulat"), "stimulants"), + (UniCase("phenonemon"), "phenomenon"), + (UniCase("discreditied"), "discredited"), + (UniCase("virginus"), "virgins"), + (UniCase("bulgaira"), "bulgaria"), + (UniCase("choicers"), "choices"), + (UniCase("enrollemnt"), "enrollment"), + (UniCase("acquianted"), "acquainted"), + (UniCase("concurret"), "concurrent"), + (UniCase("misinterprted"), "misinterpret"), + (UniCase("laborerers"), "laborers"), + (UniCase("dermatolagist"), "dermatologist"), + (UniCase("workstaion"), "workstation"), + (UniCase("lonly"), "lonely"), + (UniCase("defence"), "defense"), + (UniCase("herculeees"), "hercules"), + (UniCase("businessnes"), "businessmen"), + (UniCase("similarily"), "similarly"), + (UniCase("populatoin"), "populations"), + (UniCase("exclemation"), "exclamation"), + (UniCase("unbeerable"), "unbearable"), + (UniCase("fundimentally"), "fundamentally"), + (UniCase("lithaunia"), "lithuania"), + (UniCase("legistation"), "legislation"), + (UniCase("camouflagued"), "camouflage"), + (UniCase("mimimum"), "minimum"), + (UniCase("specialy"), "specially"), + (UniCase("materias"), "materials"), + (UniCase("sculpteur"), "sculpture"), + (UniCase("betales"), "beatles"), + (UniCase("antrophology"), "anthropology"), + (UniCase("courthosue"), "courthouse"), + (UniCase("reorganision"), "reorganisation"), + (UniCase("procees"), "proceeds"), + (UniCase("juristictions"), "jurisdictions"), + (UniCase("ambassodor"), "ambassador"), + (UniCase("bureaucratius"), "bureaucrats"), + (UniCase("coordonated"), "coordinated"), + (UniCase("tablespooon"), "tablespoon"), + (UniCase("chekcmate"), "checkmate"), + (UniCase("distatseful"), "distasteful"), + (UniCase("encyclopaedia"), "encyclopedia"), + (UniCase("transitons"), "transitions"), + (UniCase("helment"), "helmet"), + (UniCase("sentimentalises"), "sentimentalizes"), + (UniCase("honeslty"), "honestly"), + (UniCase("enlightnement"), "enlightenment"), + (UniCase("catigorically"), "categorically"), + (UniCase("trustworty"), "trustworthy"), + (UniCase("influentes"), "influences"), + (UniCase("agonisingly"), "agonizingly"), + (UniCase("repeadetly"), "repeatedly"), + (UniCase("familiarizate"), "familiarize"), + (UniCase("grandchilderen"), "grandchildren"), + (UniCase("elementrary"), "elementary"), + (UniCase("minimage"), "minigame"), + (UniCase("copenahgen"), "copenhagen"), + (UniCase("professionsl"), "professionalism"), + (UniCase("ocuntries"), "countries"), + (UniCase("conditiong"), "conditioning"), + (UniCase("downlaoding"), "downloading"), + (UniCase("exclusivs"), "exclusives"), + (UniCase("ultimative"), "ultimate"), + (UniCase("certainy"), "certainty"), + (UniCase("dehumanising"), "dehumanizing"), + (UniCase("appropriatin"), "appropriation"), + (UniCase("univeristies"), "universities"), + (UniCase("fascisation"), "fascination"), + (UniCase("adoloscent"), "adolescent"), + (UniCase("inbewteen"), "inbetween"), + (UniCase("complicted"), "complicated"), + (UniCase("regualtion"), "regulations"), + (UniCase("protohypes"), "prototypes"), + (UniCase("transporteur"), "transporter"), + (UniCase("israelli"), "israeli"), + (UniCase("beautifyl"), "beautifully"), + (UniCase("permenantly"), "permanently"), + (UniCase("cardina"), "cardigan"), + (UniCase("coordinar"), "coordinator"), + (UniCase("lionises"), "lionizes"), + (UniCase("containes"), "contains"), + (UniCase("allegence"), "allegiance"), + (UniCase("unconvenient"), "inconvenient"), + (UniCase("windsheild"), "windshield"), + (UniCase("technicain"), "technician"), + (UniCase("shetler"), "shelter"), + (UniCase("jeopary"), "jeopardy"), + (UniCase("orginal"), "original"), + (UniCase("contributers"), "contributors"), + (UniCase("politing"), "piloting"), + (UniCase("illuminarti"), "illuminati"), + (UniCase("extrenally"), "externally"), + (UniCase("controling"), "controlling"), + (UniCase("constructiong"), "constructing"), + (UniCase("boutnies"), "bounties"), + (UniCase("administr"), "administer"), + (UniCase("victimise"), "victimize"), + (UniCase("disconencts"), "disconnects"), + (UniCase("fucntionally"), "functionally"), + (UniCase("presists"), "persists"), + (UniCase("noteworthly"), "noteworthy"), + (UniCase("bourgoeis"), "bourgeois"), + (UniCase("medidating"), "meditating"), + (UniCase("sucessfull"), "successful"), + (UniCase("desgins"), "designs"), + (UniCase("agruement"), "arguement"), + (UniCase("elasped"), "elapsed"), + (UniCase("unmanouverable"), "unmaneuverable"), + (UniCase("strenghtens"), "strengthen"), + (UniCase("nuclues"), "nucleus"), + (UniCase("exaggurated"), "exaggerated"), + (UniCase("distubring"), "disturbing"), + (UniCase("perorders"), "preorders"), + (UniCase("misdimeanor"), "misdemeanor"), + (UniCase("sotry"), "story"), + (UniCase("monopoloy"), "monopoly"), + (UniCase("crusdaer"), "crusader"), + (UniCase("discribes"), "describes"), + (UniCase("instered"), "inserted"), + (UniCase("tranistion"), "transition"), + (UniCase("inovker"), "invoker"), + (UniCase("privledge"), "privilege"), + (UniCase("hirearchy"), "hierarchy"), + (UniCase("unqiueness"), "uniqueness"), + (UniCase("cauterise"), "cauterize"), + (UniCase("legislatiors"), "legislators"), + (UniCase("bachelores"), "bachelors"), + (UniCase("conclussion"), "conclusions"), + (UniCase("aggresive"), "aggressive"), + (UniCase("picthers"), "pitchers"), + (UniCase("neurosciene"), "neuroscience"), + (UniCase("historicians"), "historians"), + (UniCase("thomspon"), "thompson"), + (UniCase("tourch"), "torch"), + (UniCase("vaccineras"), "vaccines"), + (UniCase("unhealty"), "unhealthy"), + (UniCase("inspirating"), "inspiration"), + (UniCase("synthesising"), "synthesizing"), + (UniCase("architectrual"), "architectural"), + (UniCase("brigdes"), "bridges"), + (UniCase("defenderlas"), "defenders"), + (UniCase("pitchforkers"), "pitchforks"), + (UniCase("eloquantly"), "eloquently"), + (UniCase("kilometre"), "kilometer"), + (UniCase("singularty"), "singularity"), + (UniCase("enchanging"), "enchanting"), + (UniCase("specualtion"), "speculation"), + (UniCase("realtionships"), "relationships"), + (UniCase("incremential"), "incremental"), + (UniCase("fluctuative"), "fluctuate"), + (UniCase("shangahi"), "shanghai"), + (UniCase("liberatin"), "liberation"), + (UniCase("jaguras"), "jaguars"), + (UniCase("represso"), "repression"), + (UniCase("touritsy"), "touristy"), + (UniCase("micorwave"), "microwave"), + (UniCase("transcripton"), "transcription"), + (UniCase("organiser"), "organizer"), + (UniCase("moprhine"), "morphine"), + (UniCase("godess"), "goddess"), + (UniCase("promethius"), "prometheus"), + (UniCase("tacitcally"), "tactically"), + (UniCase("normalise"), "normalize"), + (UniCase("fundamentalistisk"), "fundamentalists"), + (UniCase("scrambleing"), "scrambling"), + (UniCase("destroyeds"), "destroyers"), + (UniCase("literture"), "literature"), + (UniCase("tangentialy"), "tangentially"), + (UniCase("finalisation"), "finalization"), + (UniCase("vulgarised"), "vulgarized"), + (UniCase("flasghip"), "flagship"), + (UniCase("thge"), "the"), + (UniCase("unofficail"), "unofficial"), + (UniCase("countryies"), "countryside"), + (UniCase("philisophical"), "philosophical"), + (UniCase("spammend"), "spammed"), + (UniCase("organische"), "organise"), + (UniCase("disposte"), "dispose"), + (UniCase("regulatiors"), "regulators"), + (UniCase("toxiticy"), "toxicity"), + (UniCase("mandaste"), "mandates"), + (UniCase("transplanet"), "transplant"), + (UniCase("overbraking"), "overbearing"), + (UniCase("extremley"), "extremely"), + (UniCase("fomaing"), "foaming"), + (UniCase("flciker"), "flicker"), + (UniCase("ogrilla"), "gorilla"), + (UniCase("snowfalling"), "snowballing"), + (UniCase("humanite"), "humanities"), + (UniCase("castels"), "castles"), + (UniCase("unappealling"), "unappealing"), + (UniCase("prosparity"), "prosperity"), + (UniCase("satruday"), "saturday"), + (UniCase("economise"), "economize"), + (UniCase("anoxeria"), "anorexia"), + (UniCase("cooridnate"), "coordinate"), + (UniCase("behaviourism"), "behaviorism"), + (UniCase("drasticlly"), "drastically"), + (UniCase("painfullly"), "painfully"), + (UniCase("certificare"), "certificate"), + (UniCase("tesitcles"), "testicles"), + (UniCase("redeemd"), "redeemed"), + (UniCase("inifnitely"), "infinitely"), + (UniCase("masturabting"), "masturbating"), + (UniCase("polietly"), "politely"), + (UniCase("fraturnity"), "fraternity"), + (UniCase("queation"), "equation"), + (UniCase("contentas"), "contents"), + (UniCase("collaberate"), "collaborate"), + (UniCase("westminter"), "westminster"), + (UniCase("questionn"), "questioning"), + (UniCase("revellers"), "revelers"), + (UniCase("mountan"), "mountain"), + (UniCase("manifacturing"), "manufacturing"), + (UniCase("frackign"), "fracking"), + (UniCase("individualising"), "individualizing"), + (UniCase("competators"), "competitors"), + (UniCase("batlimore"), "baltimore"), + (UniCase("poluting"), "polluting"), + (UniCase("develpment"), "development"), + (UniCase("condradicted"), "contradicted"), + (UniCase("contuinity"), "continuity"), + (UniCase("charisa"), "charisma"), + (UniCase("draculea"), "dracula"), + (UniCase("testifiy"), "testify"), + (UniCase("contribued"), "contributed"), + (UniCase("subcsription"), "subscriptions"), + (UniCase("repblicans"), "republicans"), + (UniCase("experimenterade"), "experimented"), + (UniCase("funcitonally"), "functionally"), + (UniCase("encycolpedia"), "encyclopedia"), + (UniCase("insidios"), "insidious"), + (UniCase("ambassader"), "ambassador"), + (UniCase("romaina"), "romania"), + (UniCase("goosepumps"), "goosebumps"), + (UniCase("provisiones"), "provisions"), + (UniCase("liberatrians"), "libertarians"), + (UniCase("chruches"), "churches"), + (UniCase("jailbroaken"), "jailbroken"), + (UniCase("mackeral"), "mackerel"), + (UniCase("thermometor"), "thermometer"), + (UniCase("retireus"), "retires"), + (UniCase("moisturizng"), "moisturizing"), + (UniCase("ealier"), "earlier"), + (UniCase("concentraiton"), "concentrations"), + (UniCase("direktional"), "directional"), + (UniCase("declears"), "declares"), + (UniCase("victoriuos"), "victorious"), + (UniCase("restanti"), "restarting"), + (UniCase("levicitus"), "leviticus"), + (UniCase("conservaties"), "conservatives"), + (UniCase("cursader"), "crusader"), + (UniCase("adolescene"), "adolescence"), + (UniCase("generalice"), "generalize"), + (UniCase("ecclectic"), "eclectic"), + (UniCase("cupboad"), "cupboard"), + (UniCase("medeival"), "medieval"), + (UniCase("patirot"), "patriot"), + (UniCase("inconciderate"), "inconsiderate"), + (UniCase("breakthough"), "breakthrough"), + (UniCase("stereotypeing"), "stereotyping"), + (UniCase("extremeophile"), "extremophile"), + (UniCase("affaris"), "affairs"), + (UniCase("fruadulent"), "fraudulent"), + (UniCase("teleportion"), "teleporting"), + (UniCase("suspicsion"), "suspicions"), + (UniCase("situatinal"), "situational"), + (UniCase("aesthatics"), "aesthetics"), + (UniCase("punissable"), "punishable"), + (UniCase("singlepalyer"), "singleplayer"), + (UniCase("foundatoin"), "foundations"), + (UniCase("inbalanced"), "imbalanced"), + (UniCase("higer"), "higher"), + (UniCase("somethibng"), "somethin"), + (UniCase("apolagized"), "apologized"), + (UniCase("insperation"), "inspiration"), + (UniCase("repositary"), "repository"), + (UniCase("imagin"), "imagine"), + (UniCase("ethnicites"), "ethnicities"), + (UniCase("weirldy"), "weirdly"), + (UniCase("intervier"), "interviewer"), + (UniCase("democracts"), "democrat"), + (UniCase("charactersistic"), "characteristic"), + (UniCase("stunami"), "tsunami"), + (UniCase("bluetooh"), "bluetooth"), + (UniCase("prepetuated"), "perpetuated"), + (UniCase("brightoner"), "brighten"), + (UniCase("phenomonen"), "phenomenon"), + (UniCase("catapiller"), "caterpillar"), + (UniCase("elloitt"), "elliott"), + (UniCase("initalism"), "initialism"), + (UniCase("consensuarlo"), "consensual"), + (UniCase("strenght"), "strength"), + (UniCase("inspirerad"), "inspired"), + (UniCase("butterlfy"), "butterfly"), + (UniCase("radiaoctive"), "radioactive"), + (UniCase("nipticking"), "nitpicking"), + (UniCase("simlutaneous"), "simultaneous"), + (UniCase("apostrophied"), "apostrophe"), + (UniCase("generas"), "generals"), + (UniCase("prioritse"), "priorities"), + (UniCase("heavyweigt"), "heavyweight"), + (UniCase("morphinate"), "morphine"), + (UniCase("professionalises"), "professionalizes"), + (UniCase("secularise"), "secularize"), + (UniCase("exauhstion"), "exhaustion"), + (UniCase("arbitrairy"), "arbitrarily"), + (UniCase("whlch"), "which"), + (UniCase("emphaised"), "emphasised"), + (UniCase("copenhangen"), "copenhagen"), + (UniCase("subjectivy"), "subjectively"), + (UniCase("metropols"), "metropolis"), + (UniCase("virtuels"), "virtues"), + (UniCase("interational"), "international"), + (UniCase("inheirtance"), "inheritance"), + (UniCase("spirtiually"), "spiritually"), + (UniCase("surpemacist"), "supremacist"), + (UniCase("decompositing"), "decomposing"), + (UniCase("ressembling"), "resembling"), + (UniCase("cabinate"), "cabinet"), + (UniCase("thiests"), "theists"), + (UniCase("inconsistentcy"), "inconsistency"), + (UniCase("repsectively"), "respectively"), + (UniCase("sterilised"), "sterilized"), + (UniCase("civillian"), "civilian"), + (UniCase("neighourhoods"), "neighborhoods"), + (UniCase("convseration"), "conservation"), + (UniCase("economises"), "economizes"), + (UniCase("conenctor"), "connector"), + (UniCase("conisderation"), "considerations"), + (UniCase("encylcopedia"), "encyclopedia"), + (UniCase("protuguese"), "portuguese"), + (UniCase("analoge"), "analogue"), + (UniCase("anectodal"), "anecdotal"), + (UniCase("inresponsive"), "unresponsive"), + (UniCase("psychyatrist"), "psychiatrist"), + (UniCase("uncomfortablely"), "uncomfortably"), + (UniCase("connectes"), "connects"), + (UniCase("dependencey"), "dependency"), + (UniCase("gameply"), "gameplay"), + (UniCase("organistion"), "organisation"), + (UniCase("aplied"), "applied"), + (UniCase("concurment"), "concurrent"), + (UniCase("thigns"), "things"), + (UniCase("preimere"), "premiere"), + (UniCase("inconsistenty"), "inconsistency"), + (UniCase("indocrtination"), "indoctrination"), + (UniCase("interferisce"), "interferes"), + (UniCase("ulterioare"), "ulterior"), + (UniCase("administrer"), "administer"), + (UniCase("consequtive"), "consecutive"), + (UniCase("nominae"), "nominate"), + (UniCase("madturbation"), "masturbation"), + (UniCase("landshapes"), "landscapes"), + (UniCase("blackhakws"), "blackhawks"), + (UniCase("determinded"), "determine"), + (UniCase("hypothises"), "hypotheses"), + (UniCase("contriversy"), "controversy"), + (UniCase("spreadshets"), "spreadsheets"), + (UniCase("organizaitonal"), "organizational"), + (UniCase("unrakned"), "unranked"), + (UniCase("connetation"), "connotation"), + (UniCase("stelathy"), "stealthy"), + (UniCase("armourer"), "armorer"), + (UniCase("motorcylces"), "motorcycles"), + (UniCase("decendent"), "descendant"), + (UniCase("convoluded"), "convoluted"), + (UniCase("curatin"), "curtain"), + (UniCase("denonimator"), "denominator"), + (UniCase("surprized"), "surprised"), + (UniCase("utlimatum"), "ultimatum"), + (UniCase("respectons"), "respects"), + (UniCase("understnad"), "understands"), + (UniCase("misinterept"), "misinterpret"), + (UniCase("pigoens"), "pigeons"), + (UniCase("sincereley"), "sincerely"), + (UniCase("shamen"), "shaman"), + (UniCase("aestethic"), "aesthetic"), + (UniCase("intercepcion"), "interception"), + (UniCase("abrupty"), "abruptly"), + (UniCase("capitolism"), "capitalism"), + (UniCase("imtimidation"), "intimidation"), + (UniCase("responsibiliy"), "responsibility"), + (UniCase("realoded"), "reloaded"), + (UniCase("prinicple"), "principle"), + (UniCase("acceptabil"), "acceptable"), + (UniCase("undermindes"), "undermines"), + (UniCase("endorces"), "endorse"), + (UniCase("discapline"), "discipline"), + (UniCase("denationalised"), "denationalized"), + (UniCase("incredibley"), "incredibly"), + (UniCase("inconvenince"), "inconvenience"), + (UniCase("comptown"), "compton"), + (UniCase("conquerd"), "conquered"), + (UniCase("definitlry"), "definitly"), + (UniCase("retribuito"), "retribution"), + (UniCase("awnsering"), "answering"), + (UniCase("rebiulding"), "rebuilding"), + (UniCase("manufactued"), "manufactured"), + (UniCase("htiboxes"), "hitboxes"), + (UniCase("producitons"), "productions"), + (UniCase("pasteurises"), "pasteurizes"), + (UniCase("whsipered"), "whispered"), + (UniCase("delagates"), "delegates"), + (UniCase("theroies"), "theories"), + (UniCase("conencting"), "connecting"), + (UniCase("incoginto"), "incognito"), + (UniCase("completeing"), "completing"), + (UniCase("shatnering"), "shattering"), + (UniCase("silicoln"), "silicon"), + (UniCase("ihaca"), "ithaca"), + (UniCase("europeaners"), "europeans"), + (UniCase("observacion"), "observation"), + (UniCase("solemnised"), "solemnized"), + (UniCase("acuracy"), "accuracy"), + (UniCase("rolepalying"), "roleplaying"), + (UniCase("dissapear"), "disappear"), + (UniCase("narcissicm"), "narcissism"), + (UniCase("giagbyte"), "gigabyte"), + (UniCase("definitly"), "definitely"), + (UniCase("heirarchy"), "hierarchy"), + (UniCase("trackres"), "trackers"), + (UniCase("circumcition"), "circumcision"), + (UniCase("betrayeado"), "betrayed"), + (UniCase("refernce"), "references"), + (UniCase("arbitrarely"), "arbitrarily"), + (UniCase("sacrifizing"), "sacrificing"), + (UniCase("compartmentalised"), "compartmentalized"), + (UniCase("promiscus"), "promiscuous"), + (UniCase("dominoin"), "dominion"), + (UniCase("purcahsed"), "purchased"), + (UniCase("huanting"), "haunting"), + (UniCase("simplets"), "simplest"), + (UniCase("revolutionises"), "revolutionizes"), + (UniCase("revitalises"), "revitalizes"), + (UniCase("similiraties"), "similarities"), + (UniCase("distributior"), "distributor"), + (UniCase("crystallises"), "crystallizes"), + (UniCase("collasping"), "collapsing"), + (UniCase("impulsemos"), "impulses"), + (UniCase("unfriendy"), "unfriendly"), + (UniCase("whatseover"), "whatsoever"), + (UniCase("expirement"), "experiment"), + (UniCase("undreground"), "underground"), + (UniCase("specificies"), "specifics"), + (UniCase("brigated"), "brigade"), + (UniCase("carnagie"), "carnegie"), + (UniCase("crueller"), "crueler"), + (UniCase("seinor"), "senior"), + (UniCase("pronounds"), "pronouns"), + (UniCase("sucessfuly"), "successfully"), + (UniCase("seperating"), "separating"), + (UniCase("informatike"), "informative"), + (UniCase("simplifiy"), "simplify"), + (UniCase("cinncinati"), "cincinnati"), + (UniCase("stereotying"), "stereotyping"), + (UniCase("sufferd"), "suffered"), + (UniCase("brithday"), "birthday"), + (UniCase("senatores"), "senators"), + (UniCase("stancels"), "stances"), + (UniCase("fitlers"), "filters"), + (UniCase("suspened"), "suspend"), + (UniCase("philosopies"), "philosophies"), + (UniCase("calagry"), "calgary"), + (UniCase("encahnting"), "enchanting"), + (UniCase("exclusivy"), "exclusivity"), + (UniCase("whith"), "with"), + (UniCase("soudn"), "sound"), + (UniCase("fundamentalisti"), "fundamentals"), + (UniCase("ascneded"), "ascended"), + (UniCase("invlove"), "involve"), + (UniCase("arthimetic"), "arithmetic"), + (UniCase("recordarme"), "recorder"), + (UniCase("controvertial"), "controversial"), + (UniCase("greatful"), "grateful"), + (UniCase("beuraucracy"), "bureaucracy"), + (UniCase("chillade"), "chilled"), + (UniCase("substitiute"), "substitute"), + (UniCase("expresss"), "expresses"), + (UniCase("treasurs"), "treasures"), + (UniCase("propositivo"), "proposition"), + (UniCase("mechanicus"), "mechanics"), + (UniCase("conjuncting"), "conjunction"), + (UniCase("ridiculled"), "ridicule"), + (UniCase("gerogia"), "georgia"), + (UniCase("butterey"), "buttery"), + (UniCase("technoligically"), "technologically"), + (UniCase("clesius"), "celsius"), + (UniCase("windsoar"), "windsor"), + (UniCase("marginable"), "marginal"), + (UniCase("christinas"), "christians"), + (UniCase("accomodations"), "accommodations"), + (UniCase("desuction"), "seduction"), + (UniCase("intorvert"), "introvert"), + (UniCase("illegas"), "illegals"), + (UniCase("difficulte"), "difficulties"), + (UniCase("irrationella"), "irrational"), + (UniCase("sympathie"), "sympathize"), + (UniCase("thier"), "their"), + (UniCase("resistribution"), "redistribution"), + (UniCase("flawlessy"), "flawlessly"), + (UniCase("pamflet"), "pamphlet"), + (UniCase("sucessor"), "successor"), + (UniCase("compatiblity"), "compatibility"), + (UniCase("oppresssion"), "oppression"), + (UniCase("butterfleye"), "butterfly"), + (UniCase("letivicus"), "leviticus"), + (UniCase("channelling"), "channeling"), + (UniCase("nationallity"), "nationally"), + (UniCase("pyramides"), "pyramids"), + (UniCase("bethesa"), "bethesda"), + (UniCase("conlcusion"), "conclusion"), + (UniCase("suppressio"), "suppressor"), + (UniCase("shanenigans"), "shenanigans"), + (UniCase("experiance"), "experience"), + (UniCase("acutaly"), "actualy"), + (UniCase("secularises"), "secularizes"), + (UniCase("markes"), "marks"), + (UniCase("inflitrate"), "infiltrate"), + (UniCase("liberterians"), "libertarians"), + (UniCase("roundaboot"), "roundabout"), + (UniCase("arpanoid"), "paranoid"), + (UniCase("ostentibly"), "ostensibly"), + (UniCase("stabiliser"), "stabilizer"), + (UniCase("disapperaing"), "disappearing"), + (UniCase("duplicatas"), "duplicates"), + (UniCase("minsicule"), "miniscule"), + (UniCase("shifteer"), "shifter"), + (UniCase("sitckers"), "stickers"), + (UniCase("meterologist"), "meteorologist"), + (UniCase("santioned"), "sanctioned"), + (UniCase("stlye"), "style"), + (UniCase("discourges"), "discourages"), + (UniCase("professsor"), "professors"), + (UniCase("biologia"), "biological"), + (UniCase("multitaksing"), "multitasking"), + (UniCase("immunised"), "immunized"), + (UniCase("yrea"), "year"), + (UniCase("kenendy"), "kennedy"), + (UniCase("qualifikation"), "qualification"), + (UniCase("galations"), "galatians"), + (UniCase("hypathetical"), "hypothetical"), + (UniCase("elephantos"), "elephants"), + (UniCase("pormetheus"), "prometheus"), + (UniCase("recongized"), "recognized"), + (UniCase("goosegumps"), "goosebumps"), + (UniCase("fingerpoint"), "fingerprint"), + (UniCase("correpsonding"), "corresponding"), + (UniCase("expextancy"), "expectancy"), + (UniCase("plagiarised"), "plagiarized"), + (UniCase("legalised"), "legalized"), + (UniCase("complation"), "completion"), + (UniCase("sponsorise"), "sponsors"), + (UniCase("isarelis"), "israelis"), + (UniCase("promose"), "promotes"), + (UniCase("isralies"), "israelis"), + (UniCase("chamiponship"), "championships"), + (UniCase("prominetly"), "prominently"), + (UniCase("propabilities"), "probabilities"), + (UniCase("instint"), "instinct"), + (UniCase("tantrumers"), "tantrums"), + (UniCase("newletters"), "newsletters"), + (UniCase("mistakently"), "mistakenly"), + (UniCase("consequenty"), "consequently"), + (UniCase("screenshoot"), "screenshot"), + (UniCase("distingish"), "distinguish"), + (UniCase("australa"), "australian"), + (UniCase("neighourhood"), "neighborhood"), + (UniCase("nusance"), "nuisance"), + (UniCase("countoring"), "countering"), + (UniCase("anrachist"), "anarchist"), + (UniCase("liasons"), "liaisons"), + (UniCase("dispalyed"), "displayed"), + (UniCase("haviest"), "heaviest"), + (UniCase("distinguised"), "distinguished"), + (UniCase("unprofessinal"), "unprofessional"), + (UniCase("tourisy"), "touristy"), + (UniCase("electronicos"), "electronics"), + (UniCase("advantagous"), "advantageous"), + (UniCase("nationalistiska"), "nationalists"), + (UniCase("responsbily"), "responsibly"), + (UniCase("raptros"), "raptors"), + (UniCase("intuitivno"), "intuition"), + (UniCase("carbohydrats"), "carbohydrates"), + (UniCase("coincidense"), "coincidence"), + (UniCase("mdifielder"), "midfielder"), + (UniCase("militais"), "militias"), + (UniCase("sensitivety"), "sensitivity"), + (UniCase("transperancy"), "transparency"), + (UniCase("directos"), "directors"), + (UniCase("maunals"), "manuals"), + (UniCase("recipeints"), "recipients"), + (UniCase("holocuast"), "holocaust"), + (UniCase("tendancies"), "tendencies"), + (UniCase("geopraphically"), "geographically"), + (UniCase("fantasising"), "fantasizing"), + (UniCase("revolutionos"), "revolutions"), + (UniCase("unsunscribed"), "unsubscribed"), + (UniCase("currenty"), "currently"), + (UniCase("alternatley"), "alternately"), + (UniCase("awfullly"), "awfully"), + (UniCase("resolutons"), "resolutions"), + (UniCase("umcomfortably"), "uncomfortably"), + (UniCase("opinoins"), "opinions"), + (UniCase("midifelders"), "midfielders"), + (UniCase("paychologically"), "psychologically"), + (UniCase("jamsine"), "jasmine"), + (UniCase("terrurists"), "terrorists"), + (UniCase("hyrdogen"), "hydrogen"), + (UniCase("computarized"), "computerized"), + (UniCase("releses"), "releases"), + (UniCase("filmamkers"), "filmmakers"), + (UniCase("cententenial"), "centennial"), + (UniCase("agressor"), "aggressor"), + (UniCase("inscets"), "insects"), + (UniCase("admrial"), "admiral"), + (UniCase("preferas"), "prefers"), + (UniCase("overwheling"), "overwhelming"), + (UniCase("lightes"), "lighters"), + (UniCase("desqualified"), "disqualified"), + (UniCase("jamacain"), "jamaican"), + (UniCase("complimentje"), "complimented"), + (UniCase("somethn"), "somethin"), + (UniCase("masturbathon"), "masturbation"), + (UniCase("accostumed"), "accustomed"), + (UniCase("bowdlerise"), "bowdlerize"), + (UniCase("guaranted"), "guaranteed"), + (UniCase("instructiosn"), "instruction"), + (UniCase("formatin"), "formation"), + (UniCase("achivements"), "achievements"), + (UniCase("israelitas"), "israelis"), + (UniCase("systemisch"), "systemic"), + (UniCase("caricaturale"), "caricature"), + (UniCase("taht"), "that"), + (UniCase("infiltrade"), "infiltrate"), + (UniCase("recommented"), "recommended"), + (UniCase("mattreses"), "mattress"), + (UniCase("steryotyping"), "stereotyping"), + (UniCase("olypmics"), "olympics"), + (UniCase("conservare"), "conserve"), + (UniCase("synomymous"), "synonymous"), + (UniCase("factualy"), "factually"), + (UniCase("internationalisation"), "internationalization"), + (UniCase("canniballism"), "cannibalism"), + (UniCase("colourants"), "colorants"), + (UniCase("subjectivily"), "subjectively"), + (UniCase("centralising"), "centralizing"), + (UniCase("humanoind"), "humanoid"), + (UniCase("constitue"), "constitutes"), + (UniCase("multiplr"), "multiplier"), + (UniCase("foreing"), "foreign"), + (UniCase("verifiyng"), "verifying"), + (UniCase("temporaraly"), "temporarily"), + (UniCase("cholocate"), "chocolate"), + (UniCase("vigilence"), "vigilance"), + (UniCase("olympis"), "olympics"), + (UniCase("aberation"), "aberration"), + (UniCase("greusome"), "gruesome"), + (UniCase("discualified"), "disqualified"), + (UniCase("absitnence"), "abstinence"), + (UniCase("pencilled"), "penciled"), + (UniCase("ostensibily"), "ostensibly"), + (UniCase("inconveinent"), "inconvenient"), + (UniCase("dictatorshop"), "dictatorship"), + (UniCase("acknowledget"), "acknowledgement"), + (UniCase("glueing"), "gluing"), + (UniCase("dangeroys"), "dangerously"), + (UniCase("considert"), "considerate"), + (UniCase("combinato"), "combination"), + (UniCase("objectivify"), "objectivity"), + (UniCase("laodouts"), "loadouts"), + (UniCase("hallucinaton"), "hallucination"), + (UniCase("incomprehinsible"), "incomprehensible"), + (UniCase("catasthrope"), "catastrophe"), + (UniCase("nickanme"), "nickname"), + (UniCase("bejewelled"), "bejeweled"), + (UniCase("uniquelly"), "uniquely"), + (UniCase("originalet"), "originated"), + (UniCase("familiaries"), "familiarize"), + (UniCase("simlutaneously"), "simultaneously"), + (UniCase("execption"), "exception"), + (UniCase("investagators"), "investigators"), + (UniCase("prescribtions"), "prescriptions"), + (UniCase("imablances"), "imbalances"), + (UniCase("practitionners"), "practitioners"), + (UniCase("ecstascy"), "ecstasy"), + (UniCase("inititiaves"), "initiatives"), + (UniCase("whn"), "when"), + (UniCase("preipherals"), "peripherals"), + (UniCase("concevied"), "conceived"), + (UniCase("internetese"), "internets"), + (UniCase("recuritment"), "recruitment"), + (UniCase("collectivos"), "collections"), + (UniCase("afgahnistan"), "afghanistan"), + (UniCase("infiltraitor"), "infiltrator"), + (UniCase("requilme"), "requiem"), + (UniCase("obscuirty"), "obscurity"), + (UniCase("bigrading"), "brigading"), + (UniCase("ofcousre"), "ofcourse"), + (UniCase("causalties"), "casualties"), + (UniCase("witnesssing"), "witnessing"), + (UniCase("punsihable"), "punishable"), + (UniCase("taxanomic"), "taxonomic"), + (UniCase("misdemenors"), "misdemeanors"), + (UniCase("propostions"), "proportions"), + (UniCase("commisioning"), "commissioning"), + (UniCase("planation"), "plantation"), + (UniCase("ligthening"), "lightening"), + (UniCase("sculpter"), "sculpture"), + (UniCase("nostlagia"), "nostalgia"), + (UniCase("entreprenurs"), "entrepreneurs"), + (UniCase("calibler"), "calibre"), + (UniCase("hysterica"), "hysteria"), + (UniCase("acknowleding"), "acknowledging"), + (UniCase("dicovers"), "discovers"), + (UniCase("jamaicain"), "jamaican"), + (UniCase("resolutin"), "resolutions"), + (UniCase("trasnfers"), "transfers"), + (UniCase("goldbeg"), "goldberg"), + (UniCase("thearpy"), "therapy"), + (UniCase("bidrman"), "birdman"), + (UniCase("exportfs"), "exports"), + (UniCase("fortunae"), "fortune"), + (UniCase("convcition"), "convictions"), + (UniCase("comparisen"), "compares"), + (UniCase("persoanlly"), "personally"), + (UniCase("personalising"), "personalizing"), + (UniCase("imaptient"), "impatient"), + (UniCase("simultanous"), "simultaneous"), + (UniCase("scientic"), "scientific"), + (UniCase("scheduleing"), "scheduling"), + (UniCase("pracitcal"), "practical"), + (UniCase("selifes"), "selfies"), + (UniCase("airscape"), "airspace"), + (UniCase("supsicion"), "suspicion"), + (UniCase("collectivily"), "collectively"), + (UniCase("protaganists"), "protagonists"), + (UniCase("impressario"), "impresario"), + (UniCase("saterdays"), "saturdays"), + (UniCase("expectantcy"), "expectancy"), + (UniCase("explotions"), "explosions"), + (UniCase("approximatly"), "approximately"), + (UniCase("nostaglia"), "nostalgia"), + (UniCase("interpertations"), "interpretations"), + (UniCase("criticts"), "critics"), + (UniCase("responsabilities"), "responsibilities"), + (UniCase("decisivie"), "decisive"), + (UniCase("aregument"), "arguement"), + (UniCase("explicitily"), "explicitly"), + (UniCase("indicato"), "indication"), + (UniCase("annoucenment"), "announcements"), + (UniCase("assupmtion"), "assumptions"), + (UniCase("amphetamenes"), "amphetamines"), + (UniCase("contestase"), "contests"), + (UniCase("massachusets"), "massachusetts"), + (UniCase("scantuary"), "sanctuary"), + (UniCase("indigenius"), "indigenous"), + (UniCase("moisturizor"), "moisturizer"), + (UniCase("agreing"), "agreeing"), + (UniCase("responsiby"), "responsibly"), + (UniCase("auromated"), "automated"), + (UniCase("disatvantaged"), "disadvantaged"), + (UniCase("deflectin"), "deflection"), + (UniCase("diagnosi"), "diagnostic"), + (UniCase("handelbars"), "handlebars"), + (UniCase("indonesean"), "indonesian"), + (UniCase("provocatief"), "provocative"), + (UniCase("xenophobical"), "xenophobia"), + (UniCase("directoy"), "directory"), + (UniCase("substantied"), "substantive"), + (UniCase("mathamatics"), "mathematics"), + (UniCase("magnesuim"), "magnesium"), + (UniCase("consumpion"), "consumption"), + (UniCase("dishonourably"), "dishonorably"), + (UniCase("sarcasticaly"), "sarcastically"), + (UniCase("physioligical"), "physiological"), + (UniCase("tolerence"), "tolerance"), + (UniCase("unaminous"), "unanimous"), + (UniCase("liberalest"), "liberate"), + (UniCase("celebrite"), "celebrities"), + (UniCase("overwieght"), "overweight"), + (UniCase("neturality"), "neutrality"), + (UniCase("anniversay"), "anniversary"), + (UniCase("intervento"), "intervention"), + (UniCase("broadacasting"), "broadcasting"), + (UniCase("cleanilness"), "cleanliness"), + (UniCase("discustingly"), "disgustingly"), + (UniCase("thign"), "thing"), + (UniCase("neigbhour"), "neighbour"), + (UniCase("arbitraily"), "arbitrarily"), + (UniCase("ideologe"), "ideologies"), + (UniCase("cilanto"), "cilantro"), + (UniCase("portrais"), "portraits"), + (UniCase("legitimising"), "legitimizing"), + (UniCase("prefernece"), "preferences"), + (UniCase("pscyhologically"), "psychologically"), + (UniCase("criticaly"), "critically"), + (UniCase("notacible"), "noticable"), + (UniCase("directivos"), "directions"), + (UniCase("teamfigt"), "teamfight"), + (UniCase("becnhmark"), "benchmark"), + (UniCase("exploted"), "explode"), + (UniCase("soldily"), "solidly"), + (UniCase("appreciaters"), "appreciates"), + (UniCase("suspicioulsy"), "suspiciously"), + (UniCase("electroltyes"), "electrolytes"), + (UniCase("misconseptions"), "misconceptions"), + (UniCase("preparacion"), "preparation"), + (UniCase("embarrasement"), "embarrassment"), + (UniCase("sovereigny"), "sovereignty"), + (UniCase("annyoingly"), "annoyingly"), + (UniCase("playabe"), "playable"), + (UniCase("instutionalized"), "institutionalized"), + (UniCase("centred"), "centered"), + (UniCase("refereces"), "references"), + (UniCase("immigranti"), "immigration"), + (UniCase("blackbarry"), "blackberry"), + (UniCase("undestructible"), "indestructible"), + (UniCase("explorare"), "explorer"), + (UniCase("isareli"), "israeli"), + (UniCase("ludcrious"), "ludicrous"), + (UniCase("sportsmenship"), "sportsmanship"), + (UniCase("sykward"), "skyward"), + (UniCase("executings"), "executions"), + (UniCase("qualifieres"), "qualifiers"), + (UniCase("implementationer"), "implementations"), + (UniCase("emporer"), "emperor"), + (UniCase("cooresponding"), "corresponding"), + (UniCase("catholizism"), "catholicism"), + (UniCase("midfileders"), "midfielders"), + (UniCase("paramedis"), "paramedics"), + (UniCase("acutions"), "auctions"), + (UniCase("instructers"), "instructors"), + (UniCase("hospitilized"), "hospitalized"), + (UniCase("terriblly"), "terribly"), + (UniCase("incarnaton"), "incarnation"), + (UniCase("trubinal"), "tribunal"), + (UniCase("offsrping"), "offspring"), + (UniCase("herad"), "heard"), + (UniCase("dulaity"), "duality"), + (UniCase("newsettler"), "newsletter"), + (UniCase("garnola"), "granola"), + (UniCase("alliegance"), "allegiance"), + (UniCase("perview"), "preview"), + (UniCase("demonstrativno"), "demonstrations"), + (UniCase("territority"), "territory"), + (UniCase("snugglie"), "snuggle"), + (UniCase("pionere"), "pioneer"), + (UniCase("empahsized"), "emphasized"), + (UniCase("genitaila"), "genitalia"), + (UniCase("vaticaan"), "vatican"), + (UniCase("inheratance"), "inheritance"), + (UniCase("randomised"), "randomized"), + (UniCase("everyoens"), "everyones"), + (UniCase("colonizacion"), "colonization"), + (UniCase("disconnet"), "disconnect"), + (UniCase("embarress"), "embarrassed"), + (UniCase("testimoney"), "testimony"), + (UniCase("fracturare"), "fracture"), + (UniCase("unknowinlgy"), "unknowingly"), + (UniCase("immobilze"), "immobile"), + (UniCase("ogranisation"), "organisation"), + (UniCase("trivialises"), "trivializes"), + (UniCase("downloadbig"), "downloading"), + (UniCase("weridest"), "weirdest"), + (UniCase("hypocrytes"), "hypocrites"), + (UniCase("eliminato"), "elimination"), + (UniCase("unopend"), "unopened"), + (UniCase("overwheliming"), "overwhelming"), + (UniCase("signifiant"), "significant"), + (UniCase("outragesouly"), "outrageously"), + (UniCase("legalising"), "legalizing"), + (UniCase("perspektive"), "perspective"), + (UniCase("inpossibility"), "impossibility"), + (UniCase("respectabil"), "respectable"), + (UniCase("regresssion"), "regression"), + (UniCase("busineses"), "business"), + (UniCase("constrainsts"), "constraints"), + (UniCase("provicial"), "provincial"), + (UniCase("contancting"), "contracting"), + (UniCase("athients"), "athiest"), + (UniCase("withdral"), "withdrawal"), + (UniCase("hopsitality"), "hospitality"), + (UniCase("haversting"), "harvesting"), + (UniCase("bowdlerising"), "bowdlerizing"), + (UniCase("corrolates"), "correlates"), + (UniCase("conditionel"), "conditional"), + (UniCase("apprecaited"), "appreciated"), + (UniCase("consueling"), "consulting"), + (UniCase("androgenous"), "androgynous"), + (UniCase("pyschiatrists"), "psychiatrists"), + (UniCase("desentralized"), "decentralized"), + (UniCase("resolverse"), "resolves"), + (UniCase("guttaral"), "guttural"), + (UniCase("demandes"), "demands"), + (UniCase("unavaliable"), "unavailable"), + (UniCase("photagraphers"), "photographers"), + (UniCase("evloved"), "evolved"), + (UniCase("intervenire"), "intervene"), + (UniCase("additonally"), "additionally"), + (UniCase("exerbate"), "exacerbate"), + (UniCase("appreicate"), "appreciate"), + (UniCase("skeptis"), "skeptics"), + (UniCase("synagouge"), "synagogue"), + (UniCase("commenciez"), "commence"), + (UniCase("terrirorial"), "territorial"), + (UniCase("repalces"), "replaces"), + (UniCase("negiotated"), "negotiated"), + (UniCase("documentaiton"), "documentation"), + (UniCase("annualy"), "annually"), + (UniCase("discredid"), "discredited"), + (UniCase("repid"), "rapid"), + (UniCase("recognision"), "recognition"), + (UniCase("pedophilles"), "pedophile"), + (UniCase("psychiatrits"), "psychiatrists"), + (UniCase("obstruktion"), "obstruction"), + (UniCase("assasin"), "assassin"), + (UniCase("maruader"), "marauder"), + (UniCase("participats"), "participant"), + (UniCase("captials"), "capitals"), + (UniCase("renketon"), "renekton"), + (UniCase("survivalibity"), "survivability"), + (UniCase("practicaly"), "practically"), + (UniCase("extrapolare"), "extrapolate"), + (UniCase("refrences"), "references"), + (UniCase("condescenscion"), "condescension"), + (UniCase("oppenly"), "openly"), + (UniCase("annyoance"), "annoyance"), + (UniCase("appreciateing"), "appreciating"), + (UniCase("propechies"), "prophecies"), + (UniCase("spartants"), "spartans"), + (UniCase("bobmers"), "bombers"), + (UniCase("wariwck"), "warwick"), + (UniCase("liquidisers"), "liquidizers"), + (UniCase("preorderded"), "preordered"), + (UniCase("philosopy"), "philosophy"), + (UniCase("concedendo"), "conceded"), + (UniCase("delivere"), "deliveries"), + (UniCase("metabolsim"), "metabolism"), + (UniCase("butterflyes"), "butterflies"), + (UniCase("proteccion"), "protection"), + (UniCase("armageddomon"), "armageddon"), + (UniCase("plastre"), "plaster"), + (UniCase("resturant"), "restaurant"), + (UniCase("hanlder"), "handler"), + (UniCase("luandry"), "laundry"), + (UniCase("janurary"), "january"), + (UniCase("resoltuion"), "resolutions"), + (UniCase("unnistalled"), "uninstalled"), + (UniCase("execusions"), "executions"), + (UniCase("privitazed"), "privatized"), + (UniCase("charcaol"), "charcoal"), + (UniCase("pruposely"), "purposely"), + (UniCase("arithmetisch"), "arithmetic"), + (UniCase("presonhood"), "personhood"), + (UniCase("shriley"), "shirley"), + (UniCase("amateures"), "amateurs"), + (UniCase("pressuming"), "pressuring"), + (UniCase("charachters"), "characters"), + (UniCase("colorblend"), "colorblind"), + (UniCase("preverse"), "perverse"), + (UniCase("scholorships"), "scholarships"), + (UniCase("strenghten"), "strengthen"), + (UniCase("patheitc"), "pathetic"), + (UniCase("magnetises"), "magnetizes"), + (UniCase("fileding"), "fielding"), + (UniCase("techonlogical"), "technological"), + (UniCase("syracue"), "syracuse"), + (UniCase("directin"), "directions"), + (UniCase("inspiritional"), "inspirational"), + (UniCase("warantee"), "warranty"), + (UniCase("universels"), "universes"), + (UniCase("marginalisation"), "marginalization"), + (UniCase("importantce"), "importance"), + (UniCase("industrialzed"), "industrialized"), + (UniCase("veneuzela"), "venezuela"), + (UniCase("chromosone"), "chromosome"), + (UniCase("warrios"), "warriors"), + (UniCase("intimidacion"), "intimidation"), + (UniCase("syracusae"), "syracuse"), + (UniCase("canonises"), "canonizes"), + (UniCase("restricitng"), "restricting"), + (UniCase("convinse"), "convinces"), + (UniCase("berserkr"), "berserker"), + (UniCase("reccuring"), "recurring"), + (UniCase("shcooled"), "schooled"), + (UniCase("shetlers"), "shelters"), + (UniCase("classicals"), "classics"), + (UniCase("antagnoist"), "antagonist"), + (UniCase("compositionwise"), "compositions"), + (UniCase("utiliatrian"), "utilitarian"), + (UniCase("marineras"), "mariners"), + (UniCase("irreverant"), "irrelevant"), + (UniCase("evenlopes"), "envelopes"), + (UniCase("trinagles"), "triangles"), + (UniCase("ocasions"), "occasions"), + (UniCase("interacties"), "interacts"), + (UniCase("anarchistes"), "anarchists"), + (UniCase("syncronous"), "synchronous"), + (UniCase("naugthy"), "naughty"), + (UniCase("contaminents"), "containment"), + (UniCase("bitterswet"), "bittersweet"), + (UniCase("sturggles"), "struggles"), + (UniCase("insuffucient"), "insufficient"), + (UniCase("unbreakbale"), "unbreakable"), + (UniCase("redesgin"), "redesign"), + (UniCase("perserved"), "preserved"), + (UniCase("afhganistan"), "afghanistan"), + (UniCase("diagnossed"), "diagnose"), + (UniCase("protagonsit"), "protagonists"), + (UniCase("disciplins"), "disciplines"), + (UniCase("spreadsheeds"), "spreadsheets"), + (UniCase("internelized"), "internalized"), + (UniCase("humants"), "humanist"), + (UniCase("astornauts"), "astronauts"), + (UniCase("forrset"), "forrest"), + (UniCase("mechandise"), "merchandise"), + (UniCase("chrsitianity"), "christianity"), + (UniCase("justificativo"), "justification"), + (UniCase("signularity"), "singularity"), + (UniCase("referrences"), "references"), + (UniCase("thiunk"), "think"), + (UniCase("ghettoise"), "ghettoize"), + (UniCase("conciveable"), "conceivable"), + (UniCase("husban"), "husband"), + (UniCase("parliment"), "parliament"), + (UniCase("survibability"), "survivability"), + (UniCase("threeof"), "thereof"), + (UniCase("hypothesees"), "hypotheses"), + (UniCase("conveniant"), "convenient"), + (UniCase("memeber"), "member"), + (UniCase("tust"), "trust"), + (UniCase("domecrats"), "democrats"), + (UniCase("siezure"), "seizure"), + (UniCase("strenghening"), "strengthening"), + (UniCase("transulcent"), "translucent"), + (UniCase("grammes"), "grams"), + (UniCase("demonination"), "denominations"), + (UniCase("beleif"), "belief"), + (UniCase("miliraty"), "military"), + (UniCase("hypocrises"), "hypocrites"), + (UniCase("concentratie"), "concentrate"), + (UniCase("interpritations"), "interpretations"), + (UniCase("keneysian"), "keynesian"), + (UniCase("relected"), "reelected"), + (UniCase("perpertrated"), "perpetrated"), + (UniCase("qualifyers"), "qualifiers"), + (UniCase("transofrmation"), "transformation"), + (UniCase("trinitiy"), "trinity"), + (UniCase("excellenze"), "excellence"), + (UniCase("explanetary"), "explanatory"), + (UniCase("directorys"), "directors"), + (UniCase("compansate"), "compensate"), + (UniCase("infinitelly"), "infinitely"), + (UniCase("despicaple"), "despicable"), + (UniCase("pretains"), "pertains"), + (UniCase("difficults"), "difficulties"), + (UniCase("determinisitic"), "deterministic"), + (UniCase("empiricaly"), "empirically"), + (UniCase("determing"), "determining"), + (UniCase("scandonavia"), "scandinavia"), + (UniCase("driectx"), "directx"), + (UniCase("upgarded"), "upgraded"), + (UniCase("invariabley"), "invariably"), + (UniCase("sebasitan"), "sebastian"), + (UniCase("activites"), "activities"), + (UniCase("masculinty"), "masculinity"), + (UniCase("dustification"), "justification"), + (UniCase("remmebered"), "remembered"), + (UniCase("fantasitcally"), "fantastically"), + (UniCase("bugdets"), "budgets"), + (UniCase("practising"), "practicing"), + (UniCase("commonweath"), "commonwealth"), + (UniCase("controversity"), "controversy"), + (UniCase("alcoholicas"), "alcoholics"), + (UniCase("generalising"), "generalizing"), + (UniCase("simplifyng"), "simplifying"), + (UniCase("perferably"), "preferably"), + (UniCase("outfied"), "outfield"), + (UniCase("presidante"), "presidents"), + (UniCase("blitzkreig"), "blitzkrieg"), + (UniCase("processer"), "processor"), + (UniCase("microvaves"), "microwaves"), + (UniCase("abondoned"), "abandoned"), + (UniCase("inteligent"), "intelligent"), + (UniCase("circulaire"), "circular"), + (UniCase("draughtman"), "draughtsman"), + (UniCase("stealty"), "stealthy"), + (UniCase("pahntom"), "phantom"), + (UniCase("haematologists"), "hematologists"), + (UniCase("stattues"), "statutes"), + (UniCase("convencion"), "convention"), + (UniCase("impresssion"), "impressions"), + (UniCase("certianty"), "certainty"), + (UniCase("qualifiy"), "qualify"), + (UniCase("cartilidge"), "cartilage"), + (UniCase("tyrhard"), "tryhard"), + (UniCase("ideologisk"), "ideologies"), + (UniCase("intutive"), "intuitive"), + (UniCase("ridicoulusly"), "ridiculously"), + (UniCase("computato"), "computation"), + (UniCase("healthiet"), "healthiest"), + (UniCase("sttutering"), "stuttering"), + (UniCase("specailizes"), "specializes"), + (UniCase("himselv"), "himself"), + (UniCase("serialisations"), "serializations"), + (UniCase("ansestors"), "ancestors"), + (UniCase("supermarkt"), "supermarket"), + (UniCase("exploitaiton"), "exploitation"), + (UniCase("monsterous"), "monsters"), + (UniCase("misunderstending"), "misunderstandings"), + (UniCase("sawstika"), "swastika"), + (UniCase("agnostisch"), "agnostic"), + (UniCase("afghanastan"), "afghanistan"), + (UniCase("minimazing"), "minimizing"), + (UniCase("immitating"), "imitating"), + (UniCase("tacticas"), "tactics"), + (UniCase("prepartion"), "preparation"), + (UniCase("institude"), "instituted"), + (UniCase("adbominal"), "abdominal"), + (UniCase("labenese"), "lebanese"), + (UniCase("phenomonenon"), "phenomenon"), + (UniCase("fanservise"), "fanservice"), + (UniCase("monothilic"), "monolithic"), + (UniCase("flavourus"), "flavours"), + (UniCase("aquired"), "acquired"), + (UniCase("remoulds"), "remolds"), + (UniCase("disingenuos"), "disingenuous"), + (UniCase("volunteraly"), "voluntarily"), + (UniCase("partonizing"), "patronizing"), + (UniCase("indiviudal"), "individuals"), + (UniCase("harrasses"), "harassed"), + (UniCase("magintude"), "magnitude"), + (UniCase("subtilte"), "subtitle"), + (UniCase("psychopatch"), "psychopath"), + (UniCase("privilegie"), "privilege"), + (UniCase("benifits"), "benefits"), + (UniCase("generationens"), "generations"), + (UniCase("peridoic"), "periodic"), + (UniCase("pervention"), "prevention"), + (UniCase("catterpillar"), "caterpillar"), + (UniCase("congresional"), "congressional"), + (UniCase("invincinble"), "invincible"), + (UniCase("resembes"), "resembles"), + (UniCase("committments"), "commitments"), + (UniCase("bankrupty"), "bankruptcy"), + (UniCase("enthusiests"), "enthusiasts"), + (UniCase("socratease"), "socrates"), + (UniCase("tood"), "todo"), + (UniCase("synonymus"), "synonyms"), + (UniCase("penetraton"), "penetration"), + (UniCase("rivlaries"), "rivalries"), + (UniCase("neglagence"), "negligence"), + (UniCase("shovelling"), "shoveling"), + (UniCase("admendment"), "amendment"), + (UniCase("converison"), "conversions"), + (UniCase("thoerists"), "theorists"), + (UniCase("inifnite"), "infinite"), + (UniCase("canalising"), "canalizing"), + (UniCase("reconnoitring"), "reconnoitering"), + (UniCase("sidelen"), "sideline"), + (UniCase("maritan"), "martian"), + (UniCase("wass"), "was"), + (UniCase("formulars"), "formulas"), + (UniCase("pshyciatrist"), "psychiatrist"), + (UniCase("misoginystic"), "misogynistic"), + (UniCase("molestarte"), "molester"), + (UniCase("highlighed"), "highlighted"), + (UniCase("presideny"), "presidency"), + (UniCase("sawnsea"), "swansea"), + (UniCase("columsn"), "columns"), + (UniCase("milwakuee"), "milwaukee"), + (UniCase("isntalling"), "installing"), + (UniCase("pharmasist"), "pharmacist"), + (UniCase("bandwidht"), "bandwidth"), + (UniCase("fahernheit"), "fahrenheit"), + (UniCase("determinitic"), "deterministic"), + (UniCase("threee"), "three"), + (UniCase("humurous"), "humorous"), + (UniCase("birhtday"), "birthday"), + (UniCase("revaluated"), "reevaluated"), + (UniCase("nationalised"), "nationalized"), + (UniCase("millenia"), "millennia"), + (UniCase("militarise"), "militarize"), + (UniCase("swaering"), "swearing"), + (UniCase("fanserve"), "fanservice"), + (UniCase("rectanguar"), "rectangular"), + (UniCase("mysterieus"), "mysteries"), + (UniCase("skrawberries"), "strawberries"), + (UniCase("jonatahn"), "jonathan"), + (UniCase("influening"), "influencing"), + (UniCase("molestarme"), "molester"), + (UniCase("heapdhones"), "headphones"), + (UniCase("protectons"), "protectors"), + (UniCase("devastaing"), "devastating"), + (UniCase("electivite"), "elective"), + (UniCase("deductibe"), "deductible"), + (UniCase("guardianis"), "guardians"), + (UniCase("engagemet"), "engagements"), + (UniCase("terrerists"), "terrorists"), + (UniCase("disastisfied"), "dissatisfied"), + (UniCase("relateds"), "relates"), + (UniCase("compasso"), "compassion"), + (UniCase("disaproval"), "disapproval"), + (UniCase("mastutbation"), "masturbation"), + (UniCase("vasall"), "vassal"), + (UniCase("injustaces"), "injustices"), + (UniCase("fundementals"), "fundamentals"), + (UniCase("mistankely"), "mistakenly"), + (UniCase("cosies"), "cozies"), + (UniCase("guradians"), "guardians"), + (UniCase("defelction"), "deflection"), + (UniCase("reguarly"), "regularly"), + (UniCase("pregorative"), "prerogative"), + (UniCase("inevititably"), "inevitably"), + (UniCase("humillating"), "humiliating"), + (UniCase("tattooes"), "tattoos"), + (UniCase("commenteers"), "commenter"), + (UniCase("secularised"), "secularized"), + (UniCase("favourite"), "favorite"), + (UniCase("effeciently"), "efficiently"), + (UniCase("writen"), "written"), + (UniCase("existantes"), "existent"), + (UniCase("retoractively"), "retroactively"), + (UniCase("positiveity"), "positivity"), + (UniCase("docuhes"), "douches"), + (UniCase("spiritualy"), "spiritually"), + (UniCase("distrubiting"), "distributing"), + (UniCase("virbate"), "vibrate"), + (UniCase("squeakly"), "squeaky"), + (UniCase("gimmickers"), "gimmicks"), + (UniCase("fascinatinf"), "fascination"), + (UniCase("frustraded"), "frustrated"), + (UniCase("coincedince"), "coincidence"), + (UniCase("evangelia"), "evangelical"), + (UniCase("stereotypying"), "stereotyping"), + (UniCase("criticiszed"), "criticise"), + (UniCase("foundaries"), "foundries"), + (UniCase("protoganists"), "protagonists"), + (UniCase("mispelling"), "misspelling"), + (UniCase("tantalised"), "tantalized"), + (UniCase("maraudeurs"), "marauder"), + (UniCase("assassine"), "assassinate"), + (UniCase("chanpionship"), "championship"), + (UniCase("athesim"), "atheism"), + (UniCase("realise"), "realize"), + (UniCase("disrespection"), "disrespecting"), + (UniCase("compatiblities"), "compatibilities"), + (UniCase("statisitcs"), "statistics"), + (UniCase("frustracion"), "frustration"), + (UniCase("threataning"), "threatening"), + (UniCase("congresmen"), "congressmen"), + (UniCase("dependancies"), "dependencies"), + (UniCase("exportes"), "exports"), + (UniCase("completetion"), "completion"), + (UniCase("propuslion"), "propulsion"), + (UniCase("reconsturction"), "reconstruction"), + (UniCase("performences"), "performances"), + (UniCase("propotions"), "proportions"), + (UniCase("begginers"), "beginners"), + (UniCase("sacrifacing"), "sacrificing"), + (UniCase("champagen"), "champagne"), + (UniCase("estiamtes"), "estimates"), + (UniCase("bureaucraps"), "bureaucrats"), + (UniCase("nutritent"), "nutrient"), + (UniCase("exaggarate"), "exaggerate"), + (UniCase("fanatism"), "fanaticism"), + (UniCase("monstrisity"), "monstrosity"), + (UniCase("maybellinne"), "maybelline"), + (UniCase("investogators"), "investigators"), + (UniCase("suround"), "surround"), + (UniCase("villin"), "villain"), + (UniCase("sertificates"), "certificates"), + (UniCase("colourizing"), "colorizing"), + (UniCase("possibilty"), "possibility"), + (UniCase("conferedate"), "confederate"), + (UniCase("survivabiity"), "survivability"), + (UniCase("prelimiary"), "preliminary"), + (UniCase("travesy"), "travesty"), + (UniCase("investigativo"), "investigation"), + (UniCase("nationalistics"), "nationalists"), + (UniCase("protagonistes"), "protagonists"), + (UniCase("lightweigt"), "lightweight"), + (UniCase("interrugum"), "interregnum"), + (UniCase("genersl"), "generals"), + (UniCase("charmisa"), "charisma"), + (UniCase("flavouring"), "flavoring"), + (UniCase("dispensory"), "dispensary"), + (UniCase("srpouts"), "sprouts"), + (UniCase("misanderstood"), "misunderstood"), + (UniCase("businessa"), "businessman"), + (UniCase("capitalised"), "capitalized"), + (UniCase("stabilizies"), "stabilize"), + (UniCase("attendent"), "attendant"), + (UniCase("teamifght"), "teamfight"), + (UniCase("conifguration"), "configurations"), + (UniCase("masterpeace"), "masterpiece"), + (UniCase("democracis"), "democracies"), + (UniCase("prematuraly"), "prematurely"), + (UniCase("escpaes"), "escapes"), + (UniCase("uneccesary"), "unnecessary"), + (UniCase("blatimore"), "baltimore"), + (UniCase("asburdity"), "absurdity"), + (UniCase("microtranasctions"), "microtransactions"), + (UniCase("snowbaling"), "snowballing"), + (UniCase("supervisoras"), "supervisors"), + (UniCase("starightforward"), "straightforward"), + (UniCase("disproportinate"), "disproportionate"), + (UniCase("dirbble"), "dribble"), + (UniCase("jaugars"), "jaguars"), + (UniCase("apllications"), "applications"), + (UniCase("dialogue"), "dialog"), + (UniCase("imense"), "immense"), + (UniCase("positivitely"), "positivity"), + (UniCase("laucnhed"), "launched"), + (UniCase("vacinity"), "vicinity"), + (UniCase("counterside"), "countryside"), + (UniCase("muesums"), "museums"), + (UniCase("alternatevly"), "alternately"), + (UniCase("succceeded"), "succeeded"), + (UniCase("collataral"), "collateral"), + (UniCase("underhwleming"), "underwhelming"), + (UniCase("declarase"), "declares"), + (UniCase("withrdawing"), "withdrawing"), + (UniCase("untraind"), "untrained"), + (UniCase("cilivization"), "civilizations"), + (UniCase("experiense"), "experiences"), + (UniCase("deutshcland"), "deutschland"), + (UniCase("hypocrticial"), "hypocritical"), + (UniCase("scarifices"), "sacrifices"), + (UniCase("willimas"), "williams"), + (UniCase("irracional"), "irrational"), + (UniCase("suggestes"), "suggests"), + (UniCase("aquaduct"), "aqueduct"), + (UniCase("heartbeart"), "heartbeat"), + (UniCase("entreprener"), "entrepreneurs"), + (UniCase("aqcuire"), "acquire"), + (UniCase("adventuruous"), "adventurous"), + (UniCase("organizarte"), "organizer"), + (UniCase("indespensable"), "indispensable"), + (UniCase("confidentaly"), "confidently"), + (UniCase("spectres"), "specters"), + (UniCase("dissovle"), "dissolve"), + (UniCase("inquisitior"), "inquisitor"), + (UniCase("compromissen"), "compromise"), + (UniCase("assmebling"), "assembling"), + (UniCase("critizised"), "criticized"), + (UniCase("orgainsed"), "organised"), + (UniCase("digitises"), "digitizes"), + (UniCase("supposedely"), "supposedly"), + (UniCase("assestment"), "assessment"), + (UniCase("airbore"), "airborne"), + (UniCase("recommanding"), "recommending"), + (UniCase("cathlic"), "catholic"), + (UniCase("mairlyn"), "marilyn"), + (UniCase("morgage"), "mortgage"), + (UniCase("mandarian"), "mandarin"), + (UniCase("differenly"), "differently"), + (UniCase("dialogues"), "dialogs"), + (UniCase("representes"), "represents"), + (UniCase("prospertity"), "prosperity"), + (UniCase("seahaws"), "seahawks"), + (UniCase("compagnons"), "companions"), + (UniCase("cannabil"), "cannibal"), + (UniCase("localised"), "localized"), + (UniCase("generostiy"), "generosity"), + (UniCase("prioratize"), "prioritize"), + (UniCase("molestating"), "molestation"), + (UniCase("feminsits"), "feminists"), + (UniCase("inefficeint"), "inefficient"), + (UniCase("supersition"), "supervision"), + (UniCase("theoreticaly"), "theoretically"), + (UniCase("prestigiose"), "prestigious"), + (UniCase("utiliterian"), "utilitarian"), + (UniCase("competetors"), "competitors"), + (UniCase("sentaments"), "sentiments"), + (UniCase("presumpteous"), "presumptuous"), + (UniCase("miscellanious"), "miscellaneous"), + (UniCase("mechansims"), "mechanisms"), + (UniCase("contribuer"), "contribute"), + (UniCase("prohibitons"), "prohibits"), + (UniCase("pharmacuetical"), "pharmaceutical"), + (UniCase("overwhlem"), "overwhelm"), + (UniCase("undergradute"), "undergraduate"), + (UniCase("presidentcy"), "presidency"), + (UniCase("grappel"), "grapple"), + (UniCase("valenca"), "valencia"), + (UniCase("comparitavely"), "comparatively"), + (UniCase("somethines"), "somethings"), + (UniCase("intrinsinc"), "intrinsic"), + (UniCase("victemized"), "victimized"), + (UniCase("disastrious"), "disastrous"), + (UniCase("marhsmallows"), "marshmallows"), + (UniCase("patethic"), "pathetic"), + (UniCase("outperfom"), "outperform"), + (UniCase("chromosmes"), "chromosomes"), + (UniCase("competetions"), "competitions"), + (UniCase("advertisors"), "advertisers"), + (UniCase("replacemnet"), "replacements"), + (UniCase("asssasins"), "assassins"), + (UniCase("platofrmer"), "platformer"), + (UniCase("troubelsome"), "troublesome"), + (UniCase("indigenuous"), "indigenous"), + (UniCase("pretene"), "pretense"), + (UniCase("inexpereinced"), "inexperienced"), + (UniCase("marjiuana"), "marijuana"), + (UniCase("argeument"), "arguement"), + (UniCase("unconsciosly"), "unconsciously"), + (UniCase("provicative"), "provocative"), + (UniCase("inquisator"), "inquisitor"), + (UniCase("eigth"), "eighth"), + (UniCase("immortas"), "immortals"), + (UniCase("emipres"), "empires"), + (UniCase("eulogise"), "eulogize"), + (UniCase("congragulations"), "congratulations"), + (UniCase("acquaintaces"), "acquaintances"), + (UniCase("intertaining"), "entertaining"), + (UniCase("minimini"), "minimizing"), + (UniCase("unfinsihed"), "unfinished"), + (UniCase("totalitara"), "totalitarian"), + (UniCase("inappropriatley"), "inappropriately"), + (UniCase("curriences"), "currencies"), + (UniCase("barcelets"), "bracelets"), + (UniCase("allegedely"), "allegedly"), + (UniCase("defaintly"), "defiantly"), + (UniCase("gangsterous"), "gangsters"), + (UniCase("egpytian"), "egyptian"), + (UniCase("palyboy"), "playboy"), + (UniCase("altruisim"), "altruism"), + (UniCase("konsultation"), "consultation"), + (UniCase("naseuous"), "nauseous"), + (UniCase("zealouts"), "zealous"), + (UniCase("truimph"), "triumph"), + (UniCase("replacated"), "replicated"), + (UniCase("donwvotes"), "downvotes"), + (UniCase("calcualtors"), "calculators"), + (UniCase("decembeard"), "december"), + (UniCase("singels"), "singles"), + (UniCase("erally"), "orally"), + (UniCase("regardes"), "regards"), + (UniCase("someonelse"), "someones"), + (UniCase("psychopats"), "psychopaths"), + (UniCase("rebuplican"), "republican"), + (UniCase("montnana"), "montana"), + (UniCase("rewatchimg"), "rewatching"), + (UniCase("virtiol"), "vitriol"), + (UniCase("dashbaord"), "dashboard"), + (UniCase("prohibitifs"), "prohibits"), + (UniCase("diphtong"), "diphthong"), + (UniCase("creedence"), "credence"), + (UniCase("goldburger"), "goldberg"), + (UniCase("cardnial"), "cardinal"), + (UniCase("obsessin"), "obsession"), + (UniCase("sadistc"), "sadistic"), + (UniCase("philospher"), "philosopher"), + (UniCase("salvery"), "slavery"), + (UniCase("ghandi"), "gandhi"), + (UniCase("parliamentry"), "parliamentary"), + (UniCase("administratief"), "administrative"), + (UniCase("summenor"), "summoner"), + (UniCase("foundatin"), "foundations"), + (UniCase("convulated"), "convoluted"), + (UniCase("toghether"), "together"), + (UniCase("shfiter"), "shifter"), + (UniCase("amonsgt"), "amongst"), + (UniCase("furiosuly"), "furiously"), + (UniCase("overpowed"), "overpowered"), + (UniCase("misogonistic"), "misogynistic"), + (UniCase("disapporval"), "disapproval"), + (UniCase("impossibel"), "impossibly"), + (UniCase("tawianese"), "taiwanese"), + (UniCase("receptionnist"), "receptionist"), + (UniCase("randomns"), "randoms"), + (UniCase("leciester"), "leicester"), + (UniCase("sadistisch"), "sadistic"), + (UniCase("slaughted"), "slaughtered"), + (UniCase("nationalistes"), "nationalists"), + (UniCase("lybia"), "libya"), + (UniCase("compensacion"), "compensation"), + (UniCase("intiutive"), "intuitive"), + (UniCase("climbes"), "climbers"), + (UniCase("symettric"), "symmetric"), + (UniCase("deficites"), "deficits"), + (UniCase("undergrand"), "undergrad"), + (UniCase("meditarrenean"), "mediterranean"), + (UniCase("monumentais"), "monuments"), + (UniCase("cosemtics"), "cosmetics"), + (UniCase("hystera"), "hysteria"), + (UniCase("manipualted"), "manipulated"), + (UniCase("switzerand"), "switzerland"), + (UniCase("uninspiried"), "uninspired"), + (UniCase("unequalities"), "inequalities"), + (UniCase("descendands"), "descendants"), + (UniCase("soverignty"), "sovereignty"), + (UniCase("bevelled"), "beveled"), + (UniCase("beteen"), "between"), + (UniCase("incarcerato"), "incarceration"), + (UniCase("forumlate"), "formulate"), + (UniCase("manufactuing"), "manufacturing"), + (UniCase("mediocricy"), "mediocrity"), + (UniCase("priviledge"), "privilege"), + (UniCase("franlkin"), "franklin"), + (UniCase("sktechy"), "sketchy"), + (UniCase("humoural"), "humoral"), + (UniCase("crowm"), "crown"), + (UniCase("unemploymed"), "unemployed"), + (UniCase("burtality"), "brutality"), + (UniCase("qualifiactions"), "qualification"), + (UniCase("particapate"), "participate"), + (UniCase("inaccessbile"), "inaccessible"), + (UniCase("distrubition"), "distribution"), + (UniCase("pertubations"), "perturbations"), + (UniCase("bayblon"), "babylon"), + (UniCase("greif"), "grief"), + (UniCase("comfrontation"), "confrontation"), + (UniCase("speciatly"), "specialty"), + (UniCase("adminsiter"), "administer"), + (UniCase("persuaso"), "persuasion"), + (UniCase("untrammelled"), "untrammeled"), + (UniCase("inquistior"), "inquisitor"), + (UniCase("exculding"), "excluding"), + (UniCase("contraticting"), "contradicting"), + (UniCase("anglicise"), "anglicize"), + (UniCase("regestration"), "registration"), + (UniCase("conatiners"), "containers"), + (UniCase("conpensating"), "compensating"), + (UniCase("publisherr"), "publisher"), + (UniCase("hurdels"), "hurdles"), + (UniCase("evolveos"), "evolves"), + (UniCase("emberrassing"), "embarrassing"), + (UniCase("straigthforward"), "straightforward"), + (UniCase("indifferant"), "indifferent"), + (UniCase("northen"), "northern"), + (UniCase("alchemsit"), "alchemist"), + (UniCase("discusison"), "discussions"), + (UniCase("universtiy"), "university"), + (UniCase("biogtry"), "bigotry"), + (UniCase("lesiban"), "lesbian"), + (UniCase("preferens"), "preferences"), + (UniCase("compitent"), "competent"), + (UniCase("insertas"), "inserts"), + (UniCase("competitiion"), "competition"), + (UniCase("psycology"), "psychology"), + (UniCase("monopolises"), "monopolizes"), + (UniCase("neighbourhood"), "neighborhood"), + (UniCase("alocholic"), "alcoholic"), + (UniCase("transmorgs"), "transforms"), + (UniCase("stlakers"), "stalkers"), + (UniCase("poulations"), "populations"), + (UniCase("pesticidas"), "pesticides"), + (UniCase("controleurs"), "controllers"), + (UniCase("illegimacy"), "illegitimacy"), + (UniCase("sceintific"), "scientific"), + (UniCase("motovational"), "motivational"), + (UniCase("potentialy"), "potentially"), + (UniCase("ubsubstantiated"), "unsubstantiated"), + (UniCase("fornesic"), "forensic"), + (UniCase("departmet"), "departments"), + (UniCase("contradiccion"), "contradiction"), + (UniCase("sustainabilty"), "sustainability"), + (UniCase("phillippines"), "philippines"), + (UniCase("capitalising"), "capitalizing"), + (UniCase("efel"), "evil"), + (UniCase("fundamnetally"), "fundamentally"), + (UniCase("geomety"), "geometry"), + (UniCase("tacticus"), "tactics"), + (UniCase("assmeble"), "assemble"), + (UniCase("scandimania"), "scandinavia"), + (UniCase("regrests"), "regress"), + (UniCase("generacional"), "generational"), + (UniCase("injustie"), "injustices"), + (UniCase("hystericlly"), "hysterically"), + (UniCase("experementation"), "experimentation"), + (UniCase("hemipshere"), "hemisphere"), + (UniCase("baoynet"), "bayonet"), + (UniCase("oesophaguses"), "esophaguses"), + (UniCase("frankenstiens"), "frankenstein"), + (UniCase("enterprishe"), "enterprises"), + (UniCase("depicitng"), "depicting"), + (UniCase("progressivley"), "progressively"), + (UniCase("knolwedgable"), "knowledgable"), + (UniCase("reservered"), "reserved"), + (UniCase("daugther"), "daughter"), + (UniCase("defectos"), "defects"), + (UniCase("astroanut"), "astronaut"), + (UniCase("broncoes"), "broncos"), + (UniCase("haemorrhage"), "hemorrhage"), + (UniCase("intellectualisme"), "intellectuals"), + (UniCase("brusting"), "bursting"), + (UniCase("compitability"), "compatibility"), + (UniCase("privilegeds"), "privileges"), + (UniCase("reluctanct"), "reluctant"), + (UniCase("polarise"), "polarize"), + (UniCase("hempishere"), "hemisphere"), + (UniCase("stuipder"), "stupider"), + (UniCase("franscico"), "francisco"), + (UniCase("strechting"), "stretching"), + (UniCase("ened"), "need"), + (UniCase("poralized"), "polarized"), + (UniCase("documentaion"), "documentation"), + (UniCase("scandales"), "scandals"), + (UniCase("amung"), "among"), + (UniCase("rewtched"), "wretched"), + (UniCase("unneccesary"), "unnecessary"), + (UniCase("oligarcy"), "oligarchy"), + (UniCase("garfied"), "garfield"), + (UniCase("subsidisers"), "subsidizers"), + (UniCase("sacntioned"), "sanctioned"), + (UniCase("propositon"), "proposition"), + (UniCase("complicarte"), "complicate"), + (UniCase("internacional"), "international"), + (UniCase("compositon"), "composition"), + (UniCase("mariage"), "marriage"), + (UniCase("emphatizing"), "emphasizing"), + (UniCase("intiution"), "intuition"), + (UniCase("skateborading"), "skateboarding"), + (UniCase("ploughs"), "plows"), + (UniCase("acheives"), "achieves"), + (UniCase("ciruclation"), "circulation"), + (UniCase("instramental"), "instrumental"), + (UniCase("senarios"), "scenarios"), + (UniCase("anestheisa"), "anesthesia"), + (UniCase("alse"), "else"), + (UniCase("satasfactory"), "satisfactory"), + (UniCase("electronix"), "election"), + (UniCase("beacuoup"), "beaucoup"), + (UniCase("camboida"), "cambodia"), + (UniCase("diagnoes"), "diagnose"), + (UniCase("underastimate"), "underestimate"), + (UniCase("feminitity"), "femininity"), + (UniCase("inconveniece"), "inconvenience"), + (UniCase("boardcast"), "broadcast"), + (UniCase("borader"), "broader"), + (UniCase("differeny"), "differently"), + (UniCase("manafactures"), "manufactures"), + (UniCase("sourthern"), "southern"), + (UniCase("constructief"), "constructive"), + (UniCase("vanillla"), "vanilla"), + (UniCase("misteriously"), "mysteriously"), + (UniCase("enchamtment"), "enchantment"), + (UniCase("exculsively"), "exclusively"), + (UniCase("forsaw"), "foresaw"), + (UniCase("participait"), "participant"), + (UniCase("memorising"), "memorizing"), + (UniCase("actualpy"), "actualy"), + (UniCase("awesomley"), "awesomely"), + (UniCase("casheir"), "cashier"), + (UniCase("navigatin"), "navigation"), + (UniCase("moent"), "moment"), + (UniCase("pereptually"), "perpetually"), + (UniCase("disrtibution"), "distributions"), + (UniCase("sprotsmanship"), "sportsmanship"), + (UniCase("blackshit"), "blacksmith"), + (UniCase("previaling"), "prevailing"), + (UniCase("acomplished"), "accomplished"), + (UniCase("disabels"), "disables"), + (UniCase("inudstry"), "industry"), + (UniCase("flawleslly"), "flawlessly"), + (UniCase("deliberatly"), "deliberately"), + (UniCase("misison"), "mission"), + (UniCase("preporation"), "preparation"), + (UniCase("policitians"), "politicians"), + (UniCase("misunderstandingly"), "misunderstandings"), + (UniCase("persones"), "persons"), + (UniCase("coordinaters"), "coordinates"), + (UniCase("sweetheat"), "sweetheart"), + (UniCase("interseccion"), "intersection"), + (UniCase("overloooked"), "overlooked"), + (UniCase("insepct"), "inspect"), + (UniCase("compilare"), "compiler"), + (UniCase("characterisic"), "characteristic"), + (UniCase("minamilist"), "minimalist"), + (UniCase("arsenaal"), "arsenal"), + (UniCase("attraktion"), "attraction"), + (UniCase("procalim"), "proclaim"), + (UniCase("physciatric"), "psychiatric"), + (UniCase("dymanite"), "dynamite"), + (UniCase("contructors"), "contractors"), + (UniCase("avalaible"), "available"), + (UniCase("refromist"), "reformist"), + (UniCase("unsubscrive"), "unsubscribe"), + (UniCase("assassines"), "assassins"), + (UniCase("prominately"), "prominently"), + (UniCase("compliactions"), "complication"), + (UniCase("politelly"), "politely"), + (UniCase("impropre"), "improper"), + (UniCase("intervewing"), "intervening"), + (UniCase("cardiovasculaire"), "cardiovascular"), + (UniCase("infektious"), "infectious"), + (UniCase("astronouts"), "astronauts"), + (UniCase("boardband"), "broadband"), + (UniCase("algerba"), "algebra"), + (UniCase("condescensing"), "condescension"), + (UniCase("instructores"), "instructors"), + (UniCase("manufactureras"), "manufactures"), + (UniCase("prerequites"), "prerequisite"), + (UniCase("republicon"), "republican"), + (UniCase("backgroudn"), "backgrounds"), + (UniCase("magnited"), "magnitude"), + (UniCase("presuade"), "persuade"), + (UniCase("ventilato"), "ventilation"), + (UniCase("imperfet"), "imperfect"), + (UniCase("overclcoking"), "overclocking"), + (UniCase("bureacuracy"), "bureaucracy"), + (UniCase("freindzoned"), "friendzoned"), + (UniCase("conversino"), "conversions"), + (UniCase("cannoical"), "canonical"), + (UniCase("submergerd"), "submerged"), + (UniCase("buhddists"), "buddhists"), + (UniCase("constitutues"), "constitute"), + (UniCase("linguisticos"), "linguistics"), + (UniCase("manufactoring"), "manufacturing"), + (UniCase("expandas"), "expands"), + (UniCase("converstaional"), "conversational"), + (UniCase("meranda"), "veranda"), + (UniCase("impracticle"), "impractical"), + (UniCase("substittue"), "substitutes"), + (UniCase("catogerized"), "categorized"), + (UniCase("sociopatic"), "sociopathic"), + (UniCase("breathalysed"), "breathalyzed"), + (UniCase("hypothisis"), "hypothesis"), + (UniCase("alligeance"), "allegiance"), + (UniCase("pessimisitic"), "pessimistic"), + (UniCase("continuting"), "continuing"), + (UniCase("organsims"), "organisms"), + (UniCase("badnits"), "bandits"), + (UniCase("imaginery"), "imaginary"), + (UniCase("deatils"), "details"), + (UniCase("interseption"), "interception"), + (UniCase("chassies"), "chassis"), + (UniCase("tannheill"), "tannehill"), + (UniCase("legendaryes"), "legendaries"), + (UniCase("defenisvely"), "defensively"), + (UniCase("apenines"), "apennines"), + (UniCase("rainbowers"), "rainbows"), + (UniCase("workstaiton"), "workstation"), + (UniCase("periphereals"), "peripherals"), + (UniCase("mozzaralla"), "mozzarella"), + (UniCase("parliamentery"), "parliamentary"), + (UniCase("contaminent"), "containment"), + (UniCase("corrilated"), "correlated"), + (UniCase("conteneurs"), "contenders"), + (UniCase("brithdays"), "birthdays"), + (UniCase("inflatabale"), "inflatable"), + (UniCase("authorithies"), "authorities"), + (UniCase("surreptious"), "surreptitious"), + (UniCase("fluttersky"), "fluttershy"), + (UniCase("emergenies"), "emergencies"), + (UniCase("entreprenuers"), "entrepreneurs"), + (UniCase("sympathtic"), "sympathetic"), + (UniCase("occational"), "occasional"), + (UniCase("antarcitca"), "antarctica"), + (UniCase("ideologicaly"), "ideologically"), + (UniCase("pessiary"), "pessary"), + (UniCase("keychian"), "keychain"), + (UniCase("hieghts"), "heights"), + (UniCase("arbiture"), "arbiter"), + (UniCase("philisopher"), "philosopher"), + (UniCase("hypotethically"), "hypothetically"), + (UniCase("possessess"), "possesses"), + (UniCase("thumbnal"), "thumbnails"), + (UniCase("shaprening"), "sharpening"), + (UniCase("practised"), "practiced"), + (UniCase("reprezentative"), "representative"), + (UniCase("counsilers"), "counselors"), + (UniCase("amunition"), "ammunition"), + (UniCase("mangeld"), "mangled"), + (UniCase("litre"), "liter"), + (UniCase("installling"), "installing"), + (UniCase("beacuse"), "because"), + (UniCase("knowledeable"), "knowledgable"), + (UniCase("helicoptors"), "helicopters"), + (UniCase("scorates"), "socrates"), + (UniCase("anitquated"), "antiquated"), + (UniCase("definat"), "defiant"), + (UniCase("tehtering"), "tethering"), + (UniCase("exhuasting"), "exhausting"), + (UniCase("agregate"), "aggregate"), + (UniCase("recordarle"), "recorder"), + (UniCase("stingent"), "stringent"), + (UniCase("compilato"), "compilation"), + (UniCase("endrose"), "endorse"), + (UniCase("maximisation"), "maximization"), + (UniCase("impressoin"), "impressions"), + (UniCase("oreintal"), "oriental"), + (UniCase("differance"), "difference"), + (UniCase("amendmet"), "amendments"), + (UniCase("utlimate"), "ultimate"), + (UniCase("inhabitat"), "inhabitants"), + (UniCase("expectional"), "exceptional"), + (UniCase("permites"), "permits"), + (UniCase("subscribbers"), "subscribers"), + (UniCase("coudl"), "could"), + (UniCase("reassurring"), "reassuring"), + (UniCase("americanas"), "americans"), + (UniCase("conceitual"), "conceptual"), + (UniCase("africaners"), "africans"), + (UniCase("repective"), "receptive"), + (UniCase("translationg"), "translating"), + (UniCase("idolise"), "idolize"), + (UniCase("lesbianese"), "lesbians"), + (UniCase("charecteristics"), "characteristics"), + (UniCase("portrayes"), "portrays"), + (UniCase("criticarlo"), "critical"), + (UniCase("agnsoticism"), "agnosticism"), + (UniCase("geogrpahically"), "geographically"), + (UniCase("mclarean"), "mclaren"), + (UniCase("antrhopology"), "anthropology"), + (UniCase("considerabile"), "considerable"), + (UniCase("distractons"), "distracts"), + (UniCase("infallibale"), "infallible"), + (UniCase("acomplishment"), "accomplishment"), + (UniCase("transporation"), "transportation"), + (UniCase("memoery"), "memory"), + (UniCase("mesmerise"), "mesmerize"), + (UniCase("kitites"), "kitties"), + (UniCase("jaunary"), "january"), + (UniCase("manufacutred"), "manufacture"), + (UniCase("scandalosi"), "scandals"), + (UniCase("wouldnot"), "wouldnt"), + (UniCase("comrpomising"), "compromising"), + (UniCase("cluthcing"), "clutching"), + (UniCase("wepbage"), "webpage"), + (UniCase("probalibity"), "probability"), + (UniCase("repsectfully"), "respectfully"), + (UniCase("apostraphe"), "apostrophe"), + (UniCase("intolorance"), "intolerance"), + (UniCase("inconsistant"), "inconsistent"), + (UniCase("gutiars"), "guitars"), + (UniCase("neckbreads"), "neckbeards"), + (UniCase("ancedotes"), "anecdotes"), + (UniCase("predecesores"), "predecessor"), + (UniCase("protelariat"), "proletariat"), + (UniCase("tramsforming"), "transforming"), + (UniCase("criticable"), "critical"), + (UniCase("confidentally"), "confidentially"), + (UniCase("emphasise"), "emphasize"), + (UniCase("embarressing"), "embarrassing"), + (UniCase("unnecessarely"), "unnecessarily"), + (UniCase("multiplaye"), "multiply"), + (UniCase("workfore"), "workforce"), + (UniCase("qaurterback"), "quarterback"), + (UniCase("invovled"), "involved"), + (UniCase("adpater"), "adapter"), + (UniCase("astericks"), "asterisk"), + (UniCase("terrorisim"), "terrorism"), + (UniCase("perpendiculaires"), "perpendicular"), + (UniCase("nubmers"), "numbers"), + (UniCase("facist"), "fascist"), + (UniCase("lienups"), "lineups"), + (UniCase("rhetorisch"), "rhetoric"), + (UniCase("obilgatory"), "obligatory"), + (UniCase("angirly"), "angrily"), + (UniCase("headquartes"), "headquarters"), + (UniCase("battlesaur"), "battlestar"), + (UniCase("envrionmentally"), "environmentally"), + (UniCase("introvents"), "introverts"), + (UniCase("assoicates"), "associates"), + (UniCase("girlfirend"), "girlfriend"), + (UniCase("sypmathetic"), "sympathetic"), + (UniCase("regreses"), "regress"), + (UniCase("armpitts"), "armpits"), + (UniCase("rememberance"), "remembrance"), + (UniCase("millilitre"), "milliliter"), + (UniCase("intuitivly"), "intuitively"), + (UniCase("deinitalizing"), "deinitializing"), + (UniCase("centerns"), "centers"), + (UniCase("travelodge"), "traveled"), + (UniCase("linueps"), "lineups"), + (UniCase("reorganising"), "reorganizing"), + (UniCase("metalurgy"), "metallurgy"), + (UniCase("oftenly"), "often"), + (UniCase("acousitc"), "acoustic"), + (UniCase("liberterianism"), "libertarianism"), + (UniCase("unrepetent"), "unrepentant"), + (UniCase("restorani"), "restoration"), + (UniCase("assertation"), "assertion"), + (UniCase("collectivising"), "collectivizing"), + (UniCase("imprioned"), "imprisoned"), + (UniCase("preferrs"), "prefers"), + (UniCase("hypothesising"), "hypothesizing"), + (UniCase("comissions"), "commissions"), + (UniCase("anaesthetics"), "anesthetics"), + (UniCase("presentaion"), "presentation"), + (UniCase("pertinet"), "pertinent"), + (UniCase("homeoapthy"), "homeopathy"), + (UniCase("flavoured"), "flavored"), + (UniCase("overclicked"), "overclocked"), + (UniCase("intervining"), "intervening"), + (UniCase("abuseres"), "abusers"), + (UniCase("distorsion"), "distortion"), + (UniCase("burritio"), "burrito"), + (UniCase("initmacy"), "intimacy"), + (UniCase("pentsylvania"), "pennsylvania"), + (UniCase("peodphiles"), "pedophiles"), + (UniCase("referancing"), "referencing"), + (UniCase("ambulancier"), "ambulance"), + (UniCase("disputs"), "disputes"), + (UniCase("downovted"), "downvoted"), + (UniCase("survivabilty"), "survivability"), + (UniCase("beautifullly"), "beautifully"), + (UniCase("guantanomo"), "guantanamo"), + (UniCase("discoure"), "discourse"), + (UniCase("torotise"), "tortoise"), + (UniCase("epicentre"), "epicenter"), + (UniCase("objecitves"), "objectives"), + (UniCase("positivisme"), "positives"), + (UniCase("intraspection"), "introspection"), + (UniCase("deuling"), "dueling"), + (UniCase("matieral"), "material"), + (UniCase("sophistocated"), "sophisticated"), + (UniCase("candadate"), "candidate"), + (UniCase("yorskhire"), "yorkshire"), + (UniCase("circuncision"), "circumcision"), + (UniCase("underestiamte"), "underestimated"), + (UniCase("responsbilty"), "responsibly"), + (UniCase("sacrifieced"), "sacrificed"), + (UniCase("conclusivley"), "conclusive"), + (UniCase("screenwrighter"), "screenwriter"), + (UniCase("publiaher"), "publisher"), + (UniCase("popularaty"), "popularity"), + (UniCase("overheading"), "overheating"), + (UniCase("algorithims"), "algorithm"), + (UniCase("conplimentary"), "complimentary"), + (UniCase("imigrant"), "emigrant"), + (UniCase("sulphides"), "sulfides"), + (UniCase("analysised"), "analyses"), + (UniCase("retailes"), "retailers"), + (UniCase("nostalga"), "nostalgia"), + (UniCase("anitbiotics"), "antibiotics"), + (UniCase("sensacional"), "sensational"), + (UniCase("illuminanti"), "illuminati"), + (UniCase("conversationa"), "conservation"), + (UniCase("defensen"), "defenseman"), + (UniCase("capible"), "capable"), + (UniCase("ridiculious"), "ridiculous"), + (UniCase("hopelessley"), "hopelessly"), + (UniCase("briuser"), "bruiser"), + (UniCase("respecitvely"), "respectively"), + (UniCase("benhgazi"), "benghazi"), + (UniCase("simultaneuos"), "simultaneous"), + (UniCase("cognatious"), "contagious"), + (UniCase("procedue"), "procedure"), + (UniCase("attackes"), "attackers"), + (UniCase("blackend"), "blacked"), + (UniCase("endlessley"), "endlessly"), + (UniCase("retirbution"), "retribution"), + (UniCase("stylisch"), "stylish"), + (UniCase("anphetamines"), "amphetamines"), + (UniCase("persistens"), "persists"), + (UniCase("empiracally"), "empirically"), + (UniCase("probablistic"), "probabilistic"), + (UniCase("coordonate"), "coordinate"), + (UniCase("principlas"), "principals"), + (UniCase("guardias"), "guardians"), + (UniCase("significanty"), "significantly"), + (UniCase("participantes"), "participants"), + (UniCase("motorcyce"), "motorcycles"), + (UniCase("gracefuly"), "gracefully"), + (UniCase("diagonsis"), "diagnosis"), + (UniCase("incoroprate"), "incorporate"), + (UniCase("identificativo"), "identification"), + (UniCase("conected"), "connected"), + (UniCase("grahpite"), "graphite"), + (UniCase("misoygnist"), "misogynist"), + (UniCase("carefullly"), "carefully"), + (UniCase("disrispectful"), "disrespectful"), + (UniCase("pasengers"), "passengers"), + (UniCase("mortage"), "mortgage"), + (UniCase("dicovered"), "discovered"), + (UniCase("deliverying"), "delivering"), + (UniCase("liberas"), "liberals"), + (UniCase("complaind"), "complained"), + (UniCase("contiunally"), "continually"), + (UniCase("mayalsian"), "malaysian"), + (UniCase("teleporing"), "teleporting"), + (UniCase("helicpoters"), "helicopters"), + (UniCase("shleter"), "shelter"), + (UniCase("reccommend"), "recommend"), + (UniCase("appareance"), "appearance"), + (UniCase("assingments"), "assignments"), + (UniCase("probelm"), "problem"), + (UniCase("restaruant"), "restaurant"), + (UniCase("legalizaiton"), "legalization"), + (UniCase("attemps"), "attempts"), + (UniCase("abstraccion"), "abstraction"), + (UniCase("gentlemanne"), "gentlemen"), + (UniCase("tournes"), "tourneys"), + (UniCase("bengahzi"), "benghazi"), + (UniCase("reflecters"), "reflects"), + (UniCase("disaprity"), "disparity"), + (UniCase("parmesaen"), "parmesan"), + (UniCase("infintie"), "infinite"), + (UniCase("journalisters"), "journalists"), + (UniCase("diminushing"), "diminishing"), + (UniCase("directionl"), "directional"), + (UniCase("disemination"), "dissemination"), + (UniCase("peripathetic"), "peripatetic"), + (UniCase("spacegoat"), "scapegoat"), + (UniCase("conspiricies"), "conspiracies"), + (UniCase("contributeurs"), "contributes"), + (UniCase("telphony"), "telephony"), + (UniCase("resistans"), "resistances"), + (UniCase("atorney"), "attorney"), + (UniCase("bathrom"), "bathroom"), + (UniCase("pervail"), "prevail"), + (UniCase("dispenced"), "dispensed"), + (UniCase("incorprates"), "incorporates"), + (UniCase("shartening"), "sharpening"), + (UniCase("strenghtend"), "strengthen"), + (UniCase("hounour"), "honour"), + (UniCase("seriban"), "serbian"), + (UniCase("relentlessley"), "relentlessly"), + (UniCase("fertiziler"), "fertilizer"), + (UniCase("consumiste"), "consumes"), + (UniCase("anicents"), "ancients"), + (UniCase("sentationalist"), "sensationalist"), + (UniCase("inclinaison"), "inclination"), + (UniCase("anecodtal"), "anecdotal"), + (UniCase("muniches"), "munchies"), + (UniCase("soudns"), "sounds"), + (UniCase("interesst"), "interests"), + (UniCase("enthusiastisch"), "enthusiastic"), + (UniCase("misspeeling"), "misspelling"), + (UniCase("guardiands"), "guardians"), + (UniCase("annihilited"), "annihilated"), + (UniCase("parrallelly"), "parallelly"), + (UniCase("incedentally"), "incidentally"), + (UniCase("dificulties"), "difficulties"), + (UniCase("overlaod"), "overload"), + (UniCase("persicuted"), "persecuted"), + (UniCase("jefferry"), "jeffery"), + (UniCase("agnosticisim"), "agnosticism"), + (UniCase("pennsylvanica"), "pennsylvania"), + (UniCase("experimetal"), "experimental"), + (UniCase("executionier"), "executioner"), + (UniCase("fossilis"), "fossils"), + (UniCase("minature"), "miniature"), + (UniCase("stupidy"), "stupidly"), + (UniCase("shoutot"), "shoutout"), + (UniCase("instanty"), "instantly"), + (UniCase("homniem"), "hominem"), + (UniCase("passivley"), "passively"), + (UniCase("displayfps"), "displays"), + (UniCase("literarlly"), "literary"), + (UniCase("didsapointed"), "dissapointed"), + (UniCase("susbtrate"), "substrate"), + (UniCase("recommendeds"), "recommends"), + (UniCase("figurativly"), "figuratively"), + (UniCase("accesories"), "accessories"), + (UniCase("distrubance"), "disturbance"), + (UniCase("sucessful"), "successful"), + (UniCase("downvotted"), "downvote"), + (UniCase("repulicans"), "republicans"), + (UniCase("sensationilism"), "sensationalism"), + (UniCase("prohpecies"), "prophecies"), + (UniCase("derivativos"), "derivatives"), + (UniCase("depoisted"), "deposited"), + (UniCase("exerbated"), "exacerbated"), + (UniCase("grpahics"), "graphics"), + (UniCase("unfairy"), "unfairly"), + (UniCase("browines"), "brownies"), + (UniCase("comission"), "commission"), + (UniCase("thereotical"), "theoretical"), + (UniCase("shakeapeare"), "shakespeare"), + (UniCase("surveill"), "surveil"), + (UniCase("downroaded"), "downgraded"), + (UniCase("insluated"), "insulated"), + (UniCase("automoderador"), "automoderator"), + (UniCase("partnetship"), "partnership"), + (UniCase("minimalisity"), "minimalist"), + (UniCase("crutchetts"), "crutches"), + (UniCase("incorperation"), "incorporation"), + (UniCase("comestics"), "cosmetics"), + (UniCase("wholey"), "wholly"), + (UniCase("paedophiles"), "pedophiles"), + (UniCase("islamsit"), "islamist"), + (UniCase("externalisation"), "externalization"), + (UniCase("casualites"), "casualties"), + (UniCase("tottenahm"), "tottenham"), + (UniCase("monopollies"), "monopolies"), + (UniCase("undersog"), "undergo"), + (UniCase("theatregoers"), "theatergoers"), + (UniCase("tirangles"), "triangles"), + (UniCase("interveiws"), "interviews"), + (UniCase("proporcion"), "proportion"), + (UniCase("quicklyu"), "quickly"), + (UniCase("phialdelphia"), "philadelphia"), + (UniCase("systematised"), "systematized"), + (UniCase("surroundig"), "surroundings"), + (UniCase("goreshadowing"), "foreshadowing"), + (UniCase("legalizeing"), "legalizing"), + (UniCase("enthusiasists"), "enthusiasts"), + (UniCase("acculumation"), "accumulation"), + (UniCase("insectes"), "insects"), + (UniCase("adventureous"), "adventures"), + (UniCase("wednesdy"), "wednesdays"), + (UniCase("remianing"), "remaining"), + (UniCase("rumoured"), "rumored"), + (UniCase("criticise"), "criticize"), + (UniCase("rostaing"), "roasting"), + (UniCase("darkenss"), "darkness"), + (UniCase("attachmet"), "attachments"), + (UniCase("reinforcemnets"), "reinforcements"), + (UniCase("reynlods"), "reynolds"), + (UniCase("narrativas"), "narratives"), + (UniCase("multiplayr"), "multiply"), + (UniCase("beauitful"), "beautiful"), + (UniCase("backbacking"), "backpacking"), + (UniCase("operasional"), "operational"), + (UniCase("illustratie"), "illustrate"), + (UniCase("africanos"), "africans"), + (UniCase("warcarft"), "warcraft"), + (UniCase("afflection"), "affliction"), + (UniCase("malfunciton"), "malfunction"), + (UniCase("neckbread"), "neckbeard"), + (UniCase("visting"), "visiting"), + (UniCase("pentagoon"), "pentagon"), + (UniCase("agnosticm"), "agnosticism"), + (UniCase("oversimplifiction"), "oversimplification"), + (UniCase("nutricional"), "nutritional"), + (UniCase("preferente"), "preference"), + (UniCase("toiletts"), "toilets"), + (UniCase("characterisitcs"), "characteristics"), + (UniCase("influented"), "influenced"), + (UniCase("socartes"), "socrates"), + (UniCase("vikigns"), "vikings"), + (UniCase("vegetairan"), "vegetarians"), + (UniCase("scpeter"), "scepter"), + (UniCase("enteratinment"), "entertainment"), + (UniCase("pursude"), "pursued"), + (UniCase("compeltely"), "completely"), + (UniCase("involuntarity"), "involuntary"), + (UniCase("assasinates"), "assassinates"), + (UniCase("idealised"), "idealized"), + (UniCase("phyiscally"), "physically"), + (UniCase("billbaord"), "billboard"), + (UniCase("qualifiaction"), "qualification"), + (UniCase("regulae"), "regulate"), + (UniCase("desginations"), "destinations"), + (UniCase("discriminante"), "discriminate"), + (UniCase("reowrked"), "reworked"), + (UniCase("keyborad"), "keyboard"), + (UniCase("initaite"), "initiate"), + (UniCase("restrcitions"), "restriction"), + (UniCase("dimunitive"), "diminutive"), + (UniCase("currens"), "currents"), + (UniCase("satisfactoraly"), "satisfactory"), + (UniCase("sceintists"), "scientists"), + (UniCase("subscrubed"), "subscribed"), + (UniCase("appetising"), "appetizing"), + (UniCase("neconstitutional"), "unconstitutional"), + (UniCase("hallucenation"), "hallucination"), + (UniCase("photograpic"), "photographic"), + (UniCase("atheltics"), "athletics"), + (UniCase("liquidises"), "liquidizes"), + (UniCase("convicitons"), "convictions"), + (UniCase("imperavi"), "imperative"), + (UniCase("narcissits"), "narcissist"), + (UniCase("innocuos"), "innocuous"), + (UniCase("reconcille"), "reconcile"), + (UniCase("characterizaton"), "characterization"), + (UniCase("optmizations"), "optimizations"), + (UniCase("muliple"), "multiple"), + (UniCase("venemous"), "venomous"), + (UniCase("requrement"), "requirement"), + (UniCase("barcleona"), "barcelona"), + (UniCase("introdecks"), "introduces"), + (UniCase("contianing"), "containing"), + (UniCase("academica"), "academia"), + (UniCase("misrepresentatie"), "misrepresentation"), + (UniCase("apperciates"), "appreciates"), + (UniCase("perserve"), "preserve"), + (UniCase("gangsterest"), "gangsters"), + (UniCase("flawess"), "flawless"), + (UniCase("entrepreneures"), "entrepreneurs"), + (UniCase("cyrstal"), "crystal"), + (UniCase("mannerisims"), "mannerisms"), + (UniCase("violenty"), "violently"), + (UniCase("transgener"), "transgender"), + (UniCase("admittadly"), "admittedly"), + (UniCase("trasnformers"), "transformers"), + (UniCase("mainfest"), "manifest"), + (UniCase("survaillence"), "surveillance"), + (UniCase("diagnosied"), "diagnose"), + (UniCase("premonasterians"), "premonstratensians"), + (UniCase("misundersranding"), "misunderstandings"), + (UniCase("mechanichs"), "mechanics"), + (UniCase("distributons"), "distributors"), + (UniCase("surpases"), "surpass"), + (UniCase("satisifes"), "satisfies"), + (UniCase("editorialises"), "editorializes"), + (UniCase("substite"), "substitute"), + (UniCase("misogyinst"), "misogynist"), + (UniCase("universella"), "universally"), + (UniCase("plateu"), "plateau"), + (UniCase("upstaris"), "upstairs"), + (UniCase("prioritised"), "prioritized"), + (UniCase("biogted"), "bigoted"), + (UniCase("ligthning"), "lightning"), + (UniCase("unconvential"), "unconventional"), + (UniCase("dissapeared"), "disappeared"), + (UniCase("homosexualiy"), "homosexuality"), + (UniCase("capactior"), "capacitor"), + (UniCase("unimpresssed"), "unimpressed"), + (UniCase("organiztion"), "organization"), + (UniCase("conscent"), "consent"), + (UniCase("verificacion"), "verification"), + (UniCase("functionallity"), "functionality"), + (UniCase("headses"), "headsets"), + (UniCase("impossiblely"), "impossibly"), + (UniCase("skepticles"), "skeptics"), + (UniCase("silimiar"), "similiar"), + (UniCase("arrangments"), "arrangements"), + (UniCase("unreasonal"), "unreasonably"), + (UniCase("costums"), "costumes"), + (UniCase("goddammn"), "goddamn"), + (UniCase("fufilled"), "fulfilled"), + (UniCase("particularising"), "particularizing"), + (UniCase("unreasonablely"), "unreasonably"), + (UniCase("sunderlad"), "sunderland"), + (UniCase("retribuiton"), "retribution"), + (UniCase("lastr"), "last"), + (UniCase("headhpones"), "headphones"), + (UniCase("believr"), "believer"), + (UniCase("boardway"), "broadway"), + (UniCase("nostaligc"), "nostalgic"), + (UniCase("seldomly"), "seldom"), + (UniCase("battlechip"), "battleship"), + (UniCase("condenming"), "condemning"), + (UniCase("isreali"), "israeli"), + (UniCase("vocalisations"), "vocalizations"), + (UniCase("playthroughts"), "playthroughs"), + (UniCase("socailly"), "socially"), + (UniCase("playbody"), "playboy"), + (UniCase("periphrials"), "peripherals"), + (UniCase("heatskin"), "heatsink"), + (UniCase("organzier"), "organizer"), + (UniCase("contanti"), "contacting"), + (UniCase("plasticus"), "plastics"), + (UniCase("pactivity"), "captivity"), + (UniCase("subsidary"), "subsidiary"), + (UniCase("stimulatin"), "stimulation"), + (UniCase("conspiriator"), "conspirator"), + (UniCase("determinsitic"), "deterministic"), + (UniCase("perdicament"), "predicament"), + (UniCase("krypotnite"), "kryptonite"), + (UniCase("thankyu"), "thankyou"), + (UniCase("demonises"), "demonizes"), + (UniCase("cheeseface"), "cheesecake"), + (UniCase("hypocrits"), "hypocrites"), + (UniCase("rollertoaster"), "rollercoaster"), + (UniCase("seige"), "siege"), + (UniCase("marvelos"), "marvelous"), + (UniCase("pebbels"), "pebbles"), + (UniCase("holf"), "hold"), + (UniCase("victorinos"), "victorious"), + (UniCase("systimatic"), "systematic"), + (UniCase("historisch"), "historic"), + (UniCase("intangeble"), "intangible"), + (UniCase("copenhaven"), "copenhagen"), + (UniCase("initialy"), "initially"), + (UniCase("cartrigdes"), "cartridges"), + (UniCase("intruducing"), "introducing"), + (UniCase("fantasiaing"), "fantasizing"), + (UniCase("acknowledgemnt"), "acknowledgement"), + (UniCase("aparthied"), "apartheid"), + (UniCase("flamethorwer"), "flamethrower"), + (UniCase("esperate"), "seperate"), + (UniCase("wirting"), "writing"), + (UniCase("intestinces"), "intestines"), + (UniCase("distribuent"), "distribute"), + (UniCase("everyonelse"), "everyones"), + (UniCase("looseley"), "loosely"), + (UniCase("touristas"), "tourists"), + (UniCase("sidelinjen"), "sideline"), + (UniCase("inperfections"), "imperfections"), + (UniCase("wellingotn"), "wellington"), + (UniCase("academicus"), "academics"), + (UniCase("tsuanmi"), "tsunami"), + (UniCase("afficionados"), "aficionados"), + (UniCase("descisions"), "decisions"), + (UniCase("ubiquitos"), "ubiquitous"), + (UniCase("therafter"), "thereafter"), + (UniCase("zealtos"), "zealots"), + (UniCase("heistant"), "hesitant"), + (UniCase("encryptiion"), "encryption"), + (UniCase("appointmet"), "appointments"), + (UniCase("interelated"), "interrelated"), + (UniCase("oridinarily"), "ordinarily"), + (UniCase("corrisponded"), "corresponded"), + (UniCase("doub"), "doubt"), + (UniCase("phillosophically"), "philosophically"), + (UniCase("sermonises"), "sermonizes"), + (UniCase("referede"), "referee"), + (UniCase("stabilising"), "stabilizing"), + (UniCase("sclupture"), "sculpture"), + (UniCase("volatiltiy"), "volatility"), + (UniCase("colourd"), "coloured"), + (UniCase("nueroscience"), "neuroscience"), + (UniCase("successfull"), "successful"), + (UniCase("licencing"), "licensing"), + (UniCase("porftolio"), "portfolio"), + (UniCase("continutity"), "continuity"), + (UniCase("rancour"), "rancor"), + (UniCase("unfarily"), "unfairly"), + (UniCase("verisons"), "versions"), + (UniCase("demonstrabil"), "demonstrably"), + (UniCase("hispanicos"), "hispanics"), + (UniCase("expedito"), "expedition"), + (UniCase("offereings"), "offerings"), + (UniCase("reencarnation"), "reincarnation"), + (UniCase("capitalis"), "capitals"), + (UniCase("magnetise"), "magnetize"), + (UniCase("extraordianry"), "extraordinary"), + (UniCase("dusgustingly"), "disgustingly"), + (UniCase("misisonaries"), "missionaries"), + (UniCase("aborigene"), "aborigine"), + (UniCase("norhern"), "northern"), + (UniCase("conservitives"), "conservatives"), + (UniCase("descision"), "decision"), + (UniCase("investmet"), "investments"), + (UniCase("perosnality"), "personality"), + (UniCase("philosophycally"), "philosophically"), + (UniCase("ingeniuty"), "ingenuity"), + (UniCase("identicial"), "identical"), + (UniCase("condolenses"), "condolences"), + (UniCase("implimenation"), "implementation"), + (UniCase("argiculture"), "agriculture"), + (UniCase("socialicing"), "socializing"), + (UniCase("sctosman"), "scotsman"), + (UniCase("photograhs"), "photographs"), + (UniCase("intervension"), "intervention"), + (UniCase("prefering"), "preferring"), + (UniCase("boraden"), "broaden"), + (UniCase("perjery"), "perjury"), + (UniCase("unfavourably"), "unfavorably"), + (UniCase("immortalis"), "immortals"), + (UniCase("personalised"), "personalized"), + (UniCase("vioalting"), "violating"), + (UniCase("transformas"), "transforms"), + (UniCase("memorie"), "memory"), + (UniCase("fantasticaly"), "fantastically"), + (UniCase("fanatsies"), "fantasies"), + (UniCase("oxidisation"), "oxidization"), + (UniCase("awkawrdly"), "awkwardly"), + (UniCase("liquides"), "liquids"), + (UniCase("infrastructuur"), "infrastructure"), + (UniCase("liquidised"), "liquidized"), + (UniCase("moustached"), "mustached"), + (UniCase("realtives"), "relatives"), + (UniCase("torrentes"), "torrents"), + (UniCase("acceptabelt"), "acceptable"), + (UniCase("melodieuse"), "melodies"), + (UniCase("unrealistisch"), "unrealistic"), + (UniCase("relaised"), "realised"), + (UniCase("hurldes"), "hurdles"), + (UniCase("audiobok"), "audiobook"), + (UniCase("libertaryanism"), "libertarianism"), + (UniCase("skpeticism"), "skepticism"), + (UniCase("fertelizer"), "fertilizer"), + (UniCase("seuxalized"), "sexualized"), + (UniCase("compremises"), "compromises"), + (UniCase("thiestic"), "theistic"), + (UniCase("dogfather"), "godfather"), + (UniCase("precentage"), "percentage"), + (UniCase("comptetion"), "completion"), + (UniCase("califnoria"), "californian"), + (UniCase("assembley"), "assembly"), + (UniCase("continens"), "continents"), + (UniCase("experementing"), "experimenting"), + (UniCase("extraordinairily"), "extraordinarily"), + (UniCase("algorithems"), "algorithm"), + (UniCase("reinitalising"), "reinitialising"), + (UniCase("approachs"), "approaches"), + (UniCase("firefigher"), "firefighter"), + (UniCase("delusionally"), "delusively"), + (UniCase("irrisponsible"), "irresponsible"), + (UniCase("percpetions"), "perceptions"), + (UniCase("addmission"), "admission"), + (UniCase("reevalulate"), "reevaluate"), + (UniCase("centralised"), "centralized"), + (UniCase("provisios"), "provisions"), + (UniCase("collabarate"), "collaborate"), + (UniCase("genisues"), "geniuses"), + (UniCase("alocholism"), "alcoholism"), + (UniCase("accoustic"), "acoustic"), + (UniCase("thermodynamcs"), "thermodynamics"), + (UniCase("missonary"), "missionary"), + (UniCase("indestructuble"), "indestructible"), + (UniCase("significently"), "significantly"), + (UniCase("acomplish"), "accomplish"), + (UniCase("succsessfull"), "successful"), + (UniCase("cateogrize"), "categorized"), + (UniCase("versatilty"), "versatility"), + (UniCase("overlordes"), "overlords"), + (UniCase("encountred"), "encountered"), + (UniCase("premiare"), "premier"), + (UniCase("circiuts"), "circuits"), + (UniCase("vibratr"), "vibrator"), + (UniCase("misogonyst"), "misogynist"), + (UniCase("compensatin"), "compensation"), + (UniCase("influens"), "influences"), + (UniCase("retunred"), "returned"), + (UniCase("psychaitric"), "psychiatric"), + (UniCase("indviduals"), "individuals"), + (UniCase("bulletprrof"), "bulletproof"), + (UniCase("copmetitors"), "competitors"), + (UniCase("inhabitats"), "inhabitants"), + (UniCase("homesexuality"), "homosexuality"), + (UniCase("detuschland"), "deutschland"), + (UniCase("mulitnationals"), "multinational"), + (UniCase("humanitarna"), "humanitarian"), + (UniCase("inquisito"), "inquisition"), + (UniCase("contentos"), "contents"), + (UniCase("contibutes"), "contributes"), + (UniCase("simplistisch"), "simplistic"), + (UniCase("portalus"), "portals"), + (UniCase("normalisation"), "normalization"), + (UniCase("initaliser"), "initialiser"), + (UniCase("geographicly"), "geographical"), + (UniCase("implicatie"), "implicit"), + (UniCase("describiste"), "describes"), + (UniCase("tanlged"), "tangled"), + (UniCase("infermon"), "inferno"), + (UniCase("migriane"), "migraine"), + (UniCase("maraudeur"), "marauder"), + (UniCase("legalizaing"), "legalizing"), + (UniCase("behaviorial"), "behavioral"), + (UniCase("decmeber"), "december"), + (UniCase("collares"), "collars"), + (UniCase("reched"), "reached"), + (UniCase("infogrpahics"), "infographic"), + (UniCase("intrisinc"), "intrinsic"), + (UniCase("generalizacion"), "generalization"), + (UniCase("emualtion"), "emulation"), + (UniCase("marganilized"), "marginalized"), + (UniCase("thermodynmaics"), "thermodynamics"), + (UniCase("communistes"), "communists"), + (UniCase("recruitcs"), "recruits"), + (UniCase("wednseday"), "wednesday"), + (UniCase("communicatin"), "communications"), + (UniCase("cannibalise"), "cannibalize"), + (UniCase("exlcusive"), "exclusive"), + (UniCase("clhorine"), "chlorine"), + (UniCase("proletariant"), "proletariat"), + (UniCase("unforgiveable"), "unforgivable"), + (UniCase("syphons"), "siphons"), + (UniCase("clas"), "class"), + (UniCase("similiarties"), "similarities"), + (UniCase("metrololitan"), "metropolitan"), + (UniCase("theroem"), "theorem"), + (UniCase("lighthorse"), "lighthouse"), + (UniCase("inconsistance"), "inconsistency"), + (UniCase("supervisior"), "supervisor"), + (UniCase("consonent"), "consonant"), + (UniCase("disapperead"), "disappeared"), + (UniCase("sentamental"), "sentimental"), + (UniCase("unbreakble"), "unbreakable"), + (UniCase("interneters"), "internets"), + (UniCase("distructive"), "destructive"), + (UniCase("unpopluar"), "unpopular"), + (UniCase("activly"), "actively"), + (UniCase("modifikation"), "modification"), + (UniCase("crusive"), "cursive"), + (UniCase("simplyfied"), "simplified"), + (UniCase("expidetion"), "expedition"), + (UniCase("alcohalism"), "alcoholism"), + (UniCase("compination"), "compilation"), + (UniCase("definatively"), "definitively"), + (UniCase("fantasyzing"), "fantasizing"), + (UniCase("dortmud"), "dortmund"), + (UniCase("depressie"), "depressive"), + (UniCase("transitors"), "transistor"), + (UniCase("paragrpahs"), "paragraphs"), + (UniCase("representitive"), "representative"), + (UniCase("associationg"), "associating"), + (UniCase("oppinion"), "opinion"), + (UniCase("microtransactiosn"), "microtransactions"), + (UniCase("revitalising"), "revitalizing"), + (UniCase("expertas"), "experts"), + (UniCase("distriubtion"), "distributions"), + (UniCase("defitnaly"), "defiantly"), + (UniCase("vunlerabilities"), "vulnerabilities"), + (UniCase("brutailty"), "brutality"), + (UniCase("euhporic"), "euphoric"), + (UniCase("supporre"), "supporters"), + (UniCase("squritle"), "squirtle"), + (UniCase("repeatedy"), "repeatedly"), + (UniCase("celebratin"), "celebration"), + (UniCase("regularises"), "regularizes"), + (UniCase("refereees"), "referees"), + (UniCase("understandablely"), "understandably"), + (UniCase("equilibrum"), "equilibrium"), + (UniCase("prelimanary"), "preliminary"), + (UniCase("publicani"), "publication"), + (UniCase("platfroms"), "platforms"), + (UniCase("perhiperal"), "peripheral"), + (UniCase("interacs"), "interacts"), + (UniCase("perpertated"), "perpetuated"), + (UniCase("muslces"), "muscles"), + (UniCase("beliveing"), "believing"), + (UniCase("mandase"), "mandates"), + (UniCase("selectie"), "selective"), + (UniCase("outskirters"), "outskirts"), + (UniCase("eighten"), "eighteen"), + (UniCase("inflitrator"), "infiltrator"), + (UniCase("godspeeed"), "godspeed"), + (UniCase("montanous"), "mountainous"), + (UniCase("uninsipred"), "uninspired"), + (UniCase("realisim"), "realism"), + (UniCase("occurance"), "occurrence"), + (UniCase("signalising"), "signalizing"), + (UniCase("spammade"), "spammed"), + (UniCase("journalistens"), "journalists"), + (UniCase("inflateble"), "inflatable"), + (UniCase("threates"), "threatens"), + (UniCase("connexion"), "connection"), + (UniCase("delapidated"), "dilapidated"), + (UniCase("insensitve"), "insensitive"), + (UniCase("compatibil"), "compatible"), + (UniCase("humillated"), "humiliated"), + (UniCase("reminisent"), "reminiscent"), + (UniCase("inapproprate"), "inappropriate"), + (UniCase("bueraucratic"), "bureaucratic"), + (UniCase("resmebles"), "resembles"), + (UniCase("celebracion"), "celebration"), + (UniCase("depsise"), "despise"), + (UniCase("unfreindly"), "unfriendly"), + (UniCase("audibel"), "audible"), + (UniCase("distuingished"), "distinguished"), + (UniCase("simiilar"), "similiar"), + (UniCase("bigfooot"), "bigfoot"), + (UniCase("firebals"), "fireballs"), + (UniCase("simplyifing"), "simplifying"), + (UniCase("classis"), "classics"), + (UniCase("forgivenness"), "forgiveness"), + (UniCase("incorparated"), "incorporated"), + (UniCase("periodos"), "periods"), + (UniCase("improvemnt"), "improvement"), + (UniCase("carthagian"), "carthaginian"), + (UniCase("humanitatian"), "humanitarian"), + (UniCase("varification"), "verification"), + (UniCase("objectiviser"), "objectives"), + (UniCase("frankensten"), "frankenstein"), + (UniCase("fortunatly"), "fortunately"), + (UniCase("developped"), "developed"), + (UniCase("promethous"), "prometheus"), + (UniCase("devaint"), "deviant"), + (UniCase("creatien"), "creatine"), + (UniCase("exercizing"), "exercising"), + (UniCase("possesseurs"), "possesses"), + (UniCase("incarseration"), "incarceration"), + (UniCase("pronunication"), "pronunciation"), + (UniCase("inadquate"), "inadequate"), + (UniCase("anitque"), "antique"), + (UniCase("blueprintcss"), "blueprints"), + (UniCase("transito"), "transition"), + (UniCase("morrisette"), "morissette"), + (UniCase("pregnanices"), "pregnancies"), + (UniCase("mobilitiy"), "mobility"), + (UniCase("registartion"), "registration"), + (UniCase("writting"), "writing"), + (UniCase("paradyse"), "parades"), + (UniCase("cannotations"), "connotations"), + (UniCase("similari"), "similiar"), + (UniCase("casulaty"), "casualty"), + (UniCase("rationalised"), "rationalized"), + (UniCase("primairly"), "primarily"), + (UniCase("conversacional"), "conversational"), + (UniCase("chihuahuita"), "chihuahua"), + (UniCase("conicidence"), "coincidence"), + (UniCase("oppossed"), "opposed"), + (UniCase("mediteranean"), "mediterranean"), + (UniCase("analogeous"), "analogous"), + (UniCase("electornic"), "electronic"), + (UniCase("distractiv"), "district"), + (UniCase("unreliabe"), "unreliable"), + (UniCase("queitly"), "quietly"), + (UniCase("constitition"), "constitution"), + (UniCase("contraccion"), "contraction"), + (UniCase("glichted"), "glitched"), + (UniCase("contaminen"), "containment"), + (UniCase("cooporation"), "cooperation"), + (UniCase("caluclations"), "calculations"), + (UniCase("subconsicous"), "subconscious"), + (UniCase("principias"), "principals"), + (UniCase("misspelld"), "misspelled"), + (UniCase("satric"), "satiric"), + (UniCase("sucide"), "suicide"), + (UniCase("equalised"), "equalized"), + (UniCase("partick"), "patrick"), + (UniCase("panedmic"), "pandemic"), + (UniCase("temperatuur"), "temperature"), + (UniCase("torrentbig"), "torrenting"), + (UniCase("udpated"), "updated"), + (UniCase("preconcieve"), "preconceived"), + (UniCase("triangls"), "triangles"), + (UniCase("immediatly"), "immediately"), + (UniCase("actresess"), "actresses"), + (UniCase("kentuckey"), "kentucky"), + (UniCase("minniapolis"), "minneapolis"), + (UniCase("hypotherical"), "hypothetical"), + (UniCase("internetts"), "internets"), + (UniCase("architecte"), "architecture"), + (UniCase("patrolls"), "patrols"), + (UniCase("baragin"), "bargain"), + (UniCase("referening"), "referencing"), + (UniCase("phenomenen"), "phenomenon"), + (UniCase("embassey"), "embassy"), + (UniCase("flatterd"), "flattered"), + (UniCase("indicatie"), "indicative"), + (UniCase("remembrence"), "remembrance"), + (UniCase("imagenary"), "imaginary"), + (UniCase("rotuers"), "routers"), + (UniCase("counselling"), "counseling"), + (UniCase("interpretaciones"), "interpretations"), + (UniCase("lieved"), "lived"), + (UniCase("underwright"), "underweight"), + (UniCase("expendetures"), "expenditures"), + (UniCase("philippinos"), "philippines"), + (UniCase("assaultes"), "assaults"), + (UniCase("horizones"), "horizons"), + (UniCase("paralyses"), "paralyzes"), + (UniCase("importanly"), "importantly"), + (UniCase("desentizised"), "desensitized"), + (UniCase("campain"), "campaign"), + (UniCase("sciense"), "sciences"), + (UniCase("probabilty"), "probability"), + (UniCase("pharmaceutial"), "pharmaceutical"), + (UniCase("contribuem"), "contribute"), + (UniCase("mcalren"), "mclaren"), + (UniCase("continants"), "continents"), + (UniCase("playthorughs"), "playthroughs"), + (UniCase("shenanegans"), "shenanigans"), + (UniCase("brigthness"), "brightness"), + (UniCase("hoemopathy"), "homeopathy"), + (UniCase("redistributivo"), "redistribution"), + (UniCase("permieter"), "perimeter"), + (UniCase("socialisation"), "socialization"), + (UniCase("uncomforyable"), "uncomfortably"), + (UniCase("lanuches"), "launches"), + (UniCase("trunlde"), "trundle"), + (UniCase("astronautas"), "astronauts"), + (UniCase("defanitely"), "definately"), + (UniCase("wholeheartedy"), "wholeheartedly"), + (UniCase("sitautional"), "situational"), + (UniCase("recommandations"), "recommendations"), + (UniCase("exeuctioner"), "executioner"), + (UniCase("unilaterlly"), "unilaterally"), + (UniCase("discusssion"), "discussions"), + (UniCase("tratiors"), "traitors"), + (UniCase("noramlly"), "normally"), + (UniCase("initialling"), "initialing"), + (UniCase("convertion"), "conversion"), + (UniCase("convential"), "conventional"), + (UniCase("destrucion"), "destruction"), + (UniCase("oversimplifacation"), "oversimplification"), + (UniCase("evolutionairy"), "evolutionary"), + (UniCase("christams"), "christmas"), + (UniCase("sohpomore"), "sophomore"), + (UniCase("demonstates"), "demonstrates"), + (UniCase("pattented"), "patented"), + (UniCase("irrationel"), "irrational"), + (UniCase("itemises"), "itemizes"), + (UniCase("paranthesis"), "parenthesis"), + (UniCase("dealying"), "delaying"), + (UniCase("cellulaire"), "cellular"), + (UniCase("aclhemist"), "alchemist"), + (UniCase("attemtping"), "attempting"), + (UniCase("theoligical"), "theological"), + (UniCase("zaelots"), "zealots"), + (UniCase("supplamental"), "supplemental"), + (UniCase("collecton"), "collection"), + (UniCase("editorialising"), "editorializing"), + (UniCase("metaphorics"), "metaphors"), + (UniCase("internationalising"), "internationalizing"), + (UniCase("sucidial"), "suicidal"), + (UniCase("steryotype"), "stereotype"), + (UniCase("productioin"), "productions"), + (UniCase("infornt"), "infront"), + (UniCase("commonhealth"), "commonwealth"), + (UniCase("pharmaseutical"), "pharmaceutical"), + (UniCase("inconsequentional"), "inconsequential"), + (UniCase("investirat"), "investigator"), + (UniCase("commiteted"), "commited"), + (UniCase("undergated"), "underrated"), + (UniCase("activistion"), "activision"), + (UniCase("overtun"), "overturn"), + (UniCase("graphie"), "graphite"), + (UniCase("conotations"), "connotations"), + (UniCase("sunggle"), "snuggle"), + (UniCase("temperture"), "temperature"), + (UniCase("dysphoira"), "dysphoria"), + (UniCase("associaton"), "association"), + (UniCase("bangaldeshi"), "bangladesh"), + (UniCase("doccumented"), "documented"), + (UniCase("antagonising"), "antagonizing"), + (UniCase("moleculair"), "molecular"), + (UniCase("congergation"), "congregation"), + (UniCase("headests"), "headsets"), + (UniCase("facisnation"), "fascination"), + (UniCase("dictateurs"), "dictates"), + (UniCase("nationaal"), "national"), + (UniCase("negativeity"), "negativity"), + (UniCase("relpased"), "relapsed"), + (UniCase("counterporductive"), "counterproductive"), + (UniCase("comiting"), "committing"), + (UniCase("martain"), "martian"), + (UniCase("helicoptor"), "helicopter"), + (UniCase("regerts"), "regrets"), + (UniCase("indavertently"), "inadvertently"), + (UniCase("decieved"), "deceived"), + (UniCase("apocalypes"), "apocalypse"), + (UniCase("positivitey"), "positivity"), + (UniCase("peroidic"), "periodic"), + (UniCase("somethingis"), "somethings"), + (UniCase("pitchferks"), "pitchforks"), + (UniCase("clitoridis"), "clitoris"), + (UniCase("conenctivity"), "connectivity"), + (UniCase("attactments"), "attachments"), + (UniCase("inculded"), "included"), + (UniCase("uniquey"), "uniquely"), + (UniCase("pathifnder"), "pathfinder"), + (UniCase("commandes"), "commands"), + (UniCase("bethdesa"), "bethesda"), + (UniCase("naturalises"), "naturalizes"), + (UniCase("diverisfy"), "diversify"), + (UniCase("warrandyte"), "warranty"), + (UniCase("vehicels"), "vehicles"), + (UniCase("counterfact"), "counteract"), + (UniCase("sermonising"), "sermonizing"), + (UniCase("konfiguration"), "configuration"), + (UniCase("depositers"), "deposits"), + (UniCase("negligance"), "negligence"), + (UniCase("armagideon"), "armageddon"), + (UniCase("skillhosts"), "skillshots"), + (UniCase("synonymos"), "synonymous"), + (UniCase("dahsboard"), "dashboard"), + (UniCase("irreversibelt"), "irreversible"), + (UniCase("burssels"), "brussels"), + (UniCase("explicatii"), "explicit"), + (UniCase("celibrations"), "celebrations"), + (UniCase("jalibreak"), "jailbreak"), + (UniCase("architexture"), "architecture"), + (UniCase("decriminalised"), "decriminalized"), + (UniCase("constitued"), "constitute"), + (UniCase("resovled"), "resolved"), + (UniCase("contentes"), "contents"), + (UniCase("bouyancy"), "buoyancy"), + (UniCase("multimational"), "multinational"), + (UniCase("brutalises"), "brutalizes"), + (UniCase("ailmony"), "alimony"), + (UniCase("septmeber"), "september"), + (UniCase("allegric"), "allergic"), + (UniCase("profitabil"), "profitable"), + (UniCase("courtesty"), "courtesy"), + (UniCase("subsidiser"), "subsidizer"), + (UniCase("contianer"), "container"), + (UniCase("jeircho"), "jericho"), + (UniCase("partice"), "particle"), + (UniCase("definetily"), "definately"), + (UniCase("juggernault"), "juggernaut"), + (UniCase("cocktailers"), "cocktails"), + (UniCase("additinally"), "additionally"), + (UniCase("sorpanos"), "sopranos"), + (UniCase("defintaley"), "definately"), + (UniCase("taliored"), "tailored"), + (UniCase("combonations"), "combinations"), + (UniCase("cartriages"), "cartridges"), + (UniCase("billionaries"), "billionaires"), + (UniCase("capitalsim"), "capitalism"), + (UniCase("feitshes"), "fetishes"), + (UniCase("pinoneered"), "pioneered"), + (UniCase("notciable"), "noticable"), + (UniCase("sicne"), "since"), + (UniCase("probablly"), "probably"), + (UniCase("pressurising"), "pressurizing"), + (UniCase("whisperes"), "whispers"), + (UniCase("criticisze"), "criticise"), + (UniCase("staggaring"), "staggering"), + (UniCase("nieghbourhood"), "neighbourhood"), + (UniCase("literative"), "literate"), + (UniCase("suspitions"), "suspicions"), + (UniCase("reedeming"), "redeeming"), + (UniCase("definately"), "definitely"), + (UniCase("apreture"), "aperture"), + (UniCase("carcas"), "carcass"), + (UniCase("indicateurs"), "indicates"), + (UniCase("misudnerstanding"), "misunderstandings"), + (UniCase("asborbing"), "absorbing"), + (UniCase("benevloent"), "benevolent"), + (UniCase("porshan"), "portion"), + (UniCase("gunslingner"), "gunslinger"), + (UniCase("accountent"), "accountant"), + (UniCase("philisophy"), "philosophy"), + (UniCase("actaully"), "actually"), + (UniCase("wininpeg"), "winnipeg"), + (UniCase("energis"), "energies"), + (UniCase("chromisome"), "chromosome"), + (UniCase("capitalizaton"), "capitalization"), + (UniCase("legalise"), "legalize"), + (UniCase("frontlinies"), "frontline"), + (UniCase("desinging"), "designing"), + (UniCase("authenticaton"), "authentication"), + (UniCase("reorganised"), "reorganized"), + (UniCase("posseses"), "possesses"), + (UniCase("complecated"), "complicated"), + (UniCase("ungreatfull"), "ungrateful"), + (UniCase("effectivenss"), "effectiveness"), + (UniCase("presidenta"), "presidential"), + (UniCase("transcrits"), "transcripts"), + (UniCase("territoires"), "territories"), + (UniCase("overloard"), "overload"), + (UniCase("lateration"), "alteration"), + (UniCase("charatable"), "charitable"), + (UniCase("climats"), "climates"), + (UniCase("residude"), "residue"), + (UniCase("recgonizing"), "recognizing"), + (UniCase("pysched"), "psyched"), + (UniCase("comparason"), "comparison"), + (UniCase("defiantley"), "definately"), + (UniCase("rhapsodising"), "rhapsodizing"), + (UniCase("backrounds"), "backgrounds"), + (UniCase("undersatnd"), "understands"), + (UniCase("gourment"), "gourmet"), + (UniCase("polinators"), "pollinators"), + (UniCase("psychedelicious"), "psychedelics"), + (UniCase("observerd"), "observed"), + (UniCase("crypitc"), "cryptic"), + (UniCase("corrispondants"), "correspondents"), + (UniCase("latitue"), "latitude"), + (UniCase("percission"), "percussion"), + (UniCase("endangerd"), "endangered"), + (UniCase("commercialises"), "commercializes"), + (UniCase("unecessary"), "unnecessary"), + (UniCase("skatebored"), "skateboard"), + (UniCase("beatels"), "beatles"), + (UniCase("barabrian"), "barbarian"), + (UniCase("casuing"), "causing"), + (UniCase("deputising"), "deputizing"), + (UniCase("clucthing"), "clutching"), + (UniCase("dumbfoundeads"), "dumbfounded"), + (UniCase("outperfoms"), "outperform"), + (UniCase("propiertary"), "proprietary"), + (UniCase("ierland"), "ireland"), + (UniCase("thunderolt"), "thunderbolt"), + (UniCase("funcitonal"), "functional"), + (UniCase("incomptable"), "incompatible"), + (UniCase("lingusitic"), "linguistics"), + (UniCase("momentaraly"), "momentarily"), + (UniCase("nutrutious"), "nutritious"), + (UniCase("antartic"), "antarctic"), + (UniCase("relativley"), "relatively"), + (UniCase("anthropolgist"), "anthropologist"), + (UniCase("intermedite"), "intermediate"), + (UniCase("sucseptible"), "susceptible"), + (UniCase("anomolies"), "anomalies"), + (UniCase("posioned"), "poisoned"), + (UniCase("experimentacion"), "experimentation"), + (UniCase("assualted"), "assaulted"), + (UniCase("unfortunatelly"), "unfortunately"), + (UniCase("btiches"), "bitches"), + (UniCase("sociapaths"), "sociopaths"), + (UniCase("characterises"), "characterizes"), + (UniCase("subjest"), "subjects"), + (UniCase("proletariaat"), "proletariat"), + (UniCase("beliavable"), "believable"), + (UniCase("gruellingly"), "gruelingly"), + (UniCase("meixcan"), "mexican"), + (UniCase("enforceing"), "enforcing"), + (UniCase("anoerxic"), "anorexic"), + (UniCase("balcked"), "blacked"), + (UniCase("stimulli"), "stimuli"), + (UniCase("straightn"), "straighten"), + (UniCase("squirte"), "squirtle"), + (UniCase("sucesful"), "successful"), + (UniCase("fantasises"), "fantasizes"), + (UniCase("puncutation"), "punctuation"), + (UniCase("floruide"), "fluoride"), + (UniCase("portoflio"), "portfolio"), + (UniCase("presentatin"), "presentations"), + (UniCase("imperialfist"), "imperialist"), + (UniCase("happends"), "happens"), + (UniCase("combinatino"), "combinations"), + (UniCase("arbitrarly"), "arbitrary"), + (UniCase("disicplined"), "disciplined"), + (UniCase("practioners"), "practitioners"), + (UniCase("ideologins"), "ideologies"), + (UniCase("irriration"), "irritation"), + (UniCase("manifestanti"), "manifestation"), + (UniCase("microtransacations"), "microtransactions"), + (UniCase("criterias"), "criteria"), + (UniCase("manufacturor"), "manufacturer"), + (UniCase("fingerpoints"), "fingerprints"), + (UniCase("intuituvely"), "intuitively"), + (UniCase("conjuction"), "conjunction"), + (UniCase("crocodilule"), "crocodile"), + (UniCase("infrastrucutre"), "infrastructure"), + (UniCase("inappropraite"), "inappropriate"), + (UniCase("electornics"), "electronics"), + (UniCase("narcisisst"), "narcissist"), + (UniCase("innovaties"), "innovate"), + (UniCase("hamburguers"), "hamburgers"), + (UniCase("combatabts"), "combatants"), + (UniCase("definetlely"), "definetly"), + (UniCase("spontaniously"), "spontaneously"), + (UniCase("repeticion"), "repetition"), + (UniCase("sympathethic"), "sympathetic"), + (UniCase("recoginzed"), "recognized"), + (UniCase("nkow"), "know"), + (UniCase("abberviation"), "abbreviation"), + (UniCase("reflexs"), "reflexes"), + (UniCase("shaddow"), "shadow"), + (UniCase("dolphinese"), "dolphins"), + (UniCase("respecte"), "respective"), + (UniCase("amplifly"), "amplify"), + (UniCase("yeilding"), "yielding"), + (UniCase("suddeny"), "suddenly"), + (UniCase("cinematagrophy"), "cinematography"), + (UniCase("polute"), "pollute"), + (UniCase("quantatitive"), "quantitative"), + (UniCase("interpretarse"), "interpreter"), + (UniCase("stockpilled"), "stockpile"), + (UniCase("differantiation"), "differentiation"), + (UniCase("mouldiest"), "moldiest"), + (UniCase("demonstrerat"), "demonstrate"), + (UniCase("contageous"), "contagious"), + (UniCase("alunimum"), "aluminum"), + (UniCase("agriculteurs"), "agriculture"), + (UniCase("thunberbolt"), "thunderbolt"), + (UniCase("reptuation"), "reputation"), + (UniCase("equivelents"), "equivalents"), + (UniCase("dunegons"), "dungeons"), + (UniCase("streichung"), "stretching"), + (UniCase("ukraininas"), "ukrainians"), + (UniCase("deliviring"), "delivering"), + (UniCase("uninitalizable"), "uninitializable"), + (UniCase("psychistrist"), "psychiatrist"), + (UniCase("recurited"), "recruited"), + (UniCase("probabe"), "probable"), + (UniCase("rekenton"), "renekton"), + (UniCase("tiawanese"), "taiwanese"), + (UniCase("asbestoast"), "asbestos"), + (UniCase("dysfunktional"), "dysfunctional"), + (UniCase("techinican"), "technician"), + (UniCase("privilage"), "privilege"), + (UniCase("vairant"), "variant"), + (UniCase("immigraiton"), "immigration"), + (UniCase("masacra"), "mascara"), + (UniCase("loenard"), "leonard"), + (UniCase("agianst"), "against"), + (UniCase("paederast"), "pederast"), + (UniCase("chillend"), "chilled"), + (UniCase("philosophises"), "philosophizes"), + (UniCase("hospitalising"), "hospitalizing"), + (UniCase("conpensation"), "compensation"), + (UniCase("stimilants"), "stimulants"), + (UniCase("progressino"), "progressions"), + (UniCase("contactos"), "contacts"), + (UniCase("pathologial"), "pathological"), + (UniCase("instanciate"), "instantiate"), + (UniCase("determinanti"), "determination"), + (UniCase("garfeild"), "garfield"), + (UniCase("partchett"), "pratchett"), + (UniCase("sophisticted"), "sophisticated"), + (UniCase("sociopathis"), "sociopaths"), + (UniCase("vunlerable"), "vulnerable"), + (UniCase("proselytisers"), "proselytizers"), + (UniCase("bankruptsy"), "bankruptcy"), + (UniCase("professsion"), "professions"), + (UniCase("racisst"), "racists"), + (UniCase("popoulation"), "population"), + (UniCase("diasbling"), "disabling"), + (UniCase("tramautized"), "traumatized"), + (UniCase("uncomfrotably"), "uncomfortably"), + (UniCase("impoversihed"), "impoverished"), + (UniCase("rollercoatser"), "rollercoaster"), + (UniCase("disrespecing"), "disrespecting"), + (UniCase("lerans"), "learns"), + (UniCase("convers"), "converts"), + (UniCase("careing"), "caring"), + (UniCase("nautres"), "natures"), + (UniCase("menstraul"), "menstrual"), + (UniCase("denomonation"), "denomination"), + (UniCase("suggestons"), "suggests"), + (UniCase("exculsivity"), "exclusivity"), + (UniCase("monteize"), "monetize"), + (UniCase("announcemnts"), "announcements"), + (UniCase("goegraphically"), "geographically"), + (UniCase("scandaniva"), "scandinavia"), + (UniCase("liverpoool"), "liverpool"), + (UniCase("issueing"), "issuing"), + (UniCase("elemantary"), "elementary"), + (UniCase("fatiuge"), "fatigue"), + (UniCase("productoin"), "productions"), + (UniCase("torelable"), "tolerable"), + (UniCase("maintian"), "maintain"), + (UniCase("decsended"), "descended"), + (UniCase("restaraunteur"), "restaurateur"), + (UniCase("sphagetti"), "spaghetti"), + (UniCase("implausibile"), "implausible"), + (UniCase("repsectable"), "respectable"), + (UniCase("paramters"), "parameters"), + (UniCase("depostis"), "deposits"), + (UniCase("refference"), "reference"), + (UniCase("commandered"), "commanded"), + (UniCase("buddishm"), "buddhism"), + (UniCase("manipulatin"), "manipulation"), + (UniCase("procesd"), "proceeds"), + (UniCase("bombarment"), "bombardment"), + (UniCase("corrispondence"), "correspondence"), + (UniCase("conversiones"), "conversions"), + (UniCase("visualisation"), "visualization"), + (UniCase("devolopement"), "development"), + (UniCase("succeedes"), "succeeds"), + (UniCase("tahnkyou"), "thankyou"), + (UniCase("endanged"), "endangered"), + (UniCase("prepetrators"), "perpetrators"), + (UniCase("conciousness"), "consciousness"), + (UniCase("unconfortably"), "uncomfortably"), + (UniCase("legitamately"), "legitimately"), + (UniCase("precedessor"), "predecessor"), + (UniCase("fingerpies"), "fingertips"), + (UniCase("inhertiance"), "inheritance"), + (UniCase("deliverees"), "deliveries"), + (UniCase("civilizatons"), "civilizations"), + (UniCase("photograpers"), "photographers"), + (UniCase("acitvision"), "activision"), + (UniCase("relationshits"), "relationships"), + (UniCase("electrobytes"), "electrolytes"), + (UniCase("freind"), "friend"), + (UniCase("librarse"), "libraries"), + (UniCase("ethniticy"), "ethnicity"), + (UniCase("amargeddon"), "armageddon"), + (UniCase("furstrations"), "frustrations"), + (UniCase("interents"), "internets"), + (UniCase("biploar"), "bipolar"), + (UniCase("lveo"), "love"), + (UniCase("cinematogrophy"), "cinematography"), + (UniCase("unsavoury"), "unsavory"), + (UniCase("urbanisation"), "urbanization"), + (UniCase("hybridus"), "hybrids"), + (UniCase("restaraunt"), "restaurant"), + (UniCase("gorillia"), "gorilla"), + (UniCase("transgenres"), "transgender"), + (UniCase("excact"), "exact"), + (UniCase("rendevous"), "rendezvous"), + (UniCase("romanica"), "romania"), + (UniCase("hedgehoog"), "hedgehog"), + (UniCase("alteracion"), "alteration"), + (UniCase("consdider"), "consider"), + (UniCase("currest"), "currents"), + (UniCase("maylasian"), "malaysian"), + (UniCase("computre"), "compute"), + (UniCase("imporve"), "improve"), + (UniCase("continuating"), "continuation"), + (UniCase("beliefes"), "beliefs"), + (UniCase("comparissons"), "comparisons"), + (UniCase("diretcx"), "directx"), + (UniCase("hindiusm"), "hinduism"), + (UniCase("auidobook"), "audiobook"), + (UniCase("techniciens"), "technicians"), + (UniCase("goodlcuk"), "goodluck"), + (UniCase("anorexiac"), "anorexic"), + (UniCase("assoications"), "associations"), + (UniCase("adivsors"), "advisors"), + (UniCase("lesibans"), "lesbians"), + (UniCase("unrankend"), "unranked"), + (UniCase("interatellar"), "interstellar"), + (UniCase("partecipants"), "participants"), + (UniCase("protraits"), "portraits"), + (UniCase("imprsioned"), "imprisoned"), + (UniCase("innoavtion"), "innovations"), + (UniCase("disgiuse"), "disguise"), + (UniCase("minimalstic"), "minimalist"), + (UniCase("ehtnically"), "ethnically"), + (UniCase("pummelled"), "pummel"), + (UniCase("idealising"), "idealizing"), + (UniCase("declaremos"), "declares"), + (UniCase("redistrubition"), "redistribution"), + (UniCase("imperitave"), "imperative"), + (UniCase("cataclysym"), "cataclysm"), + (UniCase("vocalises"), "vocalizes"), + (UniCase("acftually"), "factually"), + (UniCase("spartaniis"), "spartans"), + (UniCase("subscribbed"), "subscribe"), + (UniCase("condencing"), "condemning"), + (UniCase("progressiong"), "progressing"), + (UniCase("realtively"), "relatively"), + (UniCase("fidn"), "find"), + (UniCase("quicket"), "quickest"), + (UniCase("officialy"), "officially"), + (UniCase("contemt"), "contempt"), + (UniCase("yaer"), "year"), + (UniCase("palster"), "plaster"), + (UniCase("corrdination"), "coordination"), + (UniCase("missionnary"), "missionary"), + (UniCase("preimeter"), "perimeter"), + (UniCase("convertis"), "converts"), + (UniCase("apprecaites"), "appreciates"), + (UniCase("curcumstances"), "circumstances"), + (UniCase("appreciatve"), "appreciative"), + (UniCase("misisonary"), "missionary"), + (UniCase("intregity"), "integrity"), + (UniCase("squirrle"), "squirrel"), + (UniCase("desginers"), "designers"), + (UniCase("langauges"), "languages"), + (UniCase("handedley"), "handedly"), + (UniCase("palestininans"), "palestinians"), + (UniCase("converesly"), "conversely"), + (UniCase("complicatie"), "complicit"), + (UniCase("streemlining"), "streamlining"), + (UniCase("annoucnement"), "announcement"), + (UniCase("achilleos"), "achilles"), + (UniCase("maneouvring"), "manoeuvring"), + (UniCase("unproteced"), "unprotected"), + (UniCase("patronise"), "patronize"), + (UniCase("viewpionts"), "viewpoints"), + (UniCase("introvet"), "introvert"), + (UniCase("mataphorically"), "metaphorically"), + (UniCase("scuptures"), "sculptures"), + (UniCase("staklers"), "stalkers"), + (UniCase("irreversiable"), "irreversible"), + (UniCase("correpsondence"), "correspondence"), + (UniCase("thrid"), "third"), + (UniCase("accessoires"), "accessories"), + (UniCase("somethign"), "something"), + (UniCase("vaguelly"), "vaguely"), + (UniCase("cuasality"), "causality"), + (UniCase("blockcahin"), "blockchain"), + (UniCase("unappeeling"), "unappealing"), + (UniCase("suspecions"), "suspicions"), + (UniCase("disrepsected"), "disrespected"), + (UniCase("knuckel"), "knuckle"), + (UniCase("boyfreinds"), "boyfriends"), + (UniCase("inadecuate"), "inadequate"), + (UniCase("fromidable"), "formidable"), + (UniCase("ressurect"), "resurrect"), + (UniCase("furncae"), "furnace"), + (UniCase("cainster"), "canister"), + (UniCase("charistics"), "characteristics"), + (UniCase("completey"), "completely"), + (UniCase("anwsers"), "answers"), + (UniCase("metricas"), "metrics"), + (UniCase("contestas"), "contests"), + (UniCase("uncertaintly"), "uncertainty"), + (UniCase("reorganise"), "reorganize"), + (UniCase("installes"), "installs"), + (UniCase("lieutentant"), "lieutenant"), + (UniCase("adolecent"), "adolescent"), + (UniCase("hyprocites"), "hypocrites"), + (UniCase("recommands"), "recommends"), + (UniCase("excecuted"), "executed"), + (UniCase("suprised"), "surprised"), + (UniCase("lightweigth"), "lightweight"), + (UniCase("electorale"), "electorate"), + (UniCase("xenophopic"), "xenophobic"), + (UniCase("wtih"), "with"), + (UniCase("tranditional"), "transitional"), + (UniCase("peremiter"), "perimeter"), + (UniCase("specfic"), "specific"), + (UniCase("metaphyics"), "metaphysics"), + (UniCase("upstiars"), "upstairs"), + (UniCase("prescripton"), "prescription"), + (UniCase("australiams"), "australians"), + (UniCase("investigaters"), "investigators"), + (UniCase("zimbabe"), "zimbabwe"), + (UniCase("coordiante"), "coordinate"), + (UniCase("marhsmallow"), "marshmallow"), + (UniCase("extreemly"), "extremely"), + (UniCase("ulteriour"), "ulterior"), + (UniCase("unhealhty"), "unhealthy"), + (UniCase("vulnerabillity"), "vulnerability"), + (UniCase("compitable"), "compatible"), + (UniCase("manifestato"), "manifesto"), + (UniCase("permium"), "premium"), + (UniCase("refreing"), "refering"), + (UniCase("difficultes"), "difficulties"), + (UniCase("pretador"), "predator"), + (UniCase("championshiop"), "championships"), + (UniCase("assasssin"), "assassins"), + (UniCase("manouverable"), "maneuverable"), + (UniCase("procrastion"), "procreation"), + (UniCase("abbreivation"), "abbreviation"), + (UniCase("miscommunicatie"), "miscommunication"), + (UniCase("thnig"), "thing"), + (UniCase("consluting"), "consulting"), + (UniCase("poineer"), "pioneer"), + (UniCase("unconsistent"), "inconsistent"), + (UniCase("surroundngs"), "surrounds"), + (UniCase("confescated"), "confiscated"), + (UniCase("geographicial"), "geographical"), + (UniCase("downovting"), "downvoting"), + (UniCase("dispalys"), "displays"), + (UniCase("skeletl"), "skeletal"), + (UniCase("insanelly"), "insanely"), + (UniCase("hypothesise"), "hypothesize"), + (UniCase("comftorably"), "comfortably"), + (UniCase("invovles"), "involves"), + (UniCase("civilizacion"), "civilization"), + (UniCase("defacation"), "defamation"), + (UniCase("chiuhahua"), "chihuahua"), + (UniCase("inheritence"), "inheritance"), + (UniCase("physcologist"), "psychologist"), + (UniCase("graphcis"), "graphics"), + (UniCase("downvotess"), "downvoters"), + (UniCase("antarctia"), "antarctica"), + (UniCase("preordes"), "preorders"), + (UniCase("burisers"), "bruisers"), + (UniCase("caterpiller"), "caterpillar"), + (UniCase("fundamentalismus"), "fundamentalists"), + (UniCase("zionsits"), "zionists"), + (UniCase("beligum"), "belgium"), + (UniCase("aquitted"), "acquitted"), + (UniCase("endolithes"), "endoliths"), + (UniCase("calymore"), "claymore"), + (UniCase("abandonning"), "abandoning"), + (UniCase("oreintation"), "orientation"), + (UniCase("inmigrant"), "immigrant"), + (UniCase("bacholer"), "bachelor"), + (UniCase("clyinder"), "cylinder"), + (UniCase("groubdbreaking"), "groundbreaking"), + (UniCase("comparasons"), "comparisons"), + (UniCase("expansie"), "expansive"), + (UniCase("significane"), "significance"), + (UniCase("oragnise"), "organise"), + (UniCase("reptiel"), "reptile"), + (UniCase("intendos"), "intends"), + (UniCase("metholodogy"), "methodology"), + (UniCase("christain"), "christian"), + (UniCase("versitilaty"), "versatility"), + (UniCase("interm"), "interim"), + (UniCase("consequentely"), "consequently"), + (UniCase("hestiate"), "hesitate"), + (UniCase("austrlaian"), "australians"), + (UniCase("beleived"), "believed"), + (UniCase("obilvion"), "oblivion"), + (UniCase("approxmiate"), "approximate"), + (UniCase("exsiting"), "existing"), + (UniCase("stampeed"), "stamped"), + (UniCase("papanicalou"), "papanicolaou"), + (UniCase("disfavour"), "disfavor"), + (UniCase("respwan"), "respawn"), + (UniCase("recursivly"), "recursively"), + (UniCase("spiltter"), "splitter"), + (UniCase("vangurad"), "vanguard"), + (UniCase("unforgiveble"), "unforgivable"), + (UniCase("conveniente"), "convenience"), + (UniCase("verificato"), "verification"), + (UniCase("steorid"), "steroid"), + (UniCase("susbtantially"), "substantially"), + (UniCase("vigilane"), "vigilante"), + (UniCase("legitimatly"), "legitimately"), + (UniCase("abotu"), "about"), + (UniCase("activiates"), "activist"), + (UniCase("derpatologist"), "dermatologist"), + (UniCase("celebritites"), "celebrities"), + (UniCase("illustartion"), "illustration"), + (UniCase("misunderstansing"), "misunderstandings"), + (UniCase("perviews"), "previews"), + (UniCase("optimising"), "optimizing"), + (UniCase("encorporating"), "incorporating"), + (UniCase("vulnerabilty"), "vulnerability"), + (UniCase("nativley"), "natively"), + (UniCase("criculating"), "circulating"), + (UniCase("interfase"), "interfaces"), + (UniCase("toothbruth"), "toothbrush"), + (UniCase("explicity"), "explicitly"), + (UniCase("temporises"), "temporizes"), + (UniCase("convinving"), "convincing"), + (UniCase("plausable"), "plausible"), + (UniCase("instincitvely"), "instinctively"), + (UniCase("carbonises"), "carbonizes"), + (UniCase("liftime"), "lifetime"), + (UniCase("prestigiosi"), "prestigious"), + (UniCase("collonies"), "colonies"), + (UniCase("internalise"), "internalize"), + (UniCase("manufactered"), "manufactured"), + (UniCase("maclolm"), "malcolm"), + (UniCase("ontraio"), "ontario"), + (UniCase("fluttersy"), "fluttershy"), + (UniCase("respoting"), "reposting"), + (UniCase("pornogrphy"), "pornography"), + (UniCase("supposingly"), "supposedly"), + (UniCase("consitency"), "consistency"), + (UniCase("unforseen"), "unforeseen"), + (UniCase("heistation"), "hesitation"), + (UniCase("circumstanta"), "circumstantial"), + (UniCase("commentes"), "commenters"), + (UniCase("dedicato"), "dedication"), + (UniCase("suposedly"), "supposedly"), + (UniCase("poeoples"), "peoples"), + (UniCase("chormosomes"), "chromosomes"), + (UniCase("accomadate"), "accommodate"), + (UniCase("necessite"), "necessities"), + (UniCase("jaques"), "jacques"), + (UniCase("intimitation"), "intimidation"), + (UniCase("passionnate"), "passionate"), + (UniCase("downloades"), "downloads"), + (UniCase("infridgement"), "infringement"), + (UniCase("dynamicpsf"), "dynamics"), + (UniCase("configuraiton"), "configuration"), + (UniCase("constructies"), "constructs"), + (UniCase("exahusting"), "exhausting"), + (UniCase("probabiliy"), "probability"), + (UniCase("sorcerry"), "sorcery"), + (UniCase("antibiodics"), "antibiotics"), + (UniCase("appareal"), "apparel"), + (UniCase("exponencially"), "exponentially"), + (UniCase("teusdays"), "tuesdays"), + (UniCase("abstraktion"), "abstraction"), + (UniCase("offpsring"), "offspring"), + (UniCase("representationer"), "representations"), + (UniCase("predicat"), "predict"), + (UniCase("dysphora"), "dysphoria"), + (UniCase("tkaes"), "takes"), + (UniCase("charcol"), "charcoal"), + (UniCase("commericial"), "commercial"), + (UniCase("physicaly"), "physically"), + (UniCase("leran"), "learn"), + (UniCase("produceres"), "produces"), + (UniCase("misrepresentating"), "misrepresenting"), + (UniCase("gynmastics"), "gymnastics"), + (UniCase("magensium"), "magnesium"), + (UniCase("unlcuky"), "unlucky"), + (UniCase("resignating"), "resignation"), + (UniCase("orientarlo"), "oriental"), + (UniCase("meditacion"), "medications"), + (UniCase("corwbar"), "crowbar"), + (UniCase("unabnned"), "unbanned"), + (UniCase("raoches"), "roaches"), + (UniCase("mircoatx"), "microatx"), + (UniCase("publiclly"), "publicly"), + (UniCase("tenacles"), "tentacles"), + (UniCase("auxillaries"), "auxiliaries"), + (UniCase("victorain"), "victorian"), + (UniCase("histerical"), "historical"), + (UniCase("instantanious"), "instantaneous"), + (UniCase("madsion"), "madison"), + (UniCase("specifcation"), "specification"), + (UniCase("traitorise"), "traitors"), + (UniCase("socioeconmic"), "socioeconomic"), + (UniCase("gridles"), "griddles"), + (UniCase("functionalty"), "functionality"), + (UniCase("undernearth"), "underneath"), + (UniCase("constitutiei"), "constitute"), + (UniCase("stroylines"), "storylines"), + (UniCase("bareclona"), "barcelona"), + (UniCase("philospohies"), "philosophies"), + (UniCase("audomoderator"), "automoderator"), + (UniCase("underwhleming"), "underwhelming"), + (UniCase("motivatie"), "motivate"), + (UniCase("constanst"), "constants"), + (UniCase("expiditions"), "expeditions"), + (UniCase("immidiate"), "immediate"), + (UniCase("bodybuidling"), "bodybuilding"), + (UniCase("dialectes"), "dialects"), + (UniCase("attraktive"), "attractive"), + (UniCase("comradre"), "comrade"), + (UniCase("acitvating"), "activating"), + (UniCase("socailism"), "socialism"), + (UniCase("narcissitc"), "narcissist"), + (UniCase("correktions"), "corrections"), + (UniCase("libertariens"), "libertarians"), + (UniCase("vrigins"), "virgins"), + (UniCase("percursor"), "precursor"), + (UniCase("exposees"), "exposes"), + (UniCase("obstacal"), "obstacle"), + (UniCase("nto"), "not"), + (UniCase("volontary"), "voluntary"), + (UniCase("achillees"), "achilles"), + (UniCase("commencera"), "commerce"), + (UniCase("aquainted"), "acquainted"), + (UniCase("isntructed"), "instructed"), + (UniCase("obvioulsy"), "obviously"), + (UniCase("comeptitive"), "competitive"), + (UniCase("elephantes"), "elephants"), + (UniCase("relevence"), "relevance"), + (UniCase("technqiues"), "techniques"), + (UniCase("apacolyptic"), "apocalyptic"), + (UniCase("eugneics"), "eugenics"), + (UniCase("jorunal"), "journal"), + (UniCase("defendre"), "defender"), + (UniCase("developemnt"), "developments"), + (UniCase("feminimity"), "femininity"), + (UniCase("turstworthy"), "trustworthy"), + (UniCase("challengr"), "challenger"), + (UniCase("enviromnent"), "environments"), + (UniCase("organsiation"), "organisation"), + (UniCase("commedic"), "comedic"), + (UniCase("favouritsm"), "favourites"), + (UniCase("praesidium"), "presidium"), + (UniCase("unsubstantiaed"), "unsubstantiated"), + (UniCase("horzions"), "horizons"), + (UniCase("disqaulified"), "disqualified"), + (UniCase("versatily"), "versatility"), + (UniCase("temperement"), "temperament"), + (UniCase("actualey"), "actualy"), + (UniCase("abodminal"), "abdominal"), + (UniCase("counteratk"), "counteract"), + (UniCase("expierencing"), "experiencing"), + (UniCase("algoritms"), "algorithms"), + (UniCase("represantations"), "representations"), + (UniCase("wacther"), "watcher"), + (UniCase("suport"), "support"), + (UniCase("alreayd"), "already"), + (UniCase("environemntally"), "environmentally"), + (UniCase("institue"), "institute"), + (UniCase("perputuating"), "perpetuating"), + (UniCase("reflecte"), "reflective"), + (UniCase("cutscens"), "cutscenes"), + (UniCase("shadoloo"), "shadaloo"), + (UniCase("emmigrated"), "emigrated"), + (UniCase("misbehaviour"), "misbehavior"), + (UniCase("pressurisation"), "pressurization"), + (UniCase("succesd"), "succeeds"), + (UniCase("permiums"), "premiums"), + (UniCase("unnecessarly"), "unnecessarily"), + (UniCase("shawshak"), "shawshank"), + (UniCase("accumalate"), "accumulate"), + (UniCase("radioacive"), "radioactive"), + (UniCase("fabricatie"), "fabricated"), + (UniCase("efficently"), "efficiently"), + (UniCase("opthamologist"), "ophthalmologist"), + (UniCase("campaignes"), "campaigns"), + (UniCase("amernian"), "armenian"), + (UniCase("bracelona"), "barcelona"), + (UniCase("officals"), "officials"), + (UniCase("dependenies"), "dependencies"), + (UniCase("depressin"), "depression"), + (UniCase("graet"), "great"), + (UniCase("fraudolent"), "fraudulent"), + (UniCase("areodynamics"), "aerodynamics"), + (UniCase("catastrophies"), "catastrophe"), + (UniCase("queations"), "equations"), + (UniCase("connectivy"), "connectivity"), + (UniCase("localise"), "localize"), + (UniCase("batitsa"), "batista"), + (UniCase("conveniantly"), "conveniently"), + (UniCase("abruptley"), "abruptly"), + (UniCase("dinosaurios"), "dinosaurs"), + (UniCase("excange"), "exchange"), + (UniCase("attributs"), "attributes"), + (UniCase("manadrin"), "mandarin"), + (UniCase("traitoris"), "traitors"), + (UniCase("misunderstanging"), "misunderstandings"), + (UniCase("narcisists"), "narcissist"), + (UniCase("investigaron"), "investigator"), + (UniCase("unworty"), "unworthy"), + (UniCase("detectas"), "detects"), + (UniCase("dispacth"), "dispatch"), + (UniCase("definltey"), "definetly"), + (UniCase("ardour"), "ardor"), + (UniCase("opponenet"), "opponent"), + (UniCase("govermnent"), "governments"), + (UniCase("compelte"), "complete"), + (UniCase("hyopthetical"), "hypothetical"), + (UniCase("comisioner"), "commissioner"), + (UniCase("anwyays"), "anyways"), + (UniCase("enciclopedia"), "encyclopedia"), + (UniCase("hirsohima"), "hiroshima"), + (UniCase("santourm"), "santorum"), + (UniCase("grappnel"), "grapple"), + (UniCase("woudl"), "would"), + (UniCase("expedetion"), "expedition"), + (UniCase("equivalnce"), "equivalence"), + (UniCase("contines"), "continents"), + (UniCase("singluar"), "singular"), + (UniCase("fantasty"), "fantasy"), + (UniCase("eratic"), "erratic"), + (UniCase("exlcusion"), "exclusion"), + (UniCase("sponser"), "sponsor"), + (UniCase("cabbagge"), "cabbage"), + (UniCase("contribucion"), "contribution"), + (UniCase("economisiti"), "economist"), + (UniCase("illumniati"), "illuminati"), + (UniCase("distunguish"), "distinguish"), + (UniCase("substitures"), "substitutes"), + (UniCase("feminen"), "feminine"), + (UniCase("computerise"), "computerize"), + (UniCase("patriottism"), "patriotism"), + (UniCase("contengent"), "contingent"), + (UniCase("experienceing"), "experiencing"), + (UniCase("commenteries"), "commenters"), + (UniCase("margenalized"), "marginalized"), + (UniCase("becuase"), "because"), + (UniCase("cababilities"), "capabilities"), + (UniCase("rudimentery"), "rudimentary"), + (UniCase("vulnerablility"), "vulnerability"), + (UniCase("happended"), "happened"), + (UniCase("resembe"), "resemble"), + (UniCase("househoulds"), "households"), + (UniCase("aribtrarily"), "arbitrarily"), + (UniCase("electrolites"), "electrolytes"), + (UniCase("apperance"), "appearance"), + (UniCase("attendents"), "attendants"), + (UniCase("oligrachy"), "oligarchy"), + (UniCase("mathmatically"), "mathematically"), + (UniCase("fouth"), "fourth"), + (UniCase("misunderstadings"), "misunderstandings"), + (UniCase("promotheus"), "prometheus"), + (UniCase("consorcium"), "consortium"), + (UniCase("illinos"), "illinois"), + (UniCase("sentensing"), "sentencing"), + (UniCase("antaganistic"), "antagonistic"), + (UniCase("godounov"), "godunov"), + (UniCase("unorigonal"), "unoriginal"), + (UniCase("qutie"), "quite"), + (UniCase("neutrallity"), "neutrality"), + (UniCase("interveiwed"), "interviewed"), + (UniCase("cigarattes"), "cigarettes"), + (UniCase("enterpirse"), "enterprise"), + (UniCase("despict"), "depict"), + (UniCase("comfertably"), "comfortably"), + (UniCase("pesticedes"), "pesticides"), + (UniCase("suprsied"), "suprised"), + (UniCase("levellign"), "levelling"), + (UniCase("regimet"), "regiment"), + (UniCase("heridity"), "heredity"), + (UniCase("perisan"), "persian"), + (UniCase("endig"), "ending"), + (UniCase("employeurs"), "employer"), + (UniCase("forumlas"), "formulas"), + (UniCase("qucikest"), "quickest"), + (UniCase("opression"), "oppression"), + (UniCase("proccessing"), "processing"), + (UniCase("repulic"), "republic"), + (UniCase("combiantion"), "combinations"), + (UniCase("luancher"), "launcher"), + (UniCase("streames"), "streams"), + (UniCase("disrispect"), "disrespect"), + (UniCase("hosptialized"), "hospitalized"), + (UniCase("brakeout"), "breakout"), + (UniCase("unsespecting"), "unsuspecting"), + (UniCase("eastwoood"), "eastwood"), + (UniCase("tournement"), "tournament"), + (UniCase("righteouness"), "righteousness"), + (UniCase("initalised"), "initialised"), + (UniCase("fullets"), "fullest"), + (UniCase("voilates"), "violates"), + (UniCase("sypmtoms"), "symptoms"), + (UniCase("exculsives"), "exclusives"), + (UniCase("switerzland"), "switzerland"), + (UniCase("penetrarion"), "penetration"), + (UniCase("goalkeeprs"), "goalkeeper"), + (UniCase("disliks"), "dislikes"), + (UniCase("belligerante"), "belligerent"), + (UniCase("catalgoue"), "catalogue"), + (UniCase("germaniac"), "germanic"), + (UniCase("critisiced"), "criticized"), + (UniCase("venezeula"), "venezuela"), + (UniCase("flavord"), "flavored"), + (UniCase("stange"), "strange"), + (UniCase("consequeseces"), "consequences"), + (UniCase("posess"), "possess"), + (UniCase("metabloic"), "metabolic"), + (UniCase("burritoes"), "burritos"), + (UniCase("plethorian"), "plethora"), + (UniCase("conifgurations"), "configurations"), + (UniCase("spirituallly"), "spiritually"), + (UniCase("entretaining"), "entertaining"), + (UniCase("compromize"), "compromise"), + (UniCase("instalments"), "installments"), + (UniCase("blaimed"), "blamed"), + (UniCase("cannibalises"), "cannibalizes"), + (UniCase("manufactuers"), "manufacturers"), + (UniCase("progresive"), "progressive"), + (UniCase("provocitive"), "provocative"), + (UniCase("insuccessful"), "unsuccessful"), + (UniCase("voluntarly"), "voluntary"), + (UniCase("destabilised"), "destabilized"), + (UniCase("commited"), "committed"), + (UniCase("helicotper"), "helicopters"), + (UniCase("desperatly"), "desperately"), + (UniCase("sharplay"), "sharply"), + (UniCase("sluaghtering"), "slaughtering"), + (UniCase("irrelevent"), "irrelevant"), + (UniCase("criticisize"), "criticise"), + (UniCase("cartles"), "cartels"), + (UniCase("observaiton"), "observant"), + (UniCase("inituition"), "initiation"), + (UniCase("rethorical"), "rhetorical"), + (UniCase("reliabily"), "reliability"), + (UniCase("subtitls"), "subtitles"), + (UniCase("lightwright"), "lightweight"), + (UniCase("asutralian"), "australian"), + (UniCase("conflcting"), "conflating"), + (UniCase("publicising"), "publicizing"), + (UniCase("creativily"), "creatively"), + (UniCase("foetuses"), "fetuses"), + (UniCase("spwaning"), "spawning"), + (UniCase("reversably"), "reversal"), + (UniCase("musilms"), "muslims"), + (UniCase("platnuim"), "platinum"), + (UniCase("faceboook"), "facebook"), + (UniCase("surbuban"), "suburban"), + (UniCase("franchies"), "franchise"), + (UniCase("technitians"), "technicians"), + (UniCase("autocorrekt"), "autocorrect"), + (UniCase("adjustabe"), "adjustable"), + (UniCase("catepillars"), "caterpillars"), + (UniCase("expeiments"), "experiments"), + (UniCase("capitarist"), "capitalist"), + (UniCase("collectioners"), "collections"), + (UniCase("implementaitons"), "implementations"), + (UniCase("ambassator"), "ambassador"), + (UniCase("sufferred"), "suffered"), + (UniCase("submissons"), "submissions"), + (UniCase("repectively"), "respectively"), + (UniCase("ascendend"), "ascended"), + (UniCase("blatanty"), "blatantly"), + (UniCase("sacrificng"), "sacrificing"), + (UniCase("jurisdiciton"), "jurisdiction"), + (UniCase("paragrpah"), "paragraph"), + (UniCase("precuation"), "precautions"), + (UniCase("embarassed"), "embarrassed"), + (UniCase("labarotory"), "laboratory"), + (UniCase("probaly"), "probably"), + (UniCase("recreacion"), "recreation"), + (UniCase("realtes"), "relates"), + (UniCase("hurricans"), "hurricanes"), + (UniCase("moulds"), "molds"), + (UniCase("decorativos"), "decorations"), + (UniCase("tath"), "that"), + (UniCase("warriros"), "warriors"), + (UniCase("applicaton"), "application"), + (UniCase("deomnstration"), "demonstrations"), + (UniCase("downgrated"), "downgrade"), + (UniCase("annihilatron"), "annihilation"), + (UniCase("consitutents"), "constituents"), + (UniCase("unbannend"), "unbanned"), + (UniCase("resevoir"), "reservoir"), + (UniCase("epilespy"), "epilepsy"), + (UniCase("distuingish"), "distinguish"), + (UniCase("soberity"), "sobriety"), + (UniCase("refrence"), "reference"), + (UniCase("surprisinly"), "surprisingly"), + (UniCase("circumsicions"), "circumcision"), + (UniCase("procastrinating"), "procrastinating"), + (UniCase("disobeidence"), "disobedience"), + (UniCase("prophocies"), "prophecies"), + (UniCase("anaemia"), "anemia"), + (UniCase("insensetive"), "insensitive"), + (UniCase("contactes"), "contacts"), + (UniCase("implicitily"), "implicitly"), + (UniCase("cultivative"), "cultivate"), + (UniCase("infantis"), "infants"), + (UniCase("friendzoneado"), "friendzoned"), + (UniCase("farehnheit"), "fahrenheit"), + (UniCase("popualtion"), "populations"), + (UniCase("vulnurability"), "vulnerability"), + (UniCase("sciencers"), "sciences"), + (UniCase("chargeur"), "charger"), + (UniCase("restrective"), "restrictive"), + (UniCase("determinato"), "determination"), + (UniCase("probabily"), "probability"), + (UniCase("turntabe"), "turntable"), + (UniCase("propagana"), "propaganda"), + (UniCase("dualtiy"), "duality"), + (UniCase("trasnform"), "transform"), + (UniCase("operationable"), "operational"), + (UniCase("racthet"), "ratchet"), + (UniCase("overcloked"), "overclocked"), + (UniCase("pamplet"), "pamphlet"), + (UniCase("exculded"), "excluded"), + (UniCase("eygptians"), "egyptians"), + (UniCase("persistance"), "persistence"), + (UniCase("octohedral"), "octahedral"), + (UniCase("amognst"), "amongst"), + (UniCase("subsidisation"), "subsidization"), + (UniCase("territoy"), "territory"), + (UniCase("midfiedler"), "midfielder"), + (UniCase("conspiracize"), "conspiracies"), + (UniCase("reluctanctly"), "reluctantly"), + (UniCase("eventally"), "eventually"), + (UniCase("compresssed"), "compressed"), + (UniCase("pedictions"), "depictions"), + (UniCase("confesso"), "confession"), + (UniCase("intrerupt"), "interrupt"), + (UniCase("billionairre"), "billionaire"), + (UniCase("generalizating"), "generalization"), + (UniCase("definito"), "definition"), + (UniCase("recrational"), "recreational"), + (UniCase("heavywieghts"), "heavyweight"), + (UniCase("implimenting"), "implementing"), + (UniCase("cheerleeder"), "cheerleader"), + (UniCase("dysfunctionnal"), "dysfunctional"), + (UniCase("breakthroughts"), "breakthroughs"), + (UniCase("transmision"), "transmission"), + (UniCase("translyvanian"), "transylvania"), + (UniCase("specialise"), "specialize"), + (UniCase("uninitalized"), "uninitialized"), + (UniCase("redesing"), "redesign"), + (UniCase("blegium"), "belgium"), + (UniCase("interactivo"), "interaction"), + (UniCase("phychologist"), "psychologist"), + (UniCase("incompatable"), "incompatible"), + (UniCase("consipracies"), "conspiracies"), + (UniCase("deisgner"), "designer"), + (UniCase("ministerios"), "ministers"), + (UniCase("acclamied"), "acclaimed"), + (UniCase("singulairty"), "singularity"), + (UniCase("tendence"), "tendencies"), + (UniCase("phisiological"), "physiological"), + (UniCase("cerification"), "verification"), + (UniCase("tenderises"), "tenderizes"), + (UniCase("councilers"), "councils"), + (UniCase("arizonia"), "arizona"), + (UniCase("definatlly"), "definately"), + (UniCase("capsumel"), "capsule"), + (UniCase("heiroglyphics"), "hieroglyphics"), + (UniCase("southerers"), "southerners"), + (UniCase("antiqvated"), "antiquated"), + (UniCase("phramacist"), "pharmacist"), + (UniCase("merchanidse"), "merchandise"), + (UniCase("turtels"), "turtles"), + (UniCase("unsunscribe"), "unsubscribe"), + (UniCase("soldeirs"), "soldiers"), + (UniCase("selfiers"), "selfies"), + (UniCase("vacciantion"), "vaccination"), + (UniCase("favouritism"), "favoritism"), + (UniCase("relationsship"), "relationships"), + (UniCase("transofrmers"), "transformers"), + (UniCase("engieneer"), "engineer"), + (UniCase("sherlok"), "sherlock"), + (UniCase("springst"), "sprints"), + (UniCase("horader"), "hoarder"), + (UniCase("etherent"), "ethernet"), + (UniCase("appriciates"), "appreciates"), + (UniCase("legendaies"), "legendaries"), + (UniCase("handedlly"), "handedly"), + (UniCase("amphitheatres"), "amphitheaters"), + (UniCase("adminsitered"), "administered"), + (UniCase("misinterpred"), "misinterpreted"), + (UniCase("hurrikanes"), "hurricanes"), + (UniCase("disappered"), "disappeared"), + (UniCase("decoritive"), "decorative"), + (UniCase("develepmont"), "developments"), + (UniCase("hyrdation"), "hydration"), + (UniCase("desings"), "designs"), + (UniCase("histroic"), "historic"), + (UniCase("heveanly"), "heavenly"), + (UniCase("persauded"), "persuaded"), + (UniCase("empathatic"), "empathetic"), + (UniCase("fignerprint"), "fingerprint"), + (UniCase("cilents"), "clients"), + (UniCase("enchancments"), "enchantments"), + (UniCase("michelline"), "michelle"), + (UniCase("economisch"), "economic"), + (UniCase("sensationalsim"), "sensationalism"), + (UniCase("definatedly"), "definately"), + (UniCase("corrupto"), "corruption"), + (UniCase("scultpure"), "sculpture"), + (UniCase("godpseed"), "godspeed"), + (UniCase("immitator"), "imitator"), + (UniCase("distortian"), "distortion"), + (UniCase("parliamone"), "parliament"), + (UniCase("intorductory"), "introductory"), + (UniCase("relfexes"), "reflexes"), + (UniCase("sportsmansship"), "sportsmanship"), + (UniCase("direcotry"), "directory"), + (UniCase("administartor"), "administrator"), + (UniCase("juggetnaut"), "juggernaut"), + (UniCase("interestinly"), "interestingly"), + (UniCase("nurtient"), "nutrient"), + (UniCase("determinsm"), "determinism"), + (UniCase("particullary"), "particularly"), + (UniCase("illegallly"), "illegally"), + (UniCase("suggestie"), "suggestive"), + (UniCase("accumilated"), "accumulated"), + (UniCase("preivew"), "preview"), + (UniCase("entrepreuner"), "entrepreneurs"), + (UniCase("progroms"), "pogroms"), + (UniCase("paragraghs"), "paragraphs"), + (UniCase("merhcants"), "merchants"), + (UniCase("calroies"), "calories"), + (UniCase("keyensian"), "keynesian"), + (UniCase("consideratin"), "considerations"), + (UniCase("rwite"), "write"), + (UniCase("repharse"), "rephrase"), + (UniCase("previvous"), "previous"), + (UniCase("tropedo"), "torpedo"), + (UniCase("refilles"), "refills"), + (UniCase("louieville"), "louisville"), + (UniCase("farcking"), "fracking"), + (UniCase("equivilant"), "equivalent"), + (UniCase("grahpic"), "graphic"), + (UniCase("improted"), "imported"), + (UniCase("criticisims"), "criticisms"), + (UniCase("presomption"), "presumption"), + (UniCase("tablesppon"), "tablespoon"), + (UniCase("dehumanises"), "dehumanizes"), + (UniCase("philospohers"), "philosophers"), + (UniCase("bigtoed"), "bigoted"), + (UniCase("interpretarte"), "interpreter"), + (UniCase("innoucous"), "innocuous"), + (UniCase("suggestief"), "suggestive"), + (UniCase("massachsuetts"), "massachusetts"), + (UniCase("conveinence"), "convenience"), + (UniCase("curelty"), "cruelty"), + (UniCase("perferring"), "preferring"), + (UniCase("exclusivelly"), "exclusively"), + (UniCase("artsits"), "artists"), + (UniCase("radiane"), "radiance"), + (UniCase("strentgh"), "strength"), + (UniCase("oracels"), "oracles"), + (UniCase("useage"), "usage"), + (UniCase("scoreboad"), "scoreboard"), + (UniCase("mercenaire"), "mercenaries"), + (UniCase("accidentley"), "accidently"), + (UniCase("individuales"), "individuals"), + (UniCase("unneccessarily"), "unnecessarily"), + (UniCase("simulatneous"), "simultaneous"), + (UniCase("monolitihic"), "monolithic"), + (UniCase("jounralistic"), "journalistic"), + (UniCase("uninspried"), "uninspired"), + (UniCase("criticis"), "critics"), + (UniCase("denomonator"), "denominator"), + (UniCase("narcissisism"), "narcissism"), + (UniCase("friendzond"), "friendzoned"), + (UniCase("experimentella"), "experimental"), + (UniCase("dogders"), "dodgers"), + (UniCase("contextes"), "contexts"), + (UniCase("particulalry"), "particularly"), + (UniCase("diplimatic"), "diplomatic"), + (UniCase("containg"), "containing"), + (UniCase("posicional"), "positional"), + (UniCase("watkings"), "watkins"), + (UniCase("deparments"), "departments"), + (UniCase("spectacuarly"), "spectacular"), + (UniCase("micorcenter"), "microcenter"), + (UniCase("agriculteral"), "agricultural"), + (UniCase("wathcer"), "watcher"), + (UniCase("representatin"), "representations"), + (UniCase("retributivo"), "retribution"), + (UniCase("honourably"), "honorably"), + (UniCase("hygience"), "hygiene"), + (UniCase("arround"), "around"), + (UniCase("delearship"), "dealership"), + (UniCase("constructivo"), "construction"), + (UniCase("rigtheous"), "righteous"), + (UniCase("monestaries"), "monasteries"), + (UniCase("billboad"), "billboard"), + (UniCase("califorinan"), "californian"), + (UniCase("catastraphe"), "catastrophe"), + (UniCase("altough"), "although"), + (UniCase("orhcestra"), "orchestra"), + (UniCase("fortitudine"), "fortitude"), + (UniCase("rollercaoster"), "rollercoaster"), + (UniCase("altruistric"), "altruistic"), + (UniCase("intenseley"), "intensely"), + (UniCase("cuasing"), "causing"), + (UniCase("personallity"), "personally"), + (UniCase("millinnium"), "millennium"), + (UniCase("deadlfit"), "deadlift"), + (UniCase("interferres"), "interferes"), + (UniCase("orlenas"), "orleans"), + (UniCase("electromagnatic"), "electromagnetic"), + (UniCase("simulatin"), "simulation"), + (UniCase("independente"), "independence"), + (UniCase("configue"), "configure"), + (UniCase("brainwahsing"), "brainwashing"), + (UniCase("politicise"), "politicize"), + (UniCase("criticists"), "critics"), + (UniCase("withces"), "witches"), + (UniCase("prosphetic"), "prosthetic"), + (UniCase("correcty"), "correctly"), + (UniCase("consultat"), "consultant"), + (UniCase("subisdizing"), "subsidizing"), + (UniCase("rigour"), "rigor"), + (UniCase("coincidentia"), "coincidental"), + (UniCase("exculsive"), "exclusive"), + (UniCase("temparature"), "temperature"), + (UniCase("beleives"), "believes"), + (UniCase("irresponsibile"), "irresponsible"), + (UniCase("teleportato"), "teleportation"), + (UniCase("evaulating"), "evaluating"), + (UniCase("disadventaged"), "disadvantaged"), + (UniCase("uninterruped"), "uninterrupted"), + (UniCase("battlaion"), "battalion"), + (UniCase("unpredecented"), "unprecedented"), + (UniCase("reprehensable"), "reprehensible"), + (UniCase("rescuse"), "rescues"), + (UniCase("wavelenghs"), "wavelength"), + (UniCase("elitistm"), "elitism"), + (UniCase("salughtering"), "slaughtering"), + (UniCase("mortards"), "mortars"), + (UniCase("manoeuvrable"), "maneuverable"), + (UniCase("encounted"), "encountered"), + (UniCase("fictionalisation"), "fictionalization"), + (UniCase("interrputed"), "interrupted"), + (UniCase("converitble"), "convertible"), + (UniCase("colleauge"), "colleague"), + (UniCase("implict"), "implicit"), + (UniCase("brianwashing"), "brainwashing"), + (UniCase("coutnerplay"), "counterplay"), + (UniCase("collaquial"), "colloquial"), + (UniCase("spontainous"), "spontaneous"), + (UniCase("restriant"), "restraint"), + (UniCase("seperatism"), "separatism"), + (UniCase("symbolsim"), "symbolism"), + (UniCase("paramedicks"), "paramedics"), + (UniCase("usualy"), "usually"), + (UniCase("incredibile"), "incredible"), + (UniCase("appropropiate"), "appropriate"), + (UniCase("intellectals"), "intellectuals"), + (UniCase("attractifs"), "attracts"), + (UniCase("proconceived"), "preconceived"), + (UniCase("neighbhors"), "neighbours"), + (UniCase("expolits"), "exploits"), + (UniCase("spoiles"), "spoilers"), + (UniCase("businesss"), "businesses"), + (UniCase("restatting"), "restarting"), + (UniCase("suspisiously"), "suspiciously"), + (UniCase("juveline"), "juvenile"), + (UniCase("insurgancy"), "insurgency"), + (UniCase("competitivo"), "competition"), + (UniCase("controled"), "controlled"), + (UniCase("acording"), "according"), + (UniCase("presentas"), "presents"), + (UniCase("intellectualises"), "intellectualizes"), + (UniCase("discribed"), "described"), + (UniCase("impersinating"), "impersonating"), + (UniCase("distructions"), "distractions"), + (UniCase("instruktor"), "instructor"), + (UniCase("eliminatin"), "elimination"), + (UniCase("skatebaording"), "skateboarding"), + (UniCase("unattanded"), "unattended"), + (UniCase("entoxication"), "intoxication"), + (UniCase("expermient"), "experiments"), + (UniCase("dimesnion"), "dimension"), + (UniCase("incentivate"), "incentive"), + (UniCase("recognisable"), "recognizable"), + (UniCase("alleivate"), "alleviate"), + (UniCase("creationisim"), "creationism"), + (UniCase("disobediant"), "disobedient"), + (UniCase("centilitre"), "centiliter"), + (UniCase("bascially"), "basically"), + (UniCase("confesos"), "confess"), + (UniCase("overfapping"), "overlapping"), + (UniCase("suspeciously"), "suspiciously"), + (UniCase("informate"), "informative"), + (UniCase("devialet"), "deviate"), + (UniCase("discrimine"), "discriminate"), + (UniCase("diffuculty"), "difficulty"), + (UniCase("temafights"), "teamfights"), + (UniCase("shattening"), "shattering"), + (UniCase("administres"), "administer"), + (UniCase("miralces"), "miracles"), + (UniCase("hindusim"), "hinduism"), + (UniCase("institutionals"), "institutions"), + (UniCase("chronicals"), "chronicles"), + (UniCase("valkriye"), "valkyrie"), + (UniCase("nationalisn"), "nationals"), + (UniCase("momemtarily"), "momentarily"), + (UniCase("aristolte"), "aristotle"), + (UniCase("blackcawks"), "blackhawks"), + (UniCase("indonesien"), "indonesian"), + (UniCase("architechs"), "architects"), + (UniCase("sancutary"), "sanctuary"), + (UniCase("nutritios"), "nutritious"), + (UniCase("monserrat"), "montserrat"), + (UniCase("blamethrower"), "flamethrower"), + (UniCase("dyanmically"), "dynamically"), + (UniCase("attracs"), "attracts"), + (UniCase("urnaium"), "uranium"), + (UniCase("stablility"), "stability"), + (UniCase("protagnoists"), "protagonists"), + (UniCase("bureaucats"), "bureaucrats"), + (UniCase("distrubitor"), "distributor"), + (UniCase("linguistisch"), "linguistics"), + (UniCase("generelizing"), "generalizing"), + (UniCase("hanidcapped"), "handicapped"), + (UniCase("franciso"), "francisco"), + (UniCase("asburdly"), "absurdly"), + (UniCase("stubbon"), "stubborn"), + (UniCase("illegitemate"), "illegitimate"), + (UniCase("desinterested"), "disinterested"), + (UniCase("copehnagen"), "copenhagen"), + (UniCase("executabil"), "executable"), + (UniCase("depitcs"), "depicts"), + (UniCase("methaporically"), "metaphorically"), + (UniCase("nationalis"), "nationals"), + (UniCase("mechanichal"), "mechanical"), + (UniCase("internt"), "internet"), + (UniCase("determinig"), "determining"), + (UniCase("paltform"), "platform"), + (UniCase("masrhmallow"), "marshmallow"), + (UniCase("oragnizer"), "organizer"), + (UniCase("publicise"), "publicize"), + (UniCase("pricipal"), "principal"), + (UniCase("comapre"), "compare"), + (UniCase("italicised"), "italicized"), + (UniCase("inveitably"), "inevitably"), + (UniCase("ideolouges"), "ideologies"), + (UniCase("nirtogen"), "nitrogen"), + (UniCase("investigsting"), "investigating"), + (UniCase("gruelling"), "grueling"), + (UniCase("higest"), "highest"), + (UniCase("invaderas"), "invaders"), + (UniCase("molestarse"), "molester"), + (UniCase("coloardo"), "colorado"), + (UniCase("dermatalogist"), "dermatologist"), + (UniCase("ionisers"), "ionizers"), + (UniCase("satisfacting"), "satisfaction"), + (UniCase("bollocs"), "bollocks"), + (UniCase("explanotory"), "explanatory"), + (UniCase("chromesomes"), "chromosomes"), + (UniCase("scirpt"), "script"), + (UniCase("experimentais"), "experiments"), + (UniCase("anticuated"), "antiquated"), + (UniCase("waktins"), "watkins"), + (UniCase("laregly"), "largely"), + (UniCase("stealthly"), "stealthy"), + (UniCase("tempaltes"), "templates"), + (UniCase("scratchs"), "scratches"), + (UniCase("influanced"), "influenced"), + (UniCase("symptoom"), "symptom"), + (UniCase("explicilty"), "explicitly"), + (UniCase("assoziation"), "association"), + (UniCase("minimising"), "minimizing"), + (UniCase("nowdays"), "nowadays"), + (UniCase("unfortune"), "unfortunate"), + (UniCase("mischievious"), "mischievous"), + (UniCase("mastermid"), "mastermind"), + (UniCase("authroization"), "authorization"), + (UniCase("statsit"), "statist"), + (UniCase("overclcok"), "overclock"), + (UniCase("marniers"), "mariners"), + (UniCase("refereers"), "referees"), + (UniCase("microcentre"), "microcenter"), + (UniCase("renderered"), "rendered"), + (UniCase("thikn"), "think"), + (UniCase("direcitonal"), "directional"), + (UniCase("demolito"), "demolition"), + (UniCase("totalitarni"), "totalitarian"), + (UniCase("professionallism"), "professionalism"), + (UniCase("unintelligient"), "unintelligent"), + (UniCase("intorverts"), "introverts"), + (UniCase("astersik"), "asterisk"), + (UniCase("corrdior"), "corridor"), + (UniCase("undesrtand"), "understands"), + (UniCase("distingished"), "distinguished"), + (UniCase("cheezeburger"), "cheeseburger"), + (UniCase("carnige"), "carnage"), + (UniCase("claerer"), "clearer"), + (UniCase("presecuted"), "persecuted"), + (UniCase("rugters"), "rutgers"), + (UniCase("shiping"), "shipping"), + (UniCase("heapdhone"), "headphone"), + (UniCase("casue"), "cause"), + (UniCase("misinterprested"), "misinterpret"), + (UniCase("whants"), "wants"), + (UniCase("activelly"), "actively"), + (UniCase("constrat"), "constraint"), + (UniCase("americams"), "americas"), + (UniCase("liberalis"), "liberals"), + (UniCase("remodelling"), "remodeling"), + (UniCase("repubican"), "republican"), + (UniCase("temparament"), "temperament"), + (UniCase("implecations"), "implications"), + (UniCase("includeds"), "includes"), + (UniCase("orhtodox"), "orthodox"), + (UniCase("chocloate"), "chocolate"), + (UniCase("intorduction"), "introduction"), + (UniCase("explossion"), "explosions"), + (UniCase("frosaken"), "forsaken"), + (UniCase("indepentently"), "independently"), + (UniCase("mathemetically"), "mathematically"), + (UniCase("anoreixa"), "anorexia"), + (UniCase("exploites"), "exploits"), + (UniCase("particiapted"), "participated"), + (UniCase("disspiate"), "dissipate"), + (UniCase("bardford"), "bradford"), + (UniCase("mindcarck"), "mindcrack"), + (UniCase("extractin"), "extraction"), + (UniCase("estabilshment"), "establishments"), + (UniCase("aldutery"), "adultery"), + (UniCase("economicus"), "economics"), + (UniCase("gamergat"), "gamertag"), + (UniCase("overwhlemingly"), "overwhelmingly"), + (UniCase("recognising"), "recognizing"), + (UniCase("mozillla"), "mozilla"), + (UniCase("supsense"), "suspense"), + (UniCase("stainlees"), "stainless"), + (UniCase("perserving"), "preserving"), + (UniCase("bersekrer"), "berserker"), + (UniCase("perpsectives"), "perspectives"), + (UniCase("prostituiton"), "prostitution"), + (UniCase("effords"), "efforts"), + (UniCase("extermally"), "externally"), + (UniCase("confedarate"), "confederate"), + (UniCase("vaticina"), "vatican"), + (UniCase("menstrul"), "menstrual"), + (UniCase("balckhawks"), "blackhawks"), + (UniCase("coloublind"), "colorblind"), + (UniCase("eliminacion"), "elimination"), + (UniCase("dramaticlly"), "dramatically"), + (UniCase("theorise"), "theorize"), + (UniCase("simplisitic"), "simplistic"), + (UniCase("prejiduce"), "prejudice"), + (UniCase("mastrubation"), "masturbation"), + (UniCase("transisions"), "transitions"), + (UniCase("transylvnia"), "transylvania"), + (UniCase("structurs"), "structures"), + (UniCase("challening"), "challenging"), + (UniCase("correspondant"), "correspondent"), + (UniCase("victimas"), "victims"), + (UniCase("alterantively"), "alternatively"), + (UniCase("repositiory"), "repository"), + (UniCase("analysing"), "analyzing"), + (UniCase("charimsa"), "charisma"), + (UniCase("slefies"), "selfies"), + (UniCase("versatillity"), "versatility"), + (UniCase("simliarly"), "similarly"), + (UniCase("humanitites"), "humanities"), + (UniCase("pshycotic"), "psychotic"), + (UniCase("zealotes"), "zealots"), + (UniCase("moisutrizer"), "moisturizer"), + (UniCase("incrememnts"), "increments"), + (UniCase("peircings"), "piercings"), + (UniCase("replayd"), "replayed"), + (UniCase("escalative"), "escalate"), + (UniCase("hopkings"), "hopkins"), + (UniCase("stimilated"), "stimulated"), + (UniCase("subsidizies"), "subsidize"), + (UniCase("intimaty"), "intimately"), + (UniCase("shepharded"), "shepherd"), + (UniCase("propagandises"), "propagandizes"), + (UniCase("keychan"), "keychain"), + (UniCase("deovtion"), "devotion"), + (UniCase("valubale"), "valuable"), + (UniCase("expectany"), "expectancy"), + (UniCase("microscopice"), "microscope"), + (UniCase("implementasi"), "implements"), + (UniCase("previos"), "previous"), + (UniCase("probelmatic"), "problematic"), + (UniCase("episdoes"), "episodes"), + (UniCase("sovereinity"), "sovereignty"), + (UniCase("westernisation"), "westernization"), + (UniCase("inferiorty"), "inferiority"), + (UniCase("substracting"), "subtracting"), + (UniCase("nutirents"), "nutrients"), + (UniCase("observasion"), "observations"), + (UniCase("parituclar"), "particular"), + (UniCase("pestisides"), "pesticides"), + (UniCase("contradicitons"), "contradictions"), + (UniCase("considerabley"), "considerably"), + (UniCase("exponencial"), "exponential"), + (UniCase("continentais"), "continents"), + (UniCase("hipsanics"), "hispanics"), + (UniCase("mecahnically"), "mechanically"), + (UniCase("testestorone"), "testosterone"), + (UniCase("productivos"), "productions"), + (UniCase("retreive"), "retrieve"), + (UniCase("transfos"), "transforms"), + (UniCase("progressos"), "progresses"), + (UniCase("colour"), "color"), + (UniCase("costumized"), "customized"), + (UniCase("seperatley"), "seperate"), + (UniCase("tempalte"), "template"), + (UniCase("excelent"), "excellent"), + (UniCase("installion"), "installing"), + (UniCase("scruitny"), "scrutiny"), + (UniCase("addicitons"), "addictions"), + (UniCase("steriods"), "steroids"), + (UniCase("compitetion"), "competitions"), + (UniCase("marryied"), "married"), + (UniCase("electon"), "election"), + (UniCase("sensores"), "sensors"), + (UniCase("saxaphone"), "saxophone"), + (UniCase("lasgana"), "lasagna"), + (UniCase("streightened"), "straightened"), + (UniCase("maintanence"), "maintenance"), + (UniCase("authoratitive"), "authoritative"), + (UniCase("fontrier"), "fontier"), + (UniCase("exculsivly"), "exclusively"), + (UniCase("prokrastination"), "procrastination"), + (UniCase("phyiscal"), "physical"), + (UniCase("compinsate"), "compensate"), + (UniCase("interpresonal"), "interpersonal"), + (UniCase("stroy"), "story"), + (UniCase("reinstale"), "reinstalled"), + (UniCase("righetousness"), "righteousness"), + (UniCase("procalimed"), "proclaimed"), + (UniCase("truely"), "truly"), + (UniCase("doapmine"), "dopamine"), + (UniCase("verstaile"), "versatile"), + (UniCase("dialled"), "dialed"), + (UniCase("judaisim"), "judaism"), + (UniCase("absorbtion"), "absorption"), + (UniCase("catapillar"), "caterpillar"), + (UniCase("polishs"), "polishes"), + (UniCase("socialised"), "socialized"), + (UniCase("krypyonite"), "kryptonite"), + (UniCase("inferioara"), "inferior"), + (UniCase("relexation"), "relegation"), + (UniCase("unpleasent"), "unpleasant"), + (UniCase("thristy"), "thirsty"), + (UniCase("littiefinger"), "littlefinger"), + (UniCase("necesarily"), "necessarily"), + (UniCase("viewpoit"), "viewpoints"), + (UniCase("proveribal"), "proverbial"), + (UniCase("prophechies"), "prophecies"), + (UniCase("allegedley"), "allegedly"), + (UniCase("lukid"), "likud"), + (UniCase("primarly"), "primarily"), + (UniCase("antiviurs"), "antivirus"), + (UniCase("restricitve"), "restrictive"), + (UniCase("seamlessy"), "seamlessly"), + (UniCase("rigntone"), "ringtone"), + (UniCase("mistread"), "mistreated"), + (UniCase("bastardised"), "bastardized"), + (UniCase("fanficiton"), "fanfiction"), + (UniCase("sentancing"), "sentencing"), + (UniCase("bloodporne"), "bloodborne"), + (UniCase("definitie"), "definitive"), + (UniCase("concentraited"), "concentrated"), + (UniCase("agressively"), "aggressively"), + (UniCase("initalises"), "initialises"), + (UniCase("wilderniss"), "wilderness"), + (UniCase("abilty"), "ability"), + (UniCase("harmonise"), "harmonize"), + (UniCase("bastardising"), "bastardizing"), + (UniCase("reciporcate"), "reciprocate"), + (UniCase("obersvant"), "observant"), + (UniCase("onsluaght"), "onslaught"), + (UniCase("traveller"), "traveler"), + (UniCase("souvenier"), "souvenir"), + (UniCase("unreasonalby"), "unreasonably"), + (UniCase("homosexuella"), "homosexual"), + (UniCase("protestos"), "protests"), + (UniCase("socialisim"), "socialism"), + (UniCase("opposiste"), "opposites"), + (UniCase("enligthen"), "enlighten"), + (UniCase("californican"), "californian"), + (UniCase("definatelly"), "definately"), + (UniCase("exeptional"), "exceptional"), + (UniCase("goldifsh"), "goldfish"), + (UniCase("chemestry"), "chemistry"), + (UniCase("homosexuel"), "homosexual"), + (UniCase("acceleartion"), "acceleration"), + (UniCase("parliementary"), "parliamentary"), + (UniCase("cringery"), "cringey"), + (UniCase("sydnrome"), "syndrome"), + (UniCase("merchat"), "merchant"), + (UniCase("beggining"), "beginning"), + (UniCase("fininsh"), "finnish"), + (UniCase("deflatin"), "deflation"), + (UniCase("decalres"), "declares"), + (UniCase("oprhans"), "orphans"), + (UniCase("betrayd"), "betrayed"), + (UniCase("inifnity"), "infinity"), + (UniCase("pedophilies"), "pedophile"), + (UniCase("microcentro"), "microcenter"), + (UniCase("overhearting"), "overreacting"), + (UniCase("masturbsting"), "masturbating"), + (UniCase("authoritatian"), "authoritarian"), + (UniCase("acquisiton"), "acquisition"), + (UniCase("comfortablly"), "comfortably"), + (UniCase("protfolio"), "portfolio"), + (UniCase("incidentially"), "incidentally"), + (UniCase("octopuns"), "octopus"), + (UniCase("fatalaties"), "fatalities"), + (UniCase("democarcies"), "democracies"), + (UniCase("manifestano"), "manifesto"), + (UniCase("absoultely"), "absolutely"), + (UniCase("grandchilren"), "grandchildren"), + (UniCase("overlorded"), "overloaded"), + (UniCase("toxaemia"), "toxemia"), + (UniCase("fondamentalist"), "fundamentalist"), + (UniCase("miraculousy"), "miraculously"), + (UniCase("territorry"), "territory"), + (UniCase("composision"), "compositions"), + (UniCase("electorlytes"), "electrolytes"), + (UniCase("complicatred"), "complicate"), + (UniCase("recpetive"), "receptive"), + (UniCase("preinitalizes"), "preinitializes"), + (UniCase("trintiy"), "trinity"), + (UniCase("proprotion"), "proportion"), + (UniCase("castlers"), "castles"), + (UniCase("equilibruim"), "equilibrium"), + (UniCase("kinghts"), "knights"), + (UniCase("comminists"), "communists"), + (UniCase("awknowledges"), "acknowledges"), + (UniCase("disciplanary"), "disciplinary"), + (UniCase("subconscius"), "subconscious"), + (UniCase("distincitve"), "distinctive"), + (UniCase("consequente"), "consequence"), + (UniCase("preciselly"), "precisely"), + (UniCase("criticie"), "criticise"), + (UniCase("sacrificied"), "sacrifice"), + (UniCase("overwhelmingy"), "overwhelmingly"), + (UniCase("eliminaste"), "eliminates"), + (UniCase("exersising"), "exercising"), + (UniCase("embarassig"), "embarassing"), + (UniCase("scrpited"), "scripted"), + (UniCase("eveyrones"), "everyones"), + (UniCase("antiquited"), "antiquated"), + (UniCase("occuring"), "occurring"), + (UniCase("womanised"), "womanized"), + (UniCase("situationnal"), "situational"), + (UniCase("stationerad"), "stationed"), + (UniCase("illustraded"), "illustrated"), + (UniCase("husbans"), "husbands"), + (UniCase("armourers"), "armorers"), + (UniCase("architecutral"), "architectural"), + (UniCase("vareity"), "variety"), + (UniCase("entilted"), "entitled"), + (UniCase("circluating"), "circulating"), + (UniCase("referense"), "references"), + (UniCase("disticnt"), "distinct"), + (UniCase("ptiched"), "pitched"), + (UniCase("clincially"), "clinically"), + (UniCase("antidepresssants"), "antidepressants"), + (UniCase("predections"), "predictions"), + (UniCase("awesomeley"), "awesomely"), + (UniCase("converying"), "converting"), + (UniCase("stromed"), "stormed"), + (UniCase("componenet"), "components"), + (UniCase("embarrasment"), "embarrassment"), + (UniCase("uncensered"), "uncensored"), + (UniCase("littlefiner"), "littlefinger"), + (UniCase("webiste"), "website"), + (UniCase("impanelling"), "impaneling"), + (UniCase("dimenions"), "dimensions"), + (UniCase("podmeos"), "podemos"), + (UniCase("hellfie"), "hellfire"), + (UniCase("aqcuisition"), "acquisition"), + (UniCase("misinterpretted"), "misinterpreted"), + (UniCase("overemphasising"), "overemphasizing"), + (UniCase("organie"), "organise"), + (UniCase("hanuted"), "haunted"), + (UniCase("reslove"), "resolve"), + (UniCase("dipthong"), "diphthong"), + (UniCase("prefectly"), "perfectly"), + (UniCase("styrofom"), "styrofoam"), + (UniCase("overshaddow"), "overshadowed"), + (UniCase("wisconsion"), "wisconsin"), + (UniCase("hyperbrophy"), "hypertrophy"), + (UniCase("althought"), "although"), + (UniCase("altogheter"), "altogether"), + (UniCase("photograhed"), "photographed"), + (UniCase("delepted"), "depleted"), + (UniCase("barrakcs"), "barracks"), + (UniCase("knowledgible"), "knowledgable"), + (UniCase("symbolisch"), "symbolic"), + (UniCase("perdicting"), "predicting"), + (UniCase("perfektion"), "perfection"), + (UniCase("restrcited"), "restricted"), + (UniCase("spontaneouly"), "spontaneously"), + (UniCase("electronis"), "electronics"), + (UniCase("heavyweigth"), "heavyweight"), + (UniCase("virutes"), "virtues"), + (UniCase("mulittasking"), "multitasking"), + (UniCase("perordered"), "preordered"), + (UniCase("classrooom"), "classroom"), + (UniCase("narcisissts"), "narcissist"), + (UniCase("discriminatie"), "discriminate"), + (UniCase("acquiantances"), "acquaintances"), + (UniCase("reconnoitre"), "reconnoiter"), + (UniCase("jailbrocken"), "jailbroken"), + (UniCase("intermideate"), "intermediate"), + (UniCase("hwihc"), "which"), + (UniCase("informarlo"), "informal"), + (UniCase("fiedlity"), "fidelity"), + (UniCase("somethinng"), "somethings"), + (UniCase("sensetional"), "sensational"), + (UniCase("relized"), "realised"), + (UniCase("dinsoaur"), "dinosaur"), + (UniCase("hyopthetically"), "hypothetically"), + (UniCase("relfects"), "reflects"), + (UniCase("fascistisk"), "fascists"), + (UniCase("infestions"), "infections"), + (UniCase("opthalmic"), "ophthalmic"), + (UniCase("disctintions"), "distinctions"), + (UniCase("retrocatively"), "retroactively"), + (UniCase("conversatives"), "conservatives"), + (UniCase("attirtion"), "attrition"), + (UniCase("collaterol"), "collateral"), + (UniCase("perpatuate"), "perpetuate"), + (UniCase("sebastiaan"), "sebastian"), + (UniCase("milwuakee"), "milwaukee"), + (UniCase("gruseome"), "gruesome"), + (UniCase("applicaiton"), "application"), + (UniCase("simplisity"), "simplicity"), + (UniCase("accidentlly"), "accidently"), + (UniCase("brillianty"), "brilliantly"), + (UniCase("ceremonias"), "ceremonies"), + (UniCase("skateboader"), "skateboard"), + (UniCase("hypertropy"), "hypertrophy"), + (UniCase("rationalizaiton"), "rationalization"), + (UniCase("arlighty"), "alrighty"), + (UniCase("promocional"), "promotional"), + (UniCase("harmonising"), "harmonizing"), + (UniCase("protestantes"), "protestants"), + (UniCase("medicince"), "medicine"), + (UniCase("tortialls"), "tortillas"), + (UniCase("adovcacy"), "advocacy"), + (UniCase("parrallel"), "parallel"), + (UniCase("regulaters"), "regulators"), + (UniCase("todya"), "today"), + (UniCase("historiaan"), "historians"), + (UniCase("xeonphobic"), "xenophobic"), + (UniCase("elephantis"), "elephants"), + (UniCase("collaborato"), "collaboration"), + (UniCase("fellowshop"), "fellowship"), + (UniCase("basicly"), "basically"), + (UniCase("barbarin"), "barbarian"), + (UniCase("skeletaal"), "skeletal"), + (UniCase("hinderance"), "hindrance"), + (UniCase("labourers"), "laborers"), + (UniCase("accelaration"), "acceleration"), + (UniCase("aranged"), "arranged"), + (UniCase("tasselled"), "tasseled"), + (UniCase("snyergy"), "synergy"), + (UniCase("mysteriousy"), "mysteriously"), + (UniCase("bellweather"), "bellwether"), + (UniCase("prerogitive"), "prerogative"), + (UniCase("instutions"), "intuitions"), + (UniCase("challender"), "challenger"), + (UniCase("assasins"), "assassins"), + (UniCase("powerhosue"), "powerhouse"), + (UniCase("microtransacting"), "microtransactions"), + (UniCase("derogotary"), "derogatory"), + (UniCase("levelling"), "leveling"), + (UniCase("compolsury"), "compulsory"), + (UniCase("procrastiantion"), "procrastination"), + (UniCase("quarantena"), "quarantine"), + (UniCase("seflies"), "selfies"), + (UniCase("virtualy"), "virtually"), + (UniCase("signitory"), "signatory"), + (UniCase("preserverd"), "preserved"), + (UniCase("unilaterallly"), "unilaterally"), + (UniCase("torphies"), "trophies"), + (UniCase("critized"), "criticized"), + (UniCase("expectes"), "expects"), + (UniCase("simplier"), "simpler"), + (UniCase("demoliting"), "demolition"), + (UniCase("negativley"), "negatively"), + (UniCase("trinagle"), "triangle"), + (UniCase("markeras"), "markers"), + (UniCase("reportadly"), "reportedly"), + (UniCase("publissher"), "publisher"), + (UniCase("provisiosn"), "provision"), + (UniCase("guaranteeds"), "guarantees"), + (UniCase("inspeccion"), "inspection"), + (UniCase("authroized"), "authorized"), + (UniCase("emition"), "emission"), + (UniCase("interewbs"), "interwebs"), + (UniCase("authoritay"), "authority"), + (UniCase("incrompehensible"), "incomprehensible"), + (UniCase("exectued"), "executed"), + (UniCase("specisl"), "specials"), + (UniCase("altheticism"), "athleticism"), + (UniCase("tremelos"), "tremolos"), + (UniCase("possesss"), "possesses"), + (UniCase("conection"), "connection"), + (UniCase("ukrainain"), "ukrainian"), + (UniCase("knowlegdable"), "knowledgable"), + (UniCase("remenicent"), "reminiscent"), + (UniCase("revelance"), "relevance"), + (UniCase("incremenets"), "increments"), + (UniCase("manupulating"), "manipulating"), + (UniCase("documenteries"), "documentaries"), + (UniCase("healthercare"), "healthcare"), + (UniCase("resovles"), "resolves"), + (UniCase("perpatrator"), "perpetrator"), + (UniCase("proporties"), "properties"), + (UniCase("accidently"), "accidentally"), + (UniCase("anitvirus"), "antivirus"), + (UniCase("ingition"), "ignition"), + (UniCase("wintesses"), "witnesses"), + (UniCase("explanitary"), "explanatory"), + (UniCase("inpending"), "impending"), + (UniCase("conclued"), "conclude"), + (UniCase("unregulared"), "unregulated"), + (UniCase("brussells"), "brussels"), + (UniCase("telegrpah"), "telegraph"), + (UniCase("corrolation"), "correlation"), + (UniCase("mutliation"), "mutilation"), + (UniCase("comparativley"), "comparatively"), + (UniCase("spontanious"), "spontaneous"), + (UniCase("caridac"), "cardiac"), + (UniCase("disensitized"), "desensitized"), + (UniCase("activiting"), "activating"), + (UniCase("humilitied"), "humiliated"), + (UniCase("repsonded"), "responded"), + (UniCase("napcakes"), "pancakes"), + (UniCase("fallicious"), "fallacious"), + (UniCase("definative"), "definitive"), + (UniCase("abondons"), "abandons"), + (UniCase("futuristc"), "futuristic"), + (UniCase("releived"), "relieved"), + (UniCase("spred"), "spread"), + (UniCase("hunderd"), "hundred"), + (UniCase("professionalisation"), "professionalization"), + (UniCase("conferenze"), "conference"), + (UniCase("stratagically"), "strategically"), + (UniCase("relinqushment"), "relinquishment"), + (UniCase("aborigional"), "aboriginal"), + (UniCase("triggerring"), "triggering"), + (UniCase("apologitic"), "apologetic"), + (UniCase("encyrpt"), "encrypt"), + (UniCase("successfullly"), "successfully"), + (UniCase("perspectivas"), "perspectives"), + (UniCase("academicos"), "academics"), + (UniCase("levellers"), "levelers"), + (UniCase("differnt"), "different"), + (UniCase("sympathyze"), "sympathize"), + (UniCase("battleshop"), "battleship"), + (UniCase("overwirte"), "overwrite"), + (UniCase("manufcaturers"), "manufactures"), + (UniCase("gemoetry"), "geometry"), + (UniCase("homecuming"), "homecoming"), + (UniCase("vaibility"), "viability"), + (UniCase("generocity"), "generosity"), + (UniCase("airplans"), "airplanes"), + (UniCase("enthusiaists"), "enthusiasts"), + (UniCase("industrees"), "industries"), + (UniCase("kitches"), "kitchens"), + (UniCase("incremetal"), "incremental"), + (UniCase("critisism"), "criticism"), + (UniCase("invisibily"), "invisibility"), + (UniCase("endoresment"), "endorsement"), + (UniCase("anniversiary"), "anniversary"), + (UniCase("lunatis"), "lunatics"), + (UniCase("hungray"), "hungary"), + (UniCase("descened"), "descend"), + (UniCase("supllemental"), "supplemental"), + (UniCase("hillarious"), "hilarious"), + (UniCase("exmaple"), "example"), + (UniCase("perfromances"), "performances"), + (UniCase("millionairs"), "millionaires"), + (UniCase("trushworthy"), "trustworthy"), + (UniCase("testiclular"), "testicular"), + (UniCase("demonstrant"), "demonstrate"), + (UniCase("atomspheric"), "atmospheric"), + (UniCase("desingage"), "disengage"), + (UniCase("exacberate"), "exacerbated"), + (UniCase("kryptonie"), "kryptonite"), + (UniCase("origional"), "original"), + (UniCase("carptener"), "carpenter"), + (UniCase("reserverad"), "reserved"), + (UniCase("recepients"), "recipients"), + (UniCase("grammitical"), "grammatical"), + (UniCase("scheems"), "schemes"), + (UniCase("programmeur"), "programmer"), + (UniCase("thirten"), "thirteen"), + (UniCase("boardcasting"), "broadcasting"), + (UniCase("palyerbase"), "playerbase"), + (UniCase("centrefolds"), "centerfolds"), + (UniCase("architexts"), "architects"), + (UniCase("subcultuur"), "subculture"), + (UniCase("caclulated"), "calculated"), + (UniCase("aspahlt"), "asphalt"), + (UniCase("alterantives"), "alternatives"), + (UniCase("nazionalists"), "nationalists"), + (UniCase("misunderstadning"), "misunderstandings"), + (UniCase("perxoide"), "peroxide"), + (UniCase("furstrates"), "frustrates"), + (UniCase("supsects"), "suspects"), + (UniCase("eiter"), "either"), + (UniCase("inadiquate"), "inadequate"), + (UniCase("reproduccion"), "reproduction"), + (UniCase("definitevely"), "definitively"), + (UniCase("sunderlund"), "sunderland"), + (UniCase("nationailty"), "nationality"), + (UniCase("utilising"), "utilizing"), + (UniCase("socailizing"), "socializing"), + (UniCase("birmingharam"), "birmingham"), + (UniCase("temporali"), "temporarily"), + (UniCase("childrents"), "childrens"), + (UniCase("touranments"), "tournaments"), + (UniCase("cuntaminated"), "contaminated"), + (UniCase("prototye"), "prototype"), + (UniCase("suppoed"), "supposed"), + (UniCase("requime"), "requiem"), + (UniCase("delcaration"), "declaration"), + (UniCase("oging"), "going"), + (UniCase("parenthesys"), "parentheses"), + (UniCase("maybilline"), "maybelline"), + (UniCase("gogin"), "going"), + (UniCase("dominacion"), "domination"), + (UniCase("creulty"), "cruelty"), + (UniCase("mountian"), "mountain"), + (UniCase("reverals"), "reversal"), + (UniCase("lenght"), "length"), + (UniCase("pretentous"), "pretentious"), + (UniCase("sinistre"), "sinister"), + (UniCase("egpytians"), "egyptians"), + (UniCase("canides"), "candies"), + (UniCase("detorit"), "detroit"), + (UniCase("favourably"), "favorably"), + (UniCase("unworhty"), "unworthy"), + (UniCase("subconsicously"), "subconsciously"), + (UniCase("productivty"), "productivity"), + (UniCase("beraded"), "bearded"), + (UniCase("dispraportionate"), "disproportionate"), + (UniCase("pitchfolks"), "pitchforks"), + (UniCase("larwence"), "lawrence"), + (UniCase("piegons"), "pigeons"), + (UniCase("conversatoin"), "conversations"), + (UniCase("stamnia"), "stamina"), + (UniCase("bookmarkd"), "bookmarked"), + (UniCase("religous"), "religious"), + (UniCase("substancially"), "substantially"), + (UniCase("oppononent"), "opponent"), + (UniCase("receptos"), "receptors"), + (UniCase("theese"), "these"), + (UniCase("purchacing"), "purchasing"), + (UniCase("dishonet"), "dishonesty"), + (UniCase("mircoscopic"), "microscopic"), + (UniCase("statuser"), "stature"), + (UniCase("speices"), "species"), + (UniCase("jennigns"), "jennings"), + (UniCase("pronounes"), "pronouns"), + (UniCase("inproving"), "improving"), + (UniCase("stationnary"), "stationary"), + (UniCase("ecidious"), "deciduous"), + (UniCase("fortunatelly"), "fortunately"), + (UniCase("accelorated"), "accelerated"), + (UniCase("corresponders"), "corresponds"), + (UniCase("imparital"), "impartial"), + (UniCase("biejing"), "beijing"), + (UniCase("unconsicous"), "unconscious"), + (UniCase("harmonised"), "harmonized"), + (UniCase("dispairty"), "disparity"), + (UniCase("cariactures"), "caricature"), + (UniCase("conspriacy"), "conspiracy"), + (UniCase("vocabularily"), "vocabulary"), + (UniCase("creationst"), "creationist"), + (UniCase("careflly"), "carefully"), + (UniCase("symtpoms"), "symptoms"), + (UniCase("commerorative"), "commemorative"), + (UniCase("tortila"), "tortilla"), + (UniCase("roachers"), "roaches"), + (UniCase("unusaully"), "unusually"), + (UniCase("sentimentalising"), "sentimentalizing"), + (UniCase("corporacion"), "corporation"), + (UniCase("coctail"), "cocktail"), + (UniCase("escalato"), "escalation"), + (UniCase("sympathised"), "sympathized"), + (UniCase("mircophones"), "microphones"), + (UniCase("disscusions"), "discussions"), + (UniCase("suseptible"), "susceptible"), + (UniCase("similairty"), "similarity"), + (UniCase("taiwanesse"), "taiwanese"), + (UniCase("andriod"), "android"), + (UniCase("speach"), "speech"), + (UniCase("aboriginial"), "aboriginal"), + (UniCase("internediate"), "intermediate"), + (UniCase("passivs"), "passives"), + (UniCase("armageddan"), "armageddon"), + (UniCase("momentarilly"), "momentarily"), + (UniCase("unexpectdly"), "unexpectedly"), + (UniCase("continuuum"), "continuum"), + (UniCase("unsed"), "used"), + (UniCase("defenesless"), "defenseless"), + (UniCase("chinees"), "chinese"), + (UniCase("reasonablly"), "reasonably"), + (UniCase("mecahnical"), "mechanical"), + (UniCase("permisson"), "permission"), + (UniCase("reflectivos"), "reflections"), + (UniCase("recommendes"), "recommends"), + (UniCase("cockroachs"), "cockroaches"), + (UniCase("landacapes"), "landscapes"), + (UniCase("historicas"), "historians"), + (UniCase("defenderlos"), "defenders"), + (UniCase("repsonsive"), "responsive"), + (UniCase("polititian"), "politician"), + (UniCase("persistense"), "persistence"), + (UniCase("anniversarry"), "anniversary"), + (UniCase("adbomen"), "abdomen"), + (UniCase("dispencary"), "dispensary"), + (UniCase("cockaroches"), "cockroaches"), + (UniCase("metroploitan"), "metropolitan"), + (UniCase("canoncial"), "canonical"), + (UniCase("deomcrats"), "democrats"), + (UniCase("libertarianisme"), "libertarians"), + (UniCase("presens"), "presents"), + (UniCase("collonade"), "colonnade"), + (UniCase("coutnerproductive"), "counterproductive"), + (UniCase("shileding"), "shielding"), + (UniCase("stimulas"), "stimulants"), + (UniCase("infenro"), "inferno"), + (UniCase("emmiting"), "emitting"), + (UniCase("miraculu"), "miraculous"), + (UniCase("foregin"), "foreign"), + (UniCase("posesses"), "possesses"), + (UniCase("predessecors"), "predecessors"), + (UniCase("ahtletes"), "athletes"), + (UniCase("construcive"), "constructive"), + (UniCase("invulernable"), "invulnerable"), + (UniCase("futhermore"), "furthermore"), + (UniCase("overhwlemingly"), "overwhelmingly"), + (UniCase("architet"), "architect"), + (UniCase("copenhagun"), "copenhagen"), + (UniCase("resteraunt"), "restaurant"), + (UniCase("dogding"), "dodging"), + (UniCase("undermineras"), "undermines"), + (UniCase("probelms"), "problems"), + (UniCase("adjectivs"), "adjectives"), + (UniCase("htink"), "think"), + (UniCase("chiselled"), "chiseled"), + (UniCase("privelidge"), "privileged"), + (UniCase("struggeld"), "struggled"), + (UniCase("swepth"), "swept"), + (UniCase("domianting"), "dominating"), + (UniCase("transofrm"), "transform"), + (UniCase("patronises"), "patronizes"), + (UniCase("dehumanise"), "dehumanize"), + (UniCase("molestarle"), "molester"), + (UniCase("valour"), "valor"), + (UniCase("inventario"), "inventor"), + (UniCase("terroist"), "terrorist"), + (UniCase("burtally"), "brutally"), + (UniCase("disguntingly"), "disgustingly"), + (UniCase("epsresso"), "espresso"), + (UniCase("parcelling"), "parceling"), + (UniCase("suspensie"), "suspense"), + (UniCase("dispostion"), "disposition"), + (UniCase("succoured"), "succored"), + (UniCase("mathmatician"), "mathematician"), + (UniCase("circumstantual"), "circumstantial"), + (UniCase("vulnurabilities"), "vulnerabilities"), + (UniCase("imploys"), "employs"), + (UniCase("hopefuly"), "hopefully"), + (UniCase("sweidsh"), "swedish"), + (UniCase("archetpyes"), "archetypes"), + (UniCase("experiened"), "experienced"), + (UniCase("temporairly"), "temporarily"), + (UniCase("scyhter"), "scyther"), + (UniCase("vitmains"), "vitamins"), + (UniCase("duaghters"), "daughters"), + (UniCase("ridiculouly"), "ridiculously"), + (UniCase("autoctonous"), "autochthonous"), + (UniCase("criminalises"), "criminalizes"), + (UniCase("sohw"), "show"), + (UniCase("planatery"), "planetary"), + (UniCase("resistanes"), "resistances"), + (UniCase("acheivable"), "achievable"), + (UniCase("spreadsheeters"), "spreadsheets"), + (UniCase("manufacteur"), "manufactures"), + (UniCase("ritalian"), "ritalin"), + (UniCase("quantaties"), "quantities"), + (UniCase("ommited"), "omitted"), + (UniCase("calrify"), "clarify"), + (UniCase("revolutionay"), "revolutionary"), + (UniCase("extrapolant"), "extrapolate"), + (UniCase("cumulatative"), "cumulative"), + (UniCase("transphopic"), "transphobic"), + (UniCase("stigmatise"), "stigmatize"), + (UniCase("cenitpede"), "centipede"), + (UniCase("substitued"), "substitute"), + (UniCase("aersopace"), "aerospace"), + (UniCase("possably"), "possibly"), + (UniCase("cirticising"), "criticising"), + (UniCase("corparations"), "corporations"), + (UniCase("adequitely"), "adequately"), + (UniCase("anoxeric"), "anorexic"), + (UniCase("mormonsim"), "mormonism"), + (UniCase("oragnered"), "orangered"), + (UniCase("hypocrates"), "hypocrites"), + (UniCase("buoancy"), "buoyancy"), + (UniCase("affintiy"), "affinity"), + (UniCase("similarlly"), "similarly"), + (UniCase("seduciton"), "seduction"), + (UniCase("neigborhood"), "neighborhood"), + (UniCase("donwvoting"), "downvoting"), + (UniCase("counterracts"), "counterparts"), + (UniCase("demostration"), "demonstration"), + (UniCase("provincija"), "provincial"), + (UniCase("breathis"), "breaths"), + (UniCase("presentaiton"), "presentations"), + (UniCase("refrigerador"), "refrigerator"), + (UniCase("forigven"), "forgiven"), + (UniCase("consequental"), "consequently"), + (UniCase("downvotest"), "downvoters"), + (UniCase("recriational"), "recreational"), + (UniCase("skillsofts"), "skillshots"), + (UniCase("intrigueing"), "intriguing"), + (UniCase("expectaion"), "expectation"), + (UniCase("knoweldge"), "knowledge"), + (UniCase("sanitises"), "sanitizes"), + (UniCase("assosiates"), "associates"), + (UniCase("aslo"), "also"), + (UniCase("developmnet"), "developments"), + (UniCase("margarite"), "margaret"), + (UniCase("regulatorias"), "regulators"), + (UniCase("emphasised"), "emphasized"), + (UniCase("enitrely"), "entirely"), + (UniCase("bureuacrats"), "bureaucrats"), + (UniCase("independenly"), "independently"), + (UniCase("bodybuilidng"), "bodybuilding"), + (UniCase("destruciton"), "destruction"), + (UniCase("bullitproof"), "bulletproof"), + (UniCase("distribuit"), "distribute"), + (UniCase("prostethic"), "prosthetic"), + (UniCase("seperates"), "separates"), + (UniCase("reviewes"), "reviewers"), + (UniCase("recuiting"), "recruiting"), + (UniCase("parameds"), "paramedics"), + (UniCase("strawburries"), "strawberries"), + (UniCase("leaglize"), "legalize"), + (UniCase("immigrantes"), "immigrants"), + (UniCase("cruellest"), "cruelest"), + (UniCase("intoxination"), "intoxication"), + (UniCase("creationsism"), "creationism"), + (UniCase("desingers"), "designers"), + (UniCase("contributiors"), "contributors"), + (UniCase("specialisation"), "specialization"), + (UniCase("empahty"), "empathy"), + (UniCase("similtaneous"), "simultaneous"), + (UniCase("nacrotics"), "narcotics"), + (UniCase("paraphrashed"), "paraphrase"), + (UniCase("hindrence"), "hindrance"), + (UniCase("manafactured"), "manufactured"), + (UniCase("delegative"), "delegate"), + (UniCase("integrade"), "integrated"), + (UniCase("beleivable"), "believable"), + (UniCase("resistent"), "resistant"), + (UniCase("nonsenscial"), "nonsensical"), + (UniCase("opprotunity"), "opportunity"), + (UniCase("respectuflly"), "respectfully"), + (UniCase("cirlcing"), "circling"), + (UniCase("emotionaly"), "emotionally"), + (UniCase("impeccible"), "impeccable"), + (UniCase("corosion"), "corrosion"), + (UniCase("tempertaure"), "temperature"), + (UniCase("substansially"), "substantially"), + (UniCase("fanatsize"), "fantasize"), + (UniCase("straigt"), "straight"), + (UniCase("bombardement"), "bombardment"), + (UniCase("effortlessley"), "effortlessly"), + (UniCase("becusae"), "becuase"), + (UniCase("volounteering"), "volunteering"), + (UniCase("satelite"), "satellite"), + (UniCase("missisippi"), "mississippi"), + (UniCase("verbalising"), "verbalizing"), + (UniCase("taxanomy"), "taxonomy"), + (UniCase("deinitalizes"), "deinitializes"), + (UniCase("consistensy"), "consistency"), + (UniCase("volunterring"), "volunteering"), + (UniCase("attitide"), "attitude"), + (UniCase("intellectuels"), "intellectuals"), + (UniCase("instructivo"), "instruction"), + (UniCase("qualfiiers"), "qualifiers"), + (UniCase("materialsim"), "materialism"), + (UniCase("simultaneoulsy"), "simultaneously"), + (UniCase("vietnamesse"), "vietnamese"), + (UniCase("dupicate"), "duplicate"), + (UniCase("cheques"), "checks"), + (UniCase("properies"), "properties"), + (UniCase("presude"), "presumed"), + (UniCase("bookmakred"), "bookmarked"), + (UniCase("payed"), "paid"), + (UniCase("controceptives"), "contraceptives"), + (UniCase("resoruces"), "resources"), + (UniCase("experiancing"), "experiencing"), + (UniCase("pedopholia"), "pedophilia"), + (UniCase("symphatizer"), "sympathizers"), + (UniCase("distractia"), "district"), + (UniCase("pyjamas"), "pajamas"), + (UniCase("priestes"), "priests"), + (UniCase("bittersweat"), "bittersweet"), + (UniCase("antisipation"), "anticipation"), + (UniCase("fertilised"), "fertilized"), + (UniCase("vriety"), "variety"), + (UniCase("percentagens"), "percentages"), + (UniCase("comisioned"), "commissioned"), + (UniCase("broadcastes"), "broadcasts"), + (UniCase("unitesstates"), "unitedstates"), + (UniCase("trancending"), "transcending"), + (UniCase("africas"), "africans"), + (UniCase("desnity"), "density"), + (UniCase("drnik"), "drink"), + (UniCase("satsifaction"), "satisfaction"), + (UniCase("invertions"), "inventions"), + (UniCase("concluso"), "conclusion"), + (UniCase("experiances"), "experiences"), + (UniCase("nighlty"), "nightly"), + (UniCase("prestigiu"), "prestigious"), + (UniCase("interpretion"), "interpreting"), + (UniCase("onot"), "note"), + (UniCase("unuseable"), "unusable"), + (UniCase("penalises"), "penalizes"), + (UniCase("alternitively"), "alternatively"), + (UniCase("genuinley"), "genuinely"), + (UniCase("mysogonistic"), "misogynistic"), + (UniCase("utlimately"), "ultimately"), + (UniCase("mathematicas"), "mathematics"), + (UniCase("decidely"), "decidedly"), + (UniCase("condicional"), "conditional"), + (UniCase("bizzare"), "bizarre"), + (UniCase("clitorius"), "clitoris"), + (UniCase("disciplinas"), "disciplines"), + (UniCase("photograher"), "photographer"), + (UniCase("compliants"), "complaints"), + (UniCase("renaissaince"), "renaissance"), + (UniCase("chatolic"), "catholic"), + (UniCase("dermatoligist"), "dermatologist"), + (UniCase("persectuion"), "persecution"), + (UniCase("bloodboorne"), "bloodborne"), + (UniCase("opitmal"), "optimal"), + (UniCase("annihliation"), "annihilation"), + (UniCase("posession"), "possession"), + (UniCase("transparenty"), "transparency"), + (UniCase("uniformes"), "uniforms"), + (UniCase("commiest"), "commits"), + (UniCase("impliments"), "implements"), + (UniCase("apsergers"), "aspergers"), + (UniCase("whta"), "what"), + (UniCase("caluculate"), "calculate"), + (UniCase("videojames"), "videogames"), + (UniCase("organismer"), "organise"), + (UniCase("exsitent"), "existent"), + (UniCase("uesfull"), "usefull"), + (UniCase("cannibas"), "cannabis"), + (UniCase("headhpone"), "headphone"), + (UniCase("complicaties"), "complicate"), + (UniCase("protestents"), "protestants"), + (UniCase("vollyeball"), "volleyball"), + (UniCase("announcemnt"), "announcement"), + (UniCase("substitutues"), "substitutes"), + (UniCase("unpopulair"), "unpopular"), + (UniCase("susbcribe"), "subscribe"), + (UniCase("destinatons"), "destinations"), + (UniCase("palaeontologist"), "paleontologist"), + (UniCase("quantitaive"), "quantitative"), + (UniCase("definit"), "definite"), + (UniCase("instincs"), "instincts"), + (UniCase("burguny"), "burgundy"), + (UniCase("prefarably"), "preferably"), + (UniCase("obtainible"), "obtainable"), + (UniCase("pristen"), "pristine"), + (UniCase("resignition"), "resignation"), + (UniCase("diplomma"), "diploma"), + (UniCase("moralising"), "moralizing"), + (UniCase("enthusiasum"), "enthusiasm"), + (UniCase("marraige"), "marriage"), + (UniCase("innovativo"), "innovation"), + (UniCase("addictin"), "addictions"), + (UniCase("traverlers"), "traverse"), + (UniCase("synoynms"), "synonyms"), + (UniCase("psychiatirst"), "psychiatrists"), + (UniCase("possesing"), "possessing"), + (UniCase("remarcably"), "remarkably"), + (UniCase("culturs"), "cultures"), + (UniCase("synegry"), "synergy"), + (UniCase("fonetic"), "phonetic"), + (UniCase("comparabile"), "comparable"), + (UniCase("stronkhold"), "stronghold"), + (UniCase("pseudononymous"), "pseudonymous"), + (UniCase("victorinus"), "victorious"), + (UniCase("legimitate"), "legitimate"), + (UniCase("affliciton"), "affliction"), + (UniCase("seinors"), "seniors"), + (UniCase("vurnerabilities"), "vulnerabilities"), + (UniCase("coorperation"), "cooperation"), + (UniCase("micorwaves"), "microwaves"), + (UniCase("assassinare"), "assassinate"), + (UniCase("presentase"), "presents"), + (UniCase("scaepgoat"), "scapegoat"), + (UniCase("introversy"), "introverts"), + (UniCase("conqeur"), "conquer"), + (UniCase("independantly"), "independently"), + (UniCase("precisou"), "precious"), + (UniCase("capactiors"), "capacitors"), + (UniCase("oylmpic"), "olympic"), + (UniCase("wief"), "wife"), + (UniCase("wesbtrook"), "westbrook"), + (UniCase("pornagraphy"), "pornography"), + (UniCase("rainbos"), "rainbows"), + (UniCase("monumnets"), "monuments"), + (UniCase("vertification"), "certification"), + (UniCase("predujiced"), "prejudiced"), + (UniCase("internus"), "interns"), + (UniCase("cabinent"), "cabinet"), + (UniCase("subculter"), "subculture"), + (UniCase("revelatons"), "revelations"), + (UniCase("cannisters"), "canisters"), + (UniCase("dungeos"), "dungeons"), + (UniCase("subsrcibers"), "subscribers"), + (UniCase("epitomie"), "epitome"), + (UniCase("emergenices"), "emergencies"), + (UniCase("herculeans"), "hercules"), + (UniCase("punisse"), "punishes"), + (UniCase("automitive"), "automotive"), + (UniCase("goddammt"), "goddammit"), + (UniCase("jurisidctions"), "jurisdictions"), + (UniCase("boycutting"), "boycotting"), + (UniCase("scarifice"), "sacrifice"), + (UniCase("brightern"), "brighten"), + (UniCase("termigator"), "terminator"), + (UniCase("discusting"), "discussing"), + (UniCase("regulalry"), "regularly"), + (UniCase("inbelievable"), "unbelievable"), + (UniCase("reamined"), "remained"), + (UniCase("permise"), "premise"), + (UniCase("ukrainisn"), "ukrainians"), + (UniCase("antennea"), "antenna"), + (UniCase("tentacreul"), "tentacle"), + (UniCase("housr"), "hours"), + (UniCase("compitation"), "computation"), + (UniCase("sanhedrim"), "sanhedrin"), + (UniCase("exlcuded"), "excluded"), + (UniCase("favorties"), "favorites"), + (UniCase("conclsuion"), "concussion"), + (UniCase("equivilants"), "equivalents"), + (UniCase("overreactin"), "overreaction"), + (UniCase("lonlieness"), "loneliness"), + (UniCase("crapenter"), "carpenter"), + (UniCase("specializaiton"), "specialization"), + (UniCase("manipulant"), "manipulate"), + (UniCase("grafield"), "garfield"), + (UniCase("defensese"), "defenseless"), + (UniCase("sandnig"), "sanding"), + (UniCase("theorits"), "theorist"), + (UniCase("grassrooots"), "grassroots"), + (UniCase("samuari"), "samurai"), + (UniCase("illuminami"), "illuminati"), + (UniCase("interruptis"), "interrupts"), + (UniCase("depseration"), "desperation"), + (UniCase("enchantmant"), "enchantment"), + (UniCase("insubstantiated"), "unsubstantiated"), + (UniCase("liberalises"), "liberalizes"), + (UniCase("delyaing"), "delaying"), + (UniCase("coururier"), "courier"), + (UniCase("negotiatians"), "negotiations"), + (UniCase("attributo"), "attribution"), + (UniCase("viligante"), "vigilante"), + (UniCase("reveral"), "reversal"), + (UniCase("perpretators"), "perpetrators"), + (UniCase("creationistas"), "creationists"), + (UniCase("phenomenona"), "phenomena"), + (UniCase("missisipi"), "mississippi"), + (UniCase("discretited"), "discredited"), + (UniCase("categorise"), "categorize"), + (UniCase("equalises"), "equalizes"), + (UniCase("symmetria"), "symmetrical"), + (UniCase("responcive"), "responsive"), + (UniCase("farhenheit"), "fahrenheit"), + (UniCase("deadpol"), "deadpool"), + (UniCase("recipricate"), "reciprocate"), + (UniCase("accompinied"), "accompanied"), + (UniCase("fraudalent"), "fraudulent"), + (UniCase("nationaly"), "nationally"), + (UniCase("consturction"), "construction"), + (UniCase("obliterared"), "obliterated"), + (UniCase("demoralisation"), "demoralization"), + (UniCase("copenhagn"), "copenhagen"), + (UniCase("levaithan"), "leviathan"), + (UniCase("arbirtary"), "arbitrary"), + (UniCase("klenex"), "kleenex"), + (UniCase("foootball"), "football"), + (UniCase("optimised"), "optimized"), + (UniCase("kintergarten"), "kindergarten"), + (UniCase("michagan"), "michigan"), + (UniCase("protable"), "portable"), + (UniCase("extendos"), "extends"), + (UniCase("transicion"), "transition"), + (UniCase("distuingishing"), "distinguishing"), + (UniCase("glorifindel"), "glorified"), + (UniCase("overtapping"), "overlapping"), + (UniCase("endeavouring"), "endeavoring"), + (UniCase("studing"), "studying"), + (UniCase("renmants"), "remnants"), + (UniCase("chanisaw"), "chainsaw"), + (UniCase("formalise"), "formalize"), + (UniCase("neuralogical"), "neurological"), + (UniCase("diganose"), "diagnose"), + (UniCase("compession"), "compassion"), + (UniCase("sebastin"), "sebastian"), + (UniCase("panellists"), "panelists"), + (UniCase("yuo"), "you"), + (UniCase("varity"), "variety"), + (UniCase("depdending"), "depending"), + (UniCase("snowfalke"), "snowflake"), + (UniCase("legitimicy"), "legitimacy"), + (UniCase("allign"), "align"), + (UniCase("predection"), "prediction"), + (UniCase("capatilists"), "capitalists"), + (UniCase("underpowererd"), "underpowered"), + (UniCase("becomeing"), "becoming"), + (UniCase("critisizes"), "criticises"), + (UniCase("inquisiting"), "inquisition"), + (UniCase("obligitory"), "obligatory"), + (UniCase("americaps"), "americas"), + (UniCase("ulitmate"), "ultimate"), + (UniCase("aksreddit"), "askreddit"), + (UniCase("supportors"), "supporters"), + (UniCase("essencial"), "essential"), + (UniCase("installent"), "installment"), + (UniCase("slaptoon"), "splatoon"), + (UniCase("mangets"), "magnets"), + (UniCase("foetus"), "fetus"), + (UniCase("occationally"), "occasionally"), + (UniCase("southen"), "southern"), + (UniCase("conesencus"), "consensus"), + (UniCase("salaris"), "salaries"), + (UniCase("administartors"), "administrators"), + (UniCase("representetive"), "representative"), + (UniCase("unpridictable"), "unpredictable"), + (UniCase("neighbourhoud"), "neighbourhood"), + (UniCase("mineras"), "minerals"), + (UniCase("culturaly"), "culturally"), + (UniCase("prominantely"), "prominently"), + (UniCase("improvents"), "improves"), + (UniCase("clasification"), "clarification"), + (UniCase("diagonsed"), "diagnosed"), + (UniCase("anonamously"), "anonymously"), + (UniCase("misslies"), "missiles"), + (UniCase("availabe"), "available"), + (UniCase("microphen"), "microphone"), + (UniCase("geomtery"), "geometry"), + (UniCase("orangism"), "organism"), + (UniCase("grativational"), "gravitational"), + (UniCase("nothingsness"), "nothingness"), + (UniCase("regrest"), "regrets"), + (UniCase("developpers"), "developers"), + (UniCase("enthusigasm"), "enthusiasm"), + (UniCase("circulacion"), "circulation"), + (UniCase("objectivily"), "objectivity"), + (UniCase("kryptinite"), "kryptonite"), + (UniCase("communicatoin"), "communications"), + (UniCase("electricty"), "electricity"), + (UniCase("camboda"), "cambodia"), + (UniCase("zionisim"), "zionism"), + (UniCase("manufacterers"), "manufacturers"), + (UniCase("battelstar"), "battlestar"), + (UniCase("barbariens"), "barbarians"), + (UniCase("customizble"), "customizable"), + (UniCase("candidatas"), "candidates"), + (UniCase("psychologycal"), "psychologically"), + (UniCase("adeilade"), "adelaide"), + (UniCase("puasing"), "pausing"), + (UniCase("overwhelminly"), "overwhelmingly"), + (UniCase("spawnig"), "spawning"), + (UniCase("accoring"), "according"), + (UniCase("passporters"), "passports"), + (UniCase("presistent"), "persistent"), + (UniCase("prioretize"), "prioritize"), + (UniCase("funnelled"), "funneled"), + (UniCase("handlare"), "handler"), + (UniCase("understoon"), "understood"), + (UniCase("minumum"), "minimum"), + (UniCase("quesitoning"), "questioning"), + (UniCase("inspiraton"), "inspiration"), + (UniCase("scaricity"), "scarcity"), + (UniCase("burritto"), "burrito"), + (UniCase("scorebored"), "scoreboard"), + (UniCase("youseff"), "yousef"), + (UniCase("coverted"), "converted"), + (UniCase("repressent"), "represents"), + (UniCase("weirods"), "weirdos"), + (UniCase("zimbabwae"), "zimbabwe"), + (UniCase("prescirbed"), "prescribed"), + (UniCase("stilus"), "stylus"), + (UniCase("sensationaism"), "sensationalism"), + (UniCase("affinitiy"), "affinity"), + (UniCase("sasuage"), "sausage"), + (UniCase("defineatly"), "definately"), + (UniCase("associatin"), "associations"), + (UniCase("vietmanese"), "vietnamese"), + (UniCase("governmetn"), "governments"), + (UniCase("unemployeed"), "unemployed"), + (UniCase("belabour"), "belabor"), + (UniCase("convingi"), "convincing"), + (UniCase("perticularly"), "particularly"), + (UniCase("counciles"), "councils"), + (UniCase("theathre"), "theater"), + (UniCase("characterists"), "characteristics"), + (UniCase("vertigro"), "vertigo"), + (UniCase("haircuit"), "haircut"), + (UniCase("cannotation"), "connotation"), + (UniCase("laboratoy"), "laboratory"), + (UniCase("trivialise"), "trivialize"), + (UniCase("spiralled"), "spiraled"), + (UniCase("outlcassed"), "outclassed"), + (UniCase("terminolgy"), "terminology"), + (UniCase("pessimestic"), "pessimistic"), + (UniCase("complusive"), "compulsive"), + (UniCase("settlemens"), "settlements"), + (UniCase("referign"), "refering"), + (UniCase("resloves"), "resolves"), + (UniCase("intervenion"), "intervening"), + (UniCase("criminalising"), "criminalizing"), + (UniCase("impliciet"), "implicit"), + (UniCase("announceing"), "announcing"), + (UniCase("inconsequantial"), "inconsequential"), + (UniCase("palestinain"), "palestinians"), + (UniCase("detaild"), "detailed"), + (UniCase("indivuduals"), "individuals"), + (UniCase("personalis"), "personas"), + (UniCase("amongts"), "amongst"), + (UniCase("enchantmet"), "enchantments"), + (UniCase("referal"), "referral"), + (UniCase("abstanence"), "abstinence"), + (UniCase("analogue"), "analog"), + (UniCase("substitutivo"), "substitution"), + (UniCase("stupire"), "stupider"), + (UniCase("constracting"), "constructing"), + (UniCase("indigineous"), "indigenous"), + (UniCase("circluar"), "circular"), + (UniCase("govermnet"), "goverment"), + (UniCase("elphant"), "elephant"), + (UniCase("immenint"), "imminent"), + (UniCase("superiour"), "superior"), + (UniCase("transcripcion"), "transcription"), + (UniCase("parenthesees"), "parentheses"), + (UniCase("incrediable"), "incredible"), + (UniCase("soundrtack"), "soundtracks"), + (UniCase("familiarised"), "familiarized"), + (UniCase("condiut"), "conduit"), + (UniCase("sociopats"), "sociopaths"), + (UniCase("actualiy"), "actuality"), + (UniCase("neighboor"), "neighbor"), + (UniCase("consistantly"), "consistently"), + (UniCase("supervison"), "supervision"), + (UniCase("jsutification"), "justifications"), + (UniCase("scientis"), "scientist"), + (UniCase("fanserivce"), "fanservice"), + (UniCase("harased"), "harassed"), + (UniCase("shakesperean"), "shakespeare"), + (UniCase("victomized"), "victimized"), + (UniCase("subsedized"), "subsidized"), + (UniCase("recievd"), "recieved"), + (UniCase("uncontrallable"), "uncontrollable"), + (UniCase("autocorrrect"), "autocorrect"), + (UniCase("laboritory"), "laboratory"), + (UniCase("productivy"), "productivity"), + (UniCase("prepatory"), "preparatory"), + (UniCase("accelleration"), "acceleration"), + (UniCase("grievences"), "grievances"), + (UniCase("philosophios"), "philosophies"), + (UniCase("goddanm"), "goddamn"), + (UniCase("californains"), "californian"), + (UniCase("platfrom"), "platform"), + (UniCase("conditiond"), "conditioned"), + (UniCase("worldivew"), "worldview"), + (UniCase("philippides"), "philippines"), + (UniCase("buddihsts"), "buddhists"), + (UniCase("caclulating"), "calculating"), + (UniCase("hypokrites"), "hypocrites"), + (UniCase("encyrpted"), "encrypted"), + (UniCase("countriside"), "countryside"), + (UniCase("compensantion"), "compensation"), + (UniCase("yaching"), "yachting"), + (UniCase("initalizing"), "initializing"), + (UniCase("orgnaisation"), "organisations"), + (UniCase("influental"), "influential"), + (UniCase("homeonwers"), "homeowners"), + (UniCase("geneticaly"), "genetically"), + (UniCase("exploitating"), "exploitation"), + (UniCase("mansluaghter"), "manslaughter"), + (UniCase("architectual"), "architectural"), + (UniCase("opthalmology"), "ophthalmology"), + (UniCase("declaracion"), "declaration"), + (UniCase("sysadmn"), "sysadmin"), + (UniCase("dimesnions"), "dimensions"), + (UniCase("marshalled"), "marshaled"), + (UniCase("singularily"), "singularity"), + (UniCase("chronologial"), "chronological"), + (UniCase("humanitarion"), "humanitarian"), + (UniCase("unhapppy"), "unhappy"), + (UniCase("chancellour"), "chancellor"), + (UniCase("disrection"), "discretion"), + (UniCase("visualise"), "visualize"), + (UniCase("prerequisities"), "prerequisite"), + (UniCase("insistis"), "insists"), + (UniCase("nominacion"), "nomination"), + (UniCase("gammeode"), "gamemode"), + (UniCase("validitity"), "validity"), + (UniCase("bridman"), "birdman"), + (UniCase("passowrds"), "passwords"), + (UniCase("compensare"), "compensate"), + (UniCase("preferantial"), "preferential"), + (UniCase("austitic"), "autistic"), + (UniCase("oustpoken"), "outspoken"), + (UniCase("pilrgim"), "pilgrim"), + (UniCase("channelled"), "channeled"), + (UniCase("astronomicly"), "astronomical"), + (UniCase("priotities"), "priorities"), + (UniCase("maintaing"), "maintaining"), + (UniCase("smeesters"), "semesters"), + (UniCase("moreso"), "more"), + (UniCase("liberalisation"), "liberalization"), + (UniCase("teansylvania"), "transylvania"), + (UniCase("fantistically"), "fantastically"), + (UniCase("cigarete"), "cigarettes"), + (UniCase("inconditional"), "unconditional"), + (UniCase("medicad"), "medicaid"), + (UniCase("conolization"), "colonization"), + (UniCase("unqualifed"), "unqualified"), + (UniCase("unproducive"), "unproductive"), + (UniCase("paederasts"), "pederasts"), + (UniCase("amphitheatre"), "amphitheater"), + (UniCase("coordonator"), "coordinator"), + (UniCase("franchie"), "franchises"), + (UniCase("critisize"), "criticise"), + (UniCase("complicatii"), "complicit"), + (UniCase("sunglases"), "sunglasses"), + (UniCase("patroitism"), "patriotism"), + (UniCase("banannas"), "bananas"), + (UniCase("cassowarry"), "cassowary"), + (UniCase("congratuate"), "congratulate"), + (UniCase("capabilitiy"), "capability"), + (UniCase("tranistioned"), "transitioned"), + (UniCase("accomadating"), "accommodating"), + (UniCase("brazilains"), "brazilians"), + (UniCase("compense"), "compensate"), + (UniCase("workstaton"), "workstation"), + (UniCase("vitualization"), "visualization"), + (UniCase("explictly"), "explicitly"), + (UniCase("yosimete"), "yosemite"), + (UniCase("pasteurising"), "pasteurizing"), + (UniCase("glitchly"), "glitchy"), + (UniCase("automatonic"), "automation"), + (UniCase("pummelling"), "pummeled"), + (UniCase("transporteurs"), "transporter"), + (UniCase("stumbeld"), "stumbled"), + (UniCase("criticisng"), "criticising"), + (UniCase("centrepieces"), "centerpieces"), + (UniCase("trasnparent"), "transparent"), + (UniCase("loosley"), "loosely"), + (UniCase("digitising"), "digitizing"), + (UniCase("stopry"), "story"), + (UniCase("billegerent"), "belligerent"), + (UniCase("vandalsim"), "vandalism"), + (UniCase("refrigarator"), "refrigerator"), + (UniCase("existentiella"), "existential"), + (UniCase("unconventionnal"), "unconventional"), + (UniCase("multipls"), "multiples"), + (UniCase("unsubscibe"), "unsubscribe"), + (UniCase("sponsorhips"), "sponsorship"), + (UniCase("throrough"), "thorough"), + (UniCase("partiotic"), "patriotic"), + (UniCase("sunifre"), "sunfire"), + (UniCase("evaluacion"), "evaluation"), + (UniCase("unbalnaced"), "unbalanced"), + (UniCase("pyscic"), "psychic"), + (UniCase("despicible"), "despicable"), + (UniCase("provencial"), "provincial"), + (UniCase("watermeleon"), "watermelon"), + (UniCase("coordinatore"), "coordinate"), + (UniCase("spreadshet"), "spreadsheet"), + (UniCase("hyperthropy"), "hypertrophy"), + (UniCase("moribdly"), "morbidly"), + (UniCase("predickted"), "predicated"), + (UniCase("concioussness"), "consciousness"), + (UniCase("illuminaci"), "illuminati"), + (UniCase("pernament"), "permanent"), + (UniCase("diconnects"), "disconnects"), + (UniCase("implementas"), "implements"), + (UniCase("juridisction"), "jurisdictions"), + (UniCase("terminoligy"), "terminology"), + (UniCase("repsonsibility"), "responsibility"), + (UniCase("coordiantion"), "coordination"), + (UniCase("maniuplate"), "manipulate"), + (UniCase("naviagting"), "navigating"), + (UniCase("distinclty"), "distinctly"), + (UniCase("arogent"), "arrogant"), + (UniCase("alimoney"), "alimony"), + (UniCase("spoitfy"), "spotify"), + (UniCase("instalation"), "installation"), + (UniCase("breastfeading"), "breastfeeding"), + (UniCase("baptisim"), "baptism"), + (UniCase("extrapolerat"), "extrapolate"), + (UniCase("coordinador"), "coordinator"), + (UniCase("konckback"), "knockback"), + (UniCase("discontued"), "discounted"), + (UniCase("predomiantly"), "predominately"), + (UniCase("dehyrdated"), "dehydrated"), + (UniCase("adeladie"), "adelaide"), + (UniCase("ongewild"), "gonewild"), + (UniCase("influentual"), "influential"), + (UniCase("priveliges"), "privileges"), + (UniCase("illustre"), "illustrate"), + (UniCase("blessins"), "blessings"), + (UniCase("dissobedience"), "disobedience"), + (UniCase("extemporised"), "extemporized"), + (UniCase("associato"), "association"), + (UniCase("manipulare"), "manipulate"), + (UniCase("adveristy"), "adversity"), + (UniCase("exlcusives"), "exclusives"), + (UniCase("balnaced"), "balanced"), + (UniCase("repersented"), "represented"), + (UniCase("consideracion"), "consideration"), + (UniCase("tigther"), "tighter"), + (UniCase("priveleged"), "privileged"), + (UniCase("gunanine"), "guanine"), + (UniCase("categoried"), "categorized"), + (UniCase("entertianment"), "entertainment"), + (UniCase("asssits"), "assists"), + (UniCase("comperhension"), "comprehension"), + (UniCase("progressief"), "progressive"), + (UniCase("tournamet"), "tournament"), + (UniCase("intolernace"), "intolerance"), + (UniCase("mormonts"), "mormons"), + (UniCase("acquisito"), "acquisition"), + (UniCase("neccessarily"), "necessarily"), + (UniCase("foriegner"), "foreigner"), + (UniCase("knowlegdeable"), "knowledgeable"), + (UniCase("economistes"), "economists"), + (UniCase("nuculear"), "nuclear"), + (UniCase("appreicating"), "appreciating"), + (UniCase("inutition"), "intuition"), + (UniCase("pateince"), "patience"), + (UniCase("incompatabilities"), "incompatibilities"), + (UniCase("condradiction"), "contradiction"), + (UniCase("componants"), "components"), + (UniCase("jericoh"), "jericho"), + (UniCase("persuded"), "persuaded"), + (UniCase("micoscopy"), "microscopy"), + (UniCase("novembeard"), "november"), + (UniCase("paraphrazing"), "paraphrasing"), + (UniCase("macarino"), "macaroni"), + (UniCase("crayones"), "crayons"), + (UniCase("scottisch"), "scottish"), + (UniCase("projectiel"), "projectiles"), + (UniCase("superioare"), "superior"), + (UniCase("achievents"), "achieves"), + (UniCase("initalize"), "initialize"), + (UniCase("boutqiue"), "boutique"), + (UniCase("intersectionals"), "intersections"), + (UniCase("understandebly"), "understandably"), + (UniCase("overwhleming"), "overwhelming"), + (UniCase("rferences"), "references"), + (UniCase("battlehips"), "battleship"), + (UniCase("furthremore"), "furthermore"), + (UniCase("tournyes"), "tourneys"), + (UniCase("pretensious"), "pretentious"), + (UniCase("relfections"), "reflections"), + (UniCase("circumstential"), "circumstantial"), + (UniCase("relativly"), "relatively"), + (UniCase("inconcistencies"), "inconsistencies"), + (UniCase("unpreductive"), "unproductive"), + (UniCase("identificacion"), "identification"), + (UniCase("chronice"), "chronicles"), + (UniCase("inconsciously"), "unconsciously"), + (UniCase("gaurentee"), "guarantee"), + (UniCase("euthanaisa"), "euthanasia"), + (UniCase("promptus"), "prompts"), + (UniCase("seraching"), "searching"), + (UniCase("cartilege"), "cartilage"), + (UniCase("desensitising"), "desensitizing"), + (UniCase("libertarianists"), "libertarians"), + (UniCase("entrepeneurs"), "entrepreneurs"), + (UniCase("shnaghai"), "shanghai"), + (UniCase("complimentoni"), "complimenting"), + (UniCase("farenheit"), "fahrenheit"), + (UniCase("eyeshdaow"), "eyeshadow"), + (UniCase("synchronises"), "synchronizes"), + (UniCase("theorising"), "theorizing"), + (UniCase("fundamendalist"), "fundamentalist"), + (UniCase("funnilly"), "funnily"), + (UniCase("gigabye"), "gigabyte"), + (UniCase("projecties"), "projectiles"), + (UniCase("passione"), "passionate"), + (UniCase("accommadation"), "accommodation"), + (UniCase("manfiest"), "manifest"), + (UniCase("dehumanised"), "dehumanized"), + (UniCase("belguim"), "belgium"), + (UniCase("subscriped"), "subscribed"), + (UniCase("torchilght"), "torchlight"), + (UniCase("economicos"), "economics"), + (UniCase("prerequiste"), "prerequisite"), + (UniCase("prolouge"), "prologue"), + (UniCase("publicy"), "publicly"), + (UniCase("terrorise"), "terrorize"), + (UniCase("behaivours"), "behaviours"), + (UniCase("enchantent"), "enchantment"), + (UniCase("weakneses"), "weakness"), + (UniCase("compulisve"), "compulsive"), + (UniCase("articualte"), "articulate"), + (UniCase("unpresedented"), "unprecedented"), + (UniCase("prodcutions"), "productions"), + (UniCase("romainan"), "romanian"), + (UniCase("republcians"), "republicans"), + (UniCase("hospitaly"), "hospitality"), + (UniCase("intolerace"), "intolerance"), + (UniCase("homeophaty"), "homeopathy"), + (UniCase("nuturing"), "nurturing"), + (UniCase("mccarhty"), "mccarthy"), + (UniCase("assoicated"), "associated"), + (UniCase("comprehand"), "comprehend"), + (UniCase("physciatrist"), "psychiatrist"), + (UniCase("relativisme"), "relatives"), + (UniCase("finishs"), "finishes"), + (UniCase("bastardos"), "bastards"), + (UniCase("concesso"), "concession"), + (UniCase("intricasies"), "intricacies"), + (UniCase("elektrolytes"), "electrolytes"), + (UniCase("disqualifyed"), "disqualified"), + (UniCase("assit"), "assist"), + (UniCase("exceuting"), "executing"), + (UniCase("dieties"), "deities"), + (UniCase("sotrylines"), "storylines"), + (UniCase("mesmerises"), "mesmerizes"), + (UniCase("worldveiw"), "worldview"), + (UniCase("accessorise"), "accessorize"), + (UniCase("girlfriens"), "girlfriends"), + (UniCase("kidnapning"), "kidnapping"), + (UniCase("unliaterally"), "unilaterally"), + (UniCase("misunderstandind"), "misunderstandings"), + (UniCase("horizantally"), "horizontally"), + (UniCase("airrcraft"), "aircraft"), + (UniCase("compromisses"), "compromises"), + (UniCase("transalte"), "translate"), + (UniCase("lentills"), "lentils"), + (UniCase("industrialied"), "industrialized"), + (UniCase("degrassse"), "degrasse"), + (UniCase("introvertis"), "introverts"), + (UniCase("southerness"), "southerners"), + (UniCase("differenciate"), "differentiate"), + (UniCase("heavywieght"), "heavyweight"), + (UniCase("baristia"), "barista"), + (UniCase("somethiong"), "somethin"), + (UniCase("rethoric"), "rhetoric"), + (UniCase("deram"), "dram"), + (UniCase("promotionnal"), "promotional"), + (UniCase("concentate"), "concentrate"), + (UniCase("destruktion"), "destruction"), + (UniCase("postion"), "position"), + (UniCase("lacklaster"), "lackluster"), + (UniCase("concidering"), "considering"), + (UniCase("avergaes"), "averages"), + (UniCase("negoitating"), "negotiating"), + (UniCase("liquidiser"), "liquidizer"), + (UniCase("constructicon"), "construction"), + (UniCase("punshiments"), "punishments"), + (UniCase("overhal"), "overhaul"), + (UniCase("missigno"), "mission"), + (UniCase("superstitous"), "superstitious"), + (UniCase("recuring"), "recurring"), + (UniCase("harmoniacs"), "harmonic"), + (UniCase("interchangabley"), "interchangeably"), + (UniCase("emmisions"), "emissions"), + (UniCase("investiagtive"), "investigative"), + (UniCase("percieve"), "perceive"), + (UniCase("missionares"), "missionaries"), + (UniCase("discograpy"), "discography"), + (UniCase("transformes"), "transformers"), + (UniCase("translpant"), "transplants"), + (UniCase("operativne"), "operative"), + (UniCase("amrstrong"), "armstrong"), + (UniCase("anayltical"), "analytical"), + (UniCase("phenomemon"), "phenomenon"), + (UniCase("conveyd"), "conveyed"), + (UniCase("afternarket"), "aftermarket"), + (UniCase("managment"), "management"), + (UniCase("anywyas"), "anyways"), + (UniCase("streamys"), "streams"), + (UniCase("optimises"), "optimizes"), + (UniCase("terroristas"), "terrorists"), + (UniCase("marvellous"), "marvelous"), + (UniCase("prominance"), "prominence"), + (UniCase("significatly"), "significantly"), + (UniCase("individus"), "individuals"), + (UniCase("pasteurised"), "pasteurized"), + (UniCase("professionials"), "professionalism"), + (UniCase("collectes"), "collects"), + (UniCase("mississppi"), "mississippi"), + (UniCase("electorn"), "electron"), + (UniCase("acheviable"), "achievable"), + (UniCase("montanta"), "montana"), + (UniCase("behavoiurs"), "behaviours"), + (UniCase("caramelises"), "caramelizes"), + (UniCase("inventer"), "inventor"), + (UniCase("modernised"), "modernized"), + (UniCase("syas"), "says"), + (UniCase("rationalizaton"), "rationalization"), + (UniCase("importence"), "importance"), + (UniCase("segregacion"), "segregation"), + (UniCase("numberous"), "numerous"), + (UniCase("homewolrd"), "homeworld"), + (UniCase("rienforced"), "reinforced"), + (UniCase("adernaline"), "adrenaline"), + (UniCase("perosnas"), "personas"), + (UniCase("corrpution"), "corruption"), + (UniCase("tagliate"), "tailgate"), + (UniCase("discriminatorie"), "discriminate"), + (UniCase("arrengements"), "arrangements"), + (UniCase("mechanis"), "mechanics"), + (UniCase("masturbare"), "masturbate"), + (UniCase("affleunt"), "affluent"), + (UniCase("traumatised"), "traumatized"), + (UniCase("masculanity"), "masculinity"), + (UniCase("desitnations"), "destinations"), + (UniCase("behove"), "behoove"), + (UniCase("railrod"), "railroad"), + (UniCase("undoubedtly"), "undoubtedly"), + (UniCase("sparyed"), "sprayed"), + (UniCase("inpsiration"), "inspiration"), + (UniCase("amtheyst"), "amethyst"), + (UniCase("bargani"), "bargain"), + (UniCase("disclosue"), "disclosure"), + (UniCase("desensitied"), "desensitized"), + (UniCase("regularily"), "regularly"), + (UniCase("ukrainias"), "ukrainians"), + (UniCase("praries"), "prairies"), + (UniCase("konservative"), "conservative"), + (UniCase("aforementionned"), "aforementioned"), + (UniCase("compolsive"), "compulsive"), + (UniCase("multiplater"), "multiplayer"), + (UniCase("tridnet"), "trident"), + (UniCase("golitah"), "goliath"), + (UniCase("rollercoater"), "rollercoaster"), + (UniCase("gatherins"), "gatherings"), + (UniCase("recrutied"), "recruited"), + (UniCase("ganster"), "gangster"), + (UniCase("faoming"), "foaming"), + (UniCase("dominiant"), "dominant"), + (UniCase("permade"), "premade"), + (UniCase("penguings"), "penguins"), + (UniCase("unifnished"), "unfinished"), + (UniCase("frointer"), "frontier"), + (UniCase("acronymes"), "acronyms"), + (UniCase("averageifs"), "averages"), + (UniCase("libertarain"), "libertarian"), + (UniCase("compatabilities"), "compatibilities"), + (UniCase("holdiay"), "holiday"), + (UniCase("desentisize"), "desensitized"), + (UniCase("documentarsi"), "documentaries"), + (UniCase("proselytiser"), "proselytizer"), + (UniCase("performancepcs"), "performances"), + (UniCase("masteriers"), "masteries"), + (UniCase("unrestriced"), "unrestricted"), + (UniCase("cassettte"), "cassette"), + (UniCase("prometheyus"), "prometheus"), + (UniCase("imprefection"), "imperfections"), + (UniCase("identitets"), "identities"), + (UniCase("thursdsay"), "thursdays"), + (UniCase("minimalt"), "minimalist"), + (UniCase("miscarrage"), "miscarriage"), + (UniCase("protostants"), "protestants"), + (UniCase("percusssion"), "percussion"), + (UniCase("willingless"), "willingness"), + (UniCase("orgainsation"), "organisation"), + (UniCase("mathematitian"), "mathematician"), + (UniCase("propmtly"), "promptly"), + (UniCase("empathises"), "empathizes"), + (UniCase("lustre"), "luster"), + (UniCase("christmans"), "christians"), + (UniCase("pornogrpahy"), "pornography"), + (UniCase("hispanicus"), "hispanics"), + (UniCase("legislativo"), "legislation"), + (UniCase("extemporise"), "extemporize"), + (UniCase("recuriters"), "recruiters"), + (UniCase("overlappping"), "overlapping"), + (UniCase("freedomest"), "freedoms"), + (UniCase("handlebards"), "handlebars"), + (UniCase("defanitly"), "defiantly"), + (UniCase("techincality"), "technicality"), + (UniCase("kineitc"), "kinetic"), + (UniCase("headqaurters"), "headquarters"), + (UniCase("resperatory"), "respiratory"), + (UniCase("truthfullly"), "truthfully"), + (UniCase("invisibiltiy"), "invisibility"), + (UniCase("precendece"), "precedence"), + (UniCase("methodolgy"), "methodology"), + (UniCase("amublance"), "ambulance"), + (UniCase("unexpectadly"), "unexpectedly"), + (UniCase("distingishes"), "distinguishes"), + (UniCase("misundrestanding"), "misunderstandings"), + (UniCase("regualtors"), "regulators"), + (UniCase("firslty"), "firstly"), + (UniCase("sympathsize"), "sympathize"), + (UniCase("inexpenisve"), "inexpensive"), + (UniCase("crankenstein"), "frankenstein"), + (UniCase("achilleus"), "achilles"), + (UniCase("leigons"), "legions"), + (UniCase("maintianed"), "maintained"), + (UniCase("halp"), "help"), + (UniCase("comferting"), "comforting"), + (UniCase("scientits"), "scientist"), + (UniCase("planetas"), "planets"), + (UniCase("charicterized"), "characterized"), + (UniCase("satasfaction"), "satisfaction"), + (UniCase("millimetre"), "millimeter"), + (UniCase("astranomical"), "astronomical"), + (UniCase("volcando"), "volcano"), + (UniCase("dossapointed"), "dissapointed"), + (UniCase("revolutionising"), "revolutionizing"), + (UniCase("headhsot"), "headshot"), + (UniCase("mainfesto"), "manifesto"), + (UniCase("immunising"), "immunizing"), + (UniCase("overheards"), "overhead"), + (UniCase("chidlfree"), "childfree"), + (UniCase("goodluk"), "goodluck"), + (UniCase("syllabels"), "syllables"), + (UniCase("dispensiary"), "dispensary"), + (UniCase("accountt"), "accountant"), + (UniCase("nonsene"), "nonsense"), + (UniCase("underastimated"), "underestimated"), + (UniCase("straigth"), "straight"), + (UniCase("painkilers"), "painkillers"), + (UniCase("contraddice"), "contradicted"), + (UniCase("merchindise"), "merchandise"), + (UniCase("pacthes"), "patches"), + (UniCase("differenciations"), "differentiation"), + (UniCase("rivalled"), "rivaled"), + (UniCase("panelling"), "paneling"), + (UniCase("favoutrable"), "favourable"), + (UniCase("nominatie"), "nominate"), + (UniCase("indonisian"), "indonesian"), + (UniCase("carbonising"), "carbonizing"), + (UniCase("bestaility"), "bestiality"), + (UniCase("prefered"), "preferred"), + (UniCase("chemcially"), "chemically"), + (UniCase("resotred"), "restored"), + (UniCase("expanisons"), "expansions"), + (UniCase("nightfa;;"), "nightfall"), + (UniCase("miscatalogued"), "miscataloged"), + (UniCase("significato"), "significant"), + (UniCase("manufacturerers"), "manufacturers"), + (UniCase("nihilisim"), "nihilism"), + (UniCase("christianty"), "christianity"), + (UniCase("promtps"), "prompts"), + (UniCase("espeically"), "especially"), + (UniCase("slaughterd"), "slaughtered"), + (UniCase("interefers"), "interferes"), + (UniCase("precisly"), "precisely"), + (UniCase("counterfiet"), "counterfeit"), + (UniCase("prophey"), "prophecy"), + (UniCase("depersonalised"), "depersonalized"), + (UniCase("remmebers"), "remembers"), + (UniCase("parasitisme"), "parasites"), + (UniCase("saught"), "sought"), + (UniCase("contriception"), "contraception"), + (UniCase("justificatin"), "justifications"), + (UniCase("politicain"), "politician"), + (UniCase("practitions"), "practitioners"), + (UniCase("experiemnt"), "experiment"), + (UniCase("industires"), "industries"), + (UniCase("characterise"), "characterize"), + (UniCase("futurisitc"), "futuristic"), + (UniCase("crystalens"), "crystals"), + (UniCase("tommorow"), "tomorrow"), + (UniCase("nigthclub"), "nightclub"), + (UniCase("arguements"), "arguments"), + (UniCase("duleing"), "dueling"), + (UniCase("tabacco"), "tobacco"), + (UniCase("acronysm"), "acronyms"), + (UniCase("apprentie"), "apprentice"), + (UniCase("generaters"), "generates"), + (UniCase("steeles"), "steelers"), + (UniCase("equivalants"), "equivalents"), + (UniCase("necesseraly"), "necessarily"), + (UniCase("preferabbly"), "preferably"), + (UniCase("downtraded"), "downgraded"), + (UniCase("proportionallity"), "proportionally"), + (UniCase("mandats"), "mandates"), + (UniCase("intelligenty"), "intelligently"), + (UniCase("tusedays"), "tuesdays"), + (UniCase("predicessor"), "predecessor"), + (UniCase("neoroscience"), "neuroscience"), + (UniCase("costumizable"), "customizable"), + (UniCase("meancing"), "menacing"), + (UniCase("connectpro"), "connector"), + (UniCase("irrispective"), "irrespective"), + (UniCase("correspondes"), "corresponds"), + (UniCase("pscyhed"), "psyched"), + (UniCase("disrepsectful"), "disrespectful"), + (UniCase("reconsidder"), "reconsider"), + (UniCase("devolvendo"), "devolved"), + (UniCase("representstion"), "representations"), + (UniCase("disastreous"), "disastrous"), + (UniCase("persets"), "presets"), + (UniCase("discreting"), "discretion"), + (UniCase("boutiqe"), "boutique"), + (UniCase("virigns"), "virgins"), + (UniCase("resemblense"), "resembles"), + (UniCase("supremicist"), "supremacist"), + (UniCase("intrumental"), "instrumental"), + (UniCase("brainwasing"), "brainwashing"), + (UniCase("levetates"), "levitates"), + (UniCase("particulary"), "particularly"), + (UniCase("palesitnian"), "palestinians"), + (UniCase("tyelnol"), "tylenol"), + (UniCase("cambride"), "cambridge"), + (UniCase("rollarcoaster"), "rollercoaster"), + (UniCase("aircrafts"), "aircraft"), + (UniCase("slaugthering"), "slaughtering"), + (UniCase("incidentul"), "incidental"), + (UniCase("expences"), "expense"), + (UniCase("constructieve"), "constructive"), + (UniCase("rythem"), "rhythm"), + (UniCase("gipsies"), "gypsies"), + (UniCase("slipperies"), "slippers"), + (UniCase("unappeasing"), "unappealing"), + (UniCase("unsubsrcibe"), "unsubscribe"), + (UniCase("penison"), "pension"), + (UniCase("parapharse"), "paraphrase"), + (UniCase("underestamated"), "underestimated"), + (UniCase("somalija"), "somalia"), + (UniCase("experemental"), "experimental"), + (UniCase("italicise"), "italicize"), + (UniCase("temporising"), "temporizing"), + (UniCase("resintall"), "reinstall"), + (UniCase("calculs"), "calculus"), + (UniCase("fullfill"), "fulfill"), + (UniCase("disappearence"), "disappearance"), + (UniCase("carinval"), "carnival"), + (UniCase("hipothetically"), "hypothetically"), + (UniCase("extroardinarily"), "extraordinarily"), + (UniCase("morevoer"), "moreover"), + (UniCase("lightenning"), "lightening"), + (UniCase("creationsits"), "creationists"), + (UniCase("shevles"), "shelves"), + (UniCase("objectivs"), "objectives"), + (UniCase("wieghts"), "weights"), + (UniCase("betwen"), "between"), + (UniCase("behaviourists"), "behaviorists"), + (UniCase("compatibillity"), "compatibility"), + (UniCase("mediterraean"), "mediterranean"), + (UniCase("chasiss"), "chassis"), + (UniCase("superfluos"), "superfluous"), + (UniCase("criticim"), "criticisms"), + (UniCase("metabolisim"), "metabolism"), + (UniCase("afwully"), "awfully"), + (UniCase("facilites"), "facilities"), + (UniCase("carolan"), "carolina"), + (UniCase("insistas"), "insists"), + (UniCase("essentias"), "essentials"), + (UniCase("womanisers"), "womanizers"), + (UniCase("administraton"), "administration"), + (UniCase("p0enis"), "penis"), + (UniCase("positionning"), "positioning"), + (UniCase("midifelder"), "midfielder"), + (UniCase("herocis"), "heroics"), + (UniCase("constrating"), "constraint"), + (UniCase("bristool"), "bristol"), + (UniCase("immunise"), "immunize"), + (UniCase("illegitamite"), "illegitimate"), + (UniCase("dependat"), "dependant"), + (UniCase("epsionage"), "espionage"), + (UniCase("vulnerabiltiy"), "vulnerability"), + (UniCase("institucionalized"), "institutionalized"), + (UniCase("hystarical"), "hysterical"), + (UniCase("armchar"), "armchair"), + (UniCase("misunderstamding"), "misunderstandings"), + (UniCase("protototype"), "prototype"), + (UniCase("compansating"), "compensating"), + (UniCase("anedoctally"), "anecdotally"), + (UniCase("splittr"), "splitter"), + (UniCase("celullar"), "cellular"), + (UniCase("proporition"), "proposition"), + (UniCase("inexpeirenced"), "inexperience"), + (UniCase("intoxicacion"), "intoxication"), + (UniCase("concenrtation"), "concentrations"), + (UniCase("obliberated"), "obliterated"), + (UniCase("contencious"), "contentious"), + (UniCase("jurisidction"), "jurisdiction"), + (UniCase("metrapolis"), "metropolis"), + (UniCase("permiere"), "premiere"), + (UniCase("explicatif"), "explicit"), + (UniCase("asuterity"), "austerity"), + (UniCase("experiemnts"), "experiments"), + (UniCase("repentent"), "repentant"), + (UniCase("caluclating"), "calculating"), + (UniCase("investige"), "investigate"), + (UniCase("heavyweght"), "heavyweight"), + (UniCase("shenanagans"), "shenanigans"), + (UniCase("thursdsy"), "thursdays"), + (UniCase("enchanct"), "enchant"), + (UniCase("paksitani"), "pakistani"), + (UniCase("chivaly"), "chivalry"), + (UniCase("tranluscent"), "translucent"), + (UniCase("discribe"), "describe"), + (UniCase("reinstallling"), "reinstalling"), + (UniCase("collaberation"), "collaboration"), + (UniCase("spectatularly"), "spectacularly"), + (UniCase("restriktive"), "restrictive"), + (UniCase("monopolios"), "monopolies"), + (UniCase("unbeetable"), "unbeatable"), + (UniCase("componsate"), "compensate"), + (UniCase("memorialise"), "memorialize"), + (UniCase("susceptibile"), "susceptible"), + (UniCase("sligthly"), "slightly"), + (UniCase("clera"), "clear"), + (UniCase("mechinical"), "mechanical"), + (UniCase("meatballls"), "meatballs"), + (UniCase("acknowlegdes"), "acknowledges"), + (UniCase("undoubtely"), "undoubtedly"), + (UniCase("bordlerands"), "borderlands"), + (UniCase("depiciton"), "depiction"), + (UniCase("precedessors"), "predecessors"), + (UniCase("humaniterian"), "humanitarian"), + (UniCase("controdictions"), "contradictions"), + (UniCase("interprered"), "interpreter"), + (UniCase("populaiton"), "populations"), + (UniCase("godlberg"), "goldberg"), + (UniCase("misintrepreted"), "misinterpreted"), + (UniCase("braevry"), "bravery"), + (UniCase("deffine"), "define"), + (UniCase("inexplicablely"), "inexplicably"), + (UniCase("countercoat"), "counteract"), + (UniCase("replacemnt"), "replacement"), + (UniCase("cleanes"), "cleanse"), + (UniCase("activits"), "activities"), + (UniCase("rememberd"), "remembered"), + (UniCase("specualting"), "speculating"), + (UniCase("troubleshooot"), "troubleshoot"), + (UniCase("socailists"), "socialists"), + (UniCase("sudnerland"), "sunderland"), + (UniCase("romanticising"), "romanticizing"), + (UniCase("squrriels"), "squirrels"), + (UniCase("marineros"), "mariners"), + (UniCase("moralises"), "moralizes"), + (UniCase("reintarnation"), "reincarnation"), + (UniCase("calibartion"), "calibration"), + (UniCase("leanr"), "lean"), + (UniCase("avialability"), "availability"), + (UniCase("divisiones"), "divisions"), + (UniCase("agnosticim"), "agnosticism"), + (UniCase("decomposeion"), "decomposition"), + (UniCase("electroylte"), "electrolytes"), + (UniCase("ugpraded"), "upgraded"), + (UniCase("rechargable"), "rechargeable"), + (UniCase("paranoicas"), "paranoia"), + (UniCase("concusison"), "concussions"), + (UniCase("disadvantadge"), "disadvantaged"), + (UniCase("physcially"), "physically"), + (UniCase("legistration"), "registration"), + (UniCase("uncertanity"), "uncertainty"), + (UniCase("tounreys"), "tourneys"), + (UniCase("optinally"), "optimally"), + (UniCase("teamspek"), "teamspeak"), + (UniCase("withdrawin"), "withdrawn"), + (UniCase("snowplough"), "snowplow"), + (UniCase("nostris"), "nostrils"), + (UniCase("marignally"), "marginally"), + (UniCase("pentuim"), "pentium"), + (UniCase("intertvined"), "intertwined"), + (UniCase("overcomeing"), "overcoming"), + (UniCase("scurtiny"), "scrutiny"), + (UniCase("organisationens"), "organisations"), + (UniCase("distrubing"), "disturbing"), + (UniCase("terrorsits"), "terrorists"), + (UniCase("desitnation"), "destination"), + (UniCase("dezentralized"), "decentralized"), + (UniCase("certian"), "certain"), + (UniCase("massachusents"), "massachusetts"), + (UniCase("immortalty"), "immortality"), + (UniCase("transsexaul"), "transsexual"), + (UniCase("statistacally"), "statistically"), + (UniCase("imrpoving"), "improving"), + (UniCase("doctines"), "doctrines"), + (UniCase("underwhelimg"), "underwhelming"), + (UniCase("touranment"), "tournaments"), + (UniCase("irrelivent"), "irrelevant"), + (UniCase("anomoly"), "anomaly"), + (UniCase("revolutionnary"), "revolutionary"), + (UniCase("comprension"), "compression"), + (UniCase("portras"), "portrays"), + (UniCase("impossibily"), "impossibly"), + (UniCase("judgemenal"), "judgemental"), + (UniCase("distribuited"), "distributed"), + (UniCase("evolutionarly"), "evolutionary"), + (UniCase("trancendent"), "transcendent"), + (UniCase("liberalising"), "liberalizing"), + (UniCase("sexualizied"), "sexualized"), + (UniCase("constituit"), "constitute"), + (UniCase("exponantial"), "exponential"), + (UniCase("overpolulation"), "overpopulation"), + (UniCase("harboured"), "harbored"), + (UniCase("perogative"), "prerogative"), + (UniCase("feminim"), "feminism"), + (UniCase("bersekr"), "berserk"), + (UniCase("proclaimation"), "proclamation"), + (UniCase("preveiws"), "previews"), + (UniCase("metabalism"), "metabolism"), + (UniCase("condescendion"), "condescension"), + (UniCase("orginize"), "organise"), + (UniCase("prefessionalism"), "professionalism"), + (UniCase("coytoes"), "coyotes"), + (UniCase("childrends"), "childrens"), + (UniCase("weaknesss"), "weaknesses"), + (UniCase("minstries"), "ministries"), + (UniCase("penninsula"), "peninsula"), + (UniCase("normanday"), "normandy"), + (UniCase("misdeamenor"), "misdemeanor"), + (UniCase("simplicy"), "simplicity"), + (UniCase("dismanlting"), "dismantling"), + (UniCase("brianwashed"), "brainwashed"), + (UniCase("packageid"), "packaged"), + (UniCase("connotacion"), "connotation"), + (UniCase("burgundry"), "burgundy"), + (UniCase("temperarily"), "temporarily"), + (UniCase("amortisation"), "amortization"), + (UniCase("programme"), "program"), + (UniCase("manafacturer"), "manufacturer"), + (UniCase("armagaddon"), "armageddon"), + (UniCase("mozzeralla"), "mozzarella"), + (UniCase("manufaturing"), "manufacturing"), + (UniCase("euphroia"), "euphoria"), + (UniCase("spellig"), "spelling"), + (UniCase("climatiser"), "climates"), + (UniCase("plasticosa"), "plastics"), + (UniCase("invaderats"), "invaders"), + (UniCase("porgramme"), "programme"), + (UniCase("survaillance"), "surveillance"), + (UniCase("chambear"), "chamber"), + (UniCase("hatesink"), "heatsink"), + (UniCase("materiales"), "materials"), + (UniCase("icelings"), "ceilings"), + (UniCase("proponenet"), "proponent"), + (UniCase("assosiation"), "association"), + (UniCase("charactaristics"), "characteristics"), + (UniCase("extensivly"), "extensively"), + (UniCase("btiched"), "bitched"), + (UniCase("epsiodes"), "episodes"), + (UniCase("promotinal"), "promotional"), + (UniCase("retalitation"), "retaliation"), + (UniCase("moderats"), "moderates"), + (UniCase("partical"), "particular"), + (UniCase("carbonise"), "carbonize"), + (UniCase("respecitve"), "respective"), + (UniCase("tonguers"), "tongues"), + (UniCase("exampt"), "exempt"), + (UniCase("respectabile"), "respectable"), + (UniCase("transaciton"), "transactions"), + (UniCase("irrelivant"), "irrelevant"), + (UniCase("compromisse"), "compromises"), + (UniCase("horizonatal"), "horizontal"), + (UniCase("probabilites"), "probabilities"), + (UniCase("symphaty"), "sympathy"), + (UniCase("lonelyness"), "loneliness"), + (UniCase("collaborant"), "collaborate"), + (UniCase("mensutral"), "menstrual"), + (UniCase("appologies"), "apologies"), + (UniCase("magneficent"), "magnificent"), + (UniCase("signficant"), "significant"), + (UniCase("nativelly"), "natively"), + (UniCase("entierly"), "entirely"), + (UniCase("perpretator"), "perpetrators"), + (UniCase("providencie"), "providence"), + (UniCase("desperetly"), "desperately"), + (UniCase("culturels"), "cultures"), + (UniCase("louisviile"), "louisville"), + (UniCase("decoartions"), "decoration"), + (UniCase("canistre"), "canister"), + (UniCase("appreciatied"), "appreciative"), + (UniCase("filetimes"), "lifetimes"), + (UniCase("moderaters"), "moderates"), + (UniCase("althetic"), "athletic"), + (UniCase("boradwalk"), "boardwalk"), + (UniCase("inevatible"), "inevitable"), + (UniCase("brazilianese"), "brazilians"), + (UniCase("tenactiy"), "tenacity"), + (UniCase("draughty"), "drafty"), + (UniCase("depresssion"), "depression"), + (UniCase("circumwent"), "circumvent"), + (UniCase("eliminster"), "eliminates"), + (UniCase("protrait"), "portrait"), + (UniCase("countains"), "contains"), + (UniCase("horribley"), "horribly"), + (UniCase("blatanlty"), "blatantly"), + (UniCase("malpractive"), "malpractice"), + (UniCase("althetes"), "athletes"), + (UniCase("favorits"), "favorites"), + (UniCase("sharpeneing"), "sharpening"), + (UniCase("speciallty"), "specially"), + (UniCase("doosmday"), "doomsday"), + (UniCase("exculsion"), "exclusion"), + (UniCase("extravagent"), "extravagant"), + (UniCase("bloggare"), "blogger"), + (UniCase("allegedy"), "allegedly"), + (UniCase("shamelessy"), "shamelessly"), + (UniCase("conditionned"), "conditioned"), + (UniCase("insturmentals"), "instrumental"), + (UniCase("disciplinerad"), "disciplined"), + (UniCase("coordianted"), "coordinated"), + (UniCase("suspisious"), "suspicious"), + (UniCase("polution"), "pollution"), + (UniCase("marshmalow"), "marshmallow"), + (UniCase("notoriuosly"), "notoriously"), + (UniCase("enterprize"), "enterprise"), + (UniCase("organisaton"), "organisation"), + (UniCase("dissole"), "dissolve"), + (UniCase("utilises"), "utilizes"), + (UniCase("promiscious"), "promiscuous"), + (UniCase("colourant"), "colorant"), + (UniCase("fineses"), "finesse"), + (UniCase("ectastic"), "ecstatic"), + (UniCase("humiliaton"), "humiliation"), + (UniCase("progressisme"), "progresses"), + (UniCase("neighborhing"), "neighboring"), + (UniCase("occupato"), "occupation"), + (UniCase("defniately"), "definately"), + (UniCase("trasnporting"), "transporting"), + (UniCase("incarcirated"), "incarcerated"), + (UniCase("transaprency"), "transparency"), + (UniCase("bigtory"), "bigotry"), + (UniCase("piblisher"), "publisher"), + (UniCase("corproate"), "corporate"), + (UniCase("counteries"), "counters"), + (UniCase("skteches"), "sketches"), + (UniCase("excecute"), "execute"), + (UniCase("corrispondant"), "correspondent"), + (UniCase("judgemetal"), "judgemental"), + (UniCase("mouldier"), "moldier"), + (UniCase("snowbaording"), "snowboarding"), + (UniCase("incontrollably"), "uncontrollably"), + (UniCase("dynamicaly"), "dynamically"), + (UniCase("bewteen"), "between"), + (UniCase("trumendously"), "tremendously"), + (UniCase("breif"), "brief"), + (UniCase("gimmicy"), "gimmicky"), + (UniCase("psychodelic"), "psychedelic"), + (UniCase("plagiarios"), "plagiarism"), + (UniCase("malayisa"), "malaysia"), + (UniCase("effortlessy"), "effortlessly"), + (UniCase("demesticated"), "domesticated"), + (UniCase("needlessley"), "needlessly"), + (UniCase("microscoop"), "microscope"), + (UniCase("intertwinned"), "intertwined"), + (UniCase("vulnarabilities"), "vulnerabilities"), + (UniCase("chronciles"), "chronicles"), + (UniCase("respones"), "response"), + (UniCase("pedestrain"), "pedestrian"), + (UniCase("aparent"), "apparent"), + (UniCase("lieutenat"), "lieutenant"), + (UniCase("nationalistiskt"), "nationalists"), + (UniCase("pessimistisch"), "pessimistic"), + (UniCase("agrigultural"), "agricultural"), + (UniCase("liquidos"), "liquids"), + (UniCase("vaccinaties"), "vaccinate"), + (UniCase("volcanoe"), "volcano"), + (UniCase("resuable"), "reusable"), + (UniCase("maniuplated"), "manipulated"), + (UniCase("consulant"), "consultant"), + (UniCase("scrutinise"), "scrutinize"), + (UniCase("indefinate"), "indefinite"), + (UniCase("swaer"), "swear"), + (UniCase("imprefect"), "imperfect"), + (UniCase("preorderd"), "preordered"), + (UniCase("priased"), "praised"), + (UniCase("libertariansim"), "libertarianism"), + (UniCase("situationly"), "situational"), + (UniCase("distates"), "distaste"), + (UniCase("coruching"), "crouching"), + (UniCase("courtesey"), "courtesy"), + (UniCase("demosntration"), "demonstrations"), + (UniCase("southernes"), "southerners"), + (UniCase("transparant"), "transparent"), + (UniCase("sentements"), "sentiments"), + (UniCase("annoucning"), "announcing"), + (UniCase("cholestorol"), "cholesterol"), + (UniCase("ageing"), "aging"), + (UniCase("calculatios"), "calculators"), + (UniCase("instrament"), "instrument"), + (UniCase("beuraucratic"), "bureaucratic"), + (UniCase("everyons"), "everyones"), + (UniCase("semestre"), "semester"), + (UniCase("wishpering"), "whispering"), + (UniCase("conscioussness"), "consciousness"), + (UniCase("unsuprizing"), "unsurprising"), + (UniCase("resperitory"), "respiratory"), + (UniCase("perhasp"), "perhaps"), + (UniCase("distribuitor"), "distributor"), + (UniCase("dominationg"), "dominating"), + (UniCase("freestlye"), "freestyle"), + (UniCase("primatives"), "primitives"), + (UniCase("becasue"), "because"), + (UniCase("traditionnal"), "traditional"), + (UniCase("specialits"), "specials"), + (UniCase("lionised"), "lionized"), + (UniCase("annoymously"), "anonymously"), + (UniCase("insigths"), "insights"), + (UniCase("preferances"), "preferences"), + (UniCase("intolerante"), "intolerance"), + (UniCase("conceled"), "concede"), + (UniCase("positiviely"), "positively"), + (UniCase("realible"), "reliable"), + (UniCase("organizate"), "organize"), + (UniCase("kryptolite"), "kryptonite"), + (UniCase("downvots"), "downvotes"), + (UniCase("pinnaple"), "pineapple"), + (UniCase("scootes"), "scooters"), + (UniCase("crystallising"), "crystallizing"), + (UniCase("preperation"), "preparation"), + (UniCase("manipluated"), "manipulated"), + (UniCase("inferioirty"), "inferiority"), + (UniCase("inital"), "initial"), + (UniCase("mayballine"), "maybelline"), + (UniCase("prinicipal"), "principal"), + (UniCase("assumptious"), "assumptions"), + (UniCase("irrationaly"), "irrationally"), + (UniCase("complimentarity"), "complimentary"), + (UniCase("konstellation"), "constellation"), + (UniCase("penetrading"), "penetrating"), + (UniCase("provocatie"), "provocative"), + (UniCase("indoctornated"), "indoctrinated"), + (UniCase("autor"), "author"), + (UniCase("programmme"), "programme"), + (UniCase("habaeus"), "habeas"), + (UniCase("follwoing"), "following"), + (UniCase("roelplay"), "roleplay"), + (UniCase("spainish"), "spanish"), + (UniCase("introvers"), "introverts"), + (UniCase("insticnt"), "instinct"), + (UniCase("fantasticlly"), "fantastically"), + (UniCase("penalising"), "penalizing"), + (UniCase("sterlie"), "sterile"), + (UniCase("colaborations"), "collaborations"), + (UniCase("anmesty"), "amnesty"), + (UniCase("ocassion"), "occasion"), + (UniCase("sheilding"), "shielding"), + (UniCase("divice"), "device"), + (UniCase("determinisim"), "determinism"), + (UniCase("controlas"), "controls"), + (UniCase("anonimity"), "anonymity"), + (UniCase("donwvoters"), "downvoters"), + (UniCase("toturials"), "tutorials"), + (UniCase("differense"), "differences"), + (UniCase("lingusitics"), "linguistics"), + (UniCase("fantazising"), "fantasizing"), + (UniCase("maybelle"), "maybelline"), + (UniCase("victorioso"), "victorious"), + (UniCase("destkops"), "desktops"), + (UniCase("streoid"), "steroid"), + (UniCase("competution"), "computation"), + (UniCase("apprearance"), "appearance"), + (UniCase("clientes"), "clients"), + (UniCase("coinsidental"), "coincidental"), + (UniCase("stregth"), "strength"), + (UniCase("journalistisch"), "journalistic"), + (UniCase("architechure"), "architecture"), + (UniCase("praesidiums"), "presidiums"), + (UniCase("deviatie"), "deviate"), + (UniCase("regualtor"), "regulator"), + (UniCase("pronunciato"), "pronunciation"), + (UniCase("gratiutous"), "gratuitous"), + (UniCase("dispapointed"), "dissapointed"), + (UniCase("appluase"), "applause"), + (UniCase("athlets"), "athletes"), + (UniCase("purused"), "pursued"), + (UniCase("proficincy"), "proficiency"), + (UniCase("intellectualiser"), "intellectuals"), + (UniCase("incorperate"), "incorporate"), + (UniCase("comadres"), "comrades"), + (UniCase("constured"), "construed"), + (UniCase("pharmaceudical"), "pharmaceutical"), + (UniCase("recoveres"), "recovers"), + (UniCase("trilogoy"), "trilogy"), + (UniCase("handicaped"), "handicapped"), + (UniCase("tempreature"), "temperature"), + (UniCase("burueacrats"), "bureaucrats"), + (UniCase("effortlessely"), "effortlessly"), + (UniCase("clipboad"), "clipboard"), + (UniCase("brotherhod"), "brotherhood"), + (UniCase("coprorations"), "corporations"), + (UniCase("nationalsitic"), "nationalistic"), + (UniCase("memorozation"), "memorization"), + (UniCase("troling"), "trolling"), + (UniCase("considerabely"), "considerable"), + (UniCase("remarkibly"), "remarkably"), + (UniCase("calcualted"), "calculated"), + (UniCase("consious"), "conscious"), + (UniCase("salery"), "salary"), + (UniCase("madturbating"), "masturbating"), + (UniCase("humiditiy"), "humidity"), + (UniCase("sulphur"), "sulfur"), + (UniCase("discrimiate"), "discriminate"), + (UniCase("contributs"), "contributes"), + (UniCase("intrinsicaly"), "intrinsically"), + (UniCase("discoveres"), "discovers"), + (UniCase("degenerite"), "degenerate"), + (UniCase("undoubetdly"), "undoubtedly"), + (UniCase("direccional"), "directional"), + (UniCase("behavoir"), "behavior"), + (UniCase("eldistribution"), "redistribution"), + (UniCase("idolising"), "idolizing"), + (UniCase("depsoited"), "deposited"), + (UniCase("argubaly"), "arguably"), + (UniCase("disputandem"), "disputandum"), + (UniCase("mercenarias"), "mercenaries"), + (UniCase("assimilatie"), "assimilate"), + (UniCase("overcloaking"), "overclocking"), + (UniCase("reincarantion"), "reincarnation"), + (UniCase("simultaenously"), "simultaneously"), + (UniCase("wonderfullly"), "wonderfully"), + (UniCase("influenta"), "influential"), + (UniCase("porportions"), "proportions"), + (UniCase("messiach"), "messiah"), + (UniCase("distrcit"), "district"), + (UniCase("lefted"), "left"), + (UniCase("persausive"), "persuasive"), + (UniCase("infiltratior"), "infiltrator"), + (UniCase("ambassidor"), "ambassador"), + (UniCase("hybridises"), "hybridizes"), + (UniCase("individuella"), "individual"), + (UniCase("preorded"), "preordered"), + (UniCase("caridnal"), "cardinal"), + (UniCase("probabillity"), "probability"), + (UniCase("narcissitic"), "narcissistic"), + (UniCase("airboner"), "airborne"), + (UniCase("deomcrat"), "democrat"), + (UniCase("transferer"), "transferred"), + (UniCase("interviewes"), "interviews"), + (UniCase("themsleves"), "themselves"), + (UniCase("intuitevely"), "intuitively"), + (UniCase("awnsered"), "answered"), + (UniCase("intuatively"), "intuitively"), + (UniCase("hierarcy"), "hierarchy"), + (UniCase("congradulations"), "congratulations"), + (UniCase("chernboyl"), "chernobyl"), + (UniCase("ofcoure"), "ofcourse"), + (UniCase("informatice"), "informative"), + (UniCase("repsond"), "respond"), + (UniCase("technolgy"), "technology"), + (UniCase("construted"), "constructed"), + (UniCase("extragavant"), "extravagant"), + (UniCase("denominatons"), "denominations"), + (UniCase("recongizes"), "recognizes"), + (UniCase("benevelant"), "benevolent"), + (UniCase("unconcsiously"), "unconsciously"), + (UniCase("omniverously"), "omnivorously"), + (UniCase("agrentina"), "argentina"), + (UniCase("strnad"), "strand"), + (UniCase("grativate"), "gravitate"), + (UniCase("reliased"), "realised"), + (UniCase("liberalised"), "liberalized"), + (UniCase("urbanises"), "urbanizes"), + (UniCase("quielty"), "quietly"), + (UniCase("homophopia"), "homophobia"), + (UniCase("organizativos"), "organizations"), + (UniCase("electricien"), "electrician"), + (UniCase("kryptonyte"), "kryptonite"), + (UniCase("revoultions"), "revolutions"), + (UniCase("amphetamins"), "amphetamines"), + (UniCase("misdemeanour"), "misdemeanor"), + (UniCase("monts"), "months"), + (UniCase("conveniet"), "convenient"), + (UniCase("syndacite"), "syndicate"), + (UniCase("hacthing"), "hatching"), + (UniCase("availible"), "available"), + (UniCase("burried"), "buried"), + (UniCase("cauterised"), "cauterized"), + (UniCase("atheneans"), "athenians"), + (UniCase("responisble"), "responsible"), + (UniCase("stiring"), "stirring"), + (UniCase("explosin"), "explosions"), + (UniCase("standardises"), "standardizes"), + (UniCase("australianos"), "australians"), + (UniCase("cardiovasculaires"), "cardiovascular"), + (UniCase("individuallity"), "individuality"), + (UniCase("synthesasia"), "synthesis"), + (UniCase("consept"), "concept"), + (UniCase("elephantus"), "elephants"), + (UniCase("ethnocentricm"), "ethnocentrism"), + (UniCase("mcreggor"), "mcgregor"), + (UniCase("satisfactorilly"), "satisfactory"), + (UniCase("remarkablely"), "remarkably"), + (UniCase("infectation"), "infestation"), + (UniCase("outwieghs"), "outweighs"), + (UniCase("suprise"), "surprise"), + (UniCase("sensibel"), "sensible"), + (UniCase("oragnisation"), "organisation"), + (UniCase("alrigthy"), "alrighty"), + (UniCase("sensitised"), "sensitized"), + (UniCase("functtion"), "function"), + (UniCase("cailbration"), "calibration"), + (UniCase("reivews"), "reviews"), + (UniCase("inventings"), "inventions"), + (UniCase("unbreakeble"), "unbreakable"), + (UniCase("throough"), "thorough"), + (UniCase("deinitalization"), "deinitialization"), + (UniCase("bookmars"), "bookmarks"), + (UniCase("asume"), "assume"), + (UniCase("tratior"), "traitor"), + (UniCase("incohorent"), "incoherent"), + (UniCase("skepticim"), "skepticism"), + (UniCase("expresssive"), "expressive"), + (UniCase("evenhtually"), "eventually"), + (UniCase("unconditinal"), "unconditional"), + (UniCase("trukish"), "turkish"), + (UniCase("plasticos"), "plastics"), + (UniCase("karbohydrates"), "carbohydrates"), + (UniCase("discepline"), "discipline"), + (UniCase("transportar"), "transporter"), + (UniCase("irreverisble"), "irreversible"), + (UniCase("generoisty"), "generosity"), + (UniCase("preconceved"), "preconceived"), + (UniCase("hairsytle"), "hairstyle"), + (UniCase("calrifying"), "clarifying"), + (UniCase("gambolled"), "gamboled"), + (UniCase("lucifear"), "lucifer"), + (UniCase("parntered"), "partnered"), + (UniCase("negotaited"), "negotiated"), + (UniCase("dungoens"), "dungeons"), + (UniCase("anouncement"), "announcement"), + (UniCase("regulationg"), "regulating"), + (UniCase("skeletones"), "skeletons"), + (UniCase("hardwod"), "hardwood"), + (UniCase("cirucmference"), "circumference"), + (UniCase("unreaponsive"), "unresponsive"), + (UniCase("victorin"), "victorian"), + (UniCase("unsubsrcibed"), "unsubscribed"), + (UniCase("beucase"), "becuase"), + (UniCase("cabniet"), "cabinet"), + (UniCase("journolist"), "journalist"), + (UniCase("resturaunt"), "restaurant"), + (UniCase("represetnation"), "representations"), + (UniCase("enthusiasim"), "enthusiasm"), + (UniCase("infiltrare"), "infiltrate"), + (UniCase("degenere"), "degenerate"), + (UniCase("manufature"), "manufacture"), + (UniCase("reccomendations"), "recommendations"), + (UniCase("collabaration"), "collaboration"), + (UniCase("junlging"), "jungling"), + (UniCase("tremondous"), "tremendous"), + (UniCase("slayign"), "slaying"), + (UniCase("lfiesteal"), "lifesteal"), + (UniCase("precentages"), "percentages"), + (UniCase("trasnfer"), "transfer"), + (UniCase("tabelspoon"), "tablespoon"), + (UniCase("leukaemia"), "leukemia"), + (UniCase("accelorator"), "accelerator"), + (UniCase("unpleaseant"), "unpleasant"), + (UniCase("immenseley"), "immensely"), + (UniCase("necessarry"), "necessary"), + (UniCase("pinnalce"), "pinnacle"), + (UniCase("remingotn"), "remington"), + (UniCase("illumini"), "illuminati"), + (UniCase("equivelent"), "equivalent"), + (UniCase("homophobie"), "homophobe"), + (UniCase("embrago"), "embargo"), + (UniCase("misunderstanings"), "misunderstandings"), + (UniCase("confessionis"), "confessions"), + (UniCase("infiltartor"), "infiltrator"), + (UniCase("represnetation"), "representations"), + (UniCase("wonderus"), "wonders"), + (UniCase("jouney"), "journey"), + (UniCase("fortunatley"), "fortunately"), + (UniCase("vessles"), "vessels"), + (UniCase("yotube"), "youtube"), + (UniCase("rigours"), "rigors"), + (UniCase("presonalized"), "personalized"), + (UniCase("contradictie"), "contradicted"), + (UniCase("conventinal"), "conventional"), + (UniCase("varisty"), "varsity"), + (UniCase("practicly"), "practically"), + (UniCase("initalizations"), "initializations"), + (UniCase("legalizare"), "legalize"), + (UniCase("outpsoken"), "outspoken"), + (UniCase("libretarians"), "libertarians"), + (UniCase("correkting"), "correcting"), + (UniCase("finnisch"), "finnish"), + (UniCase("concedered"), "conceded"), + (UniCase("industrialising"), "industrializing"), + (UniCase("contined"), "continued"), + (UniCase("conceptualised"), "conceptualized"), + (UniCase("wavelenght"), "wavelength"), + (UniCase("tourits"), "tourist"), + (UniCase("blacklit"), "blacklist"), + (UniCase("parternship"), "partnership"), + (UniCase("tantalises"), "tantalizes"), + (UniCase("cointerpoint"), "counterpoint"), + (UniCase("circuis"), "circuits"), + (UniCase("braodcasts"), "broadcasts"), + (UniCase("flimmakers"), "filmmakers"), + (UniCase("scandanivian"), "scandinavian"), + (UniCase("awekened"), "weakened"), + (UniCase("meaningles"), "meanings"), + (UniCase("justifiaction"), "justifications"), + (UniCase("fraterntiy"), "fraternity"), + (UniCase("discertation"), "dissertation"), + (UniCase("negotiatons"), "negotiations"), + (UniCase("excepcional"), "exceptional"), + (UniCase("impactos"), "impacts"), + (UniCase("investagate"), "investigate"), + (UniCase("mindlessley"), "mindlessly"), + (UniCase("vocabluary"), "vocabulary"), + (UniCase("emphazise"), "emphasize"), + (UniCase("cauterising"), "cauterizing"), + (UniCase("progressivisme"), "progressives"), + (UniCase("mentiones"), "mentions"), + (UniCase("preinitalized"), "preinitialized"), + (UniCase("campagining"), "campaigning"), + (UniCase("limination"), "limitation"), + (UniCase("occassionaly"), "occasionally"), + (UniCase("mediocrily"), "mediocrity"), + (UniCase("narcisssist"), "narcissist"), + (UniCase("pedophille"), "pedophile"), + (UniCase("brusied"), "bruised"), + (UniCase("distingusihing"), "distinguishing"), + (UniCase("disconncet"), "disconnects"), + (UniCase("swtiches"), "switches"), + (UniCase("predicement"), "predicament"), + (UniCase("refirgerator"), "refrigerator"), + (UniCase("improbabil"), "improbable"), + (UniCase("nuetron"), "neutron"), + (UniCase("hipsterest"), "hipsters"), + (UniCase("organziers"), "organizers"), + (UniCase("largst"), "largest"), + (UniCase("eventualy"), "eventually"), + (UniCase("lengthly"), "lengthy"), + (UniCase("individualises"), "individualizes"), + (UniCase("flechter"), "fletcher"), + (UniCase("orhpans"), "orphans"), + (UniCase("shamelessley"), "shamelessly"), + (UniCase("industrialised"), "industrialized"), + (UniCase("existental"), "existential"), + (UniCase("veiwpoint"), "viewpoint"), + (UniCase("destiantion"), "destinations"), + (UniCase("critiziced"), "criticized"), + (UniCase("projectles"), "projectiles"), + (UniCase("deplorible"), "deplorable"), + (UniCase("populaties"), "populate"), + (UniCase("upgradded"), "upgraded"), + (UniCase("controlelr"), "controllers"), + (UniCase("perswasion"), "persuasion"), + (UniCase("reinforcemens"), "reinforcements"), + (UniCase("heartborken"), "heartbroken"), + (UniCase("analitic"), "analytic"), + (UniCase("apperead"), "appeared"), + (UniCase("nightmears"), "nightmares"), + (UniCase("aribtrary"), "arbitrary"), + (UniCase("palcements"), "placements"), + (UniCase("oxigen"), "oxygen"), + (UniCase("multitudine"), "multitude"), + (UniCase("questiong"), "questioning"), + (UniCase("millioniare"), "millionaire"), + (UniCase("currecny"), "currency"), + (UniCase("hesitatin"), "hesitation"), + (UniCase("dividendes"), "dividends"), + (UniCase("acheivement"), "achievement"), + (UniCase("normalls"), "normals"), + (UniCase("behavoiur"), "behaviour"), + (UniCase("unsolicted"), "unsolicited"), + (UniCase("porshon"), "portion"), + (UniCase("sexuallity"), "sexually"), + (UniCase("sumbitting"), "submitting"), + (UniCase("aggressivley"), "aggressively"), + (UniCase("indestrictible"), "indestructible"), + (UniCase("sentimetal"), "sentimental"), + (UniCase("abundacies"), "abundances"), + (UniCase("liberarion"), "liberation"), + (UniCase("immedietely"), "immediately"), + (UniCase("defitinly"), "definitly"), + (UniCase("executioneer"), "executioner"), + (UniCase("precausions"), "precautions"), + (UniCase("kenndey"), "kennedy"), + (UniCase("decentralised"), "decentralized"), + (UniCase("pedestrains"), "pedestrians"), + (UniCase("snowballes"), "snowballs"), + (UniCase("inconsistensy"), "inconsistency"), + (UniCase("ukrainie"), "ukraine"), + (UniCase("jewellers"), "jewelers"), + (UniCase("elimenates"), "eliminates"), + (UniCase("publisheed"), "published"), + (UniCase("platfarmer"), "platformer"), + (UniCase("chequebook"), "checkbook"), + (UniCase("vaguaries"), "vagaries"), + (UniCase("indefinitly"), "indefinitely"), + (UniCase("metropolian"), "metropolitan"), + (UniCase("urkainians"), "ukrainians"), + (UniCase("vigilanties"), "vigilante"), + (UniCase("muffings"), "muffins"), + (UniCase("approximatelly"), "approximately"), + (UniCase("concsiousness"), "consciousness"), + (UniCase("decalre"), "declare"), + (UniCase("bottlebeck"), "bottleneck"), + (UniCase("currate"), "curate"), + (UniCase("wensday"), "wednesday"), + (UniCase("tremenduous"), "tremendous"), + (UniCase("nightley"), "nightly"), + (UniCase("pinpiont"), "pinpoint"), + (UniCase("definiton"), "definition"), + (UniCase("submisisons"), "submissions"), + (UniCase("nominatons"), "nominations"), + (UniCase("influincing"), "influencing"), + (UniCase("priemere"), "premiere"), + (UniCase("galatic"), "galactic"), + (UniCase("arogant"), "arrogant"), + (UniCase("inventivos"), "inventions"), + (UniCase("professoras"), "professors"), + (UniCase("indetifiable"), "identifiable"), + (UniCase("organicaly"), "organically"), + (UniCase("dacquiri"), "daiquiri"), + (UniCase("tablespons"), "tablespoons"), + (UniCase("insipre"), "inspire"), + (UniCase("homosexualtiy"), "homosexuality"), + (UniCase("restraunt"), "restraint"), + (UniCase("vapour"), "vapor"), + (UniCase("sarcasim"), "sarcasm"), + (UniCase("guidence"), "guidance"), + (UniCase("constatn"), "constant"), + (UniCase("egaletarian"), "egalitarian"), + (UniCase("repsawn"), "respawn"), + (UniCase("apocalype"), "apocalypse"), + (UniCase("strentghs"), "strengths"), + (UniCase("communciation"), "communication"), + (UniCase("organisims"), "organism"), + (UniCase("embarrasments"), "embarrassment"), + (UniCase("photogragh"), "photograph"), + (UniCase("franticaly"), "frantically"), + (UniCase("modernises"), "modernizes"), + (UniCase("unconstituional"), "unconstitutional"), + (UniCase("resistnaces"), "resistances"), + (UniCase("inadvertant"), "inadvertent"), + (UniCase("memorialising"), "memorializing"), + (UniCase("varstiy"), "varsity"), + (UniCase("claibre"), "calibre"), + (UniCase("initialised"), "initialized"), + (UniCase("layed"), "laid"), + (UniCase("treatsie"), "treaties"), + (UniCase("midnlessly"), "mindlessly"), + (UniCase("crystallis"), "crystals"), + (UniCase("dissonante"), "dissonance"), + (UniCase("conglaturation"), "congratulations"), + (UniCase("symtpom"), "symptom"), + (UniCase("compilr"), "compiler"), + (UniCase("plantiff"), "plaintiff"), + (UniCase("gratificacion"), "gratification"), + (UniCase("desparately"), "desperately"), + (UniCase("harldine"), "hardline"), + (UniCase("occasionals"), "occasions"), + (UniCase("accumalation"), "accumulation"), + (UniCase("amalgomated"), "amalgamated"), + (UniCase("univercity"), "university"), + (UniCase("assimliated"), "assimilate"), + (UniCase("coindidental"), "coincidental"), + (UniCase("carbohdyrates"), "carbohydrates"), + (UniCase("parrallely"), "parallelly"), + (UniCase("persecutin"), "persecution"), + (UniCase("captiol"), "capitol"), + (UniCase("nuisanse"), "nuisance"), + (UniCase("mississipppi"), "mississippi"), + (UniCase("redneckest"), "rednecks"), + (UniCase("captial"), "capital"), + (UniCase("disembowelled"), "disemboweled"), + (UniCase("collaspe"), "collapse"), + (UniCase("hydraluic"), "hydraulic"), + (UniCase("jeopardised"), "jeopardized"), + (UniCase("preservato"), "preservation"), + (UniCase("superceeded"), "superseded"), + (UniCase("inexplicabil"), "inexplicably"), + (UniCase("prohibitied"), "prohibited"), + (UniCase("aparthide"), "apartheid"), + (UniCase("revloves"), "revolves"), + (UniCase("synonimous"), "synonymous"), + (UniCase("heatlhcare"), "healthcare"), + (UniCase("catalysed"), "catalyzed"), + (UniCase("einfahc"), "einfach"), + (UniCase("distustingly"), "disgustingly"), + (UniCase("instruccion"), "instruction"), + (UniCase("remaind"), "remained"), + (UniCase("lubricat"), "lubricant"), + (UniCase("tranmsission"), "transmissions"), + (UniCase("hypothesies"), "hypothesis"), + (UniCase("palistian"), "palestinian"), + (UniCase("continuarla"), "continual"), + (UniCase("illegalis"), "illegals"), + (UniCase("administraron"), "administrator"), + (UniCase("precuations"), "precautions"), + (UniCase("revlover"), "revolver"), + (UniCase("decribing"), "describing"), + (UniCase("scandinaiva"), "scandinavian"), + (UniCase("strawberrry"), "strawberry"), + (UniCase("continenet"), "continents"), + (UniCase("linguistcs"), "linguistics"), + (UniCase("disgustes"), "disgusts"), + (UniCase("aesthethics"), "aesthetics"), + (UniCase("supirsed"), "suprised"), + (UniCase("priorotize"), "prioritize"), + (UniCase("emplore"), "employer"), + (UniCase("processsor"), "processors"), + (UniCase("decentralises"), "decentralizes"), + (UniCase("disentry"), "dysentery"), + (UniCase("organizarea"), "organizer"), + (UniCase("misoganistic"), "misogynistic"), + (UniCase("legitimancy"), "legitimacy"), + (UniCase("qaulifies"), "qualifies"), + (UniCase("multiplaer"), "multiplier"), + (UniCase("phychopathic"), "psychopathic"), + (UniCase("nationalites"), "nationalist"), + (UniCase("peripherial"), "peripheral"), + (UniCase("unnecessairy"), "unnecessarily"), + (UniCase("satsify"), "satisfy"), + (UniCase("demonised"), "demonized"), + (UniCase("principas"), "principals"), + (UniCase("transmitirte"), "transmitter"), + (UniCase("analsyt"), "analyst"), + (UniCase("ocotber"), "october"), + (UniCase("situacional"), "situational"), + (UniCase("olbiterated"), "obliterated"), + (UniCase("stormade"), "stormed"), + (UniCase("cholesteral"), "cholesterol"), + (UniCase("intertainment"), "entertainment"), + (UniCase("ismalist"), "islamist"), + (UniCase("identifikation"), "identification"), + (UniCase("wallpapes"), "wallpapers"), + (UniCase("construt"), "constructs"), + (UniCase("similtaneously"), "simultaneously"), + (UniCase("transgenderd"), "transgendered"), + (UniCase("overthining"), "overthinking"), + (UniCase("collaspes"), "collapses"), + (UniCase("transaltor"), "translator"), + (UniCase("corollla"), "corolla"), + (UniCase("opressive"), "oppressive"), + (UniCase("slippey"), "slippery"), + (UniCase("boaut"), "bout"), + (UniCase("appeard"), "appeared"), + (UniCase("receeded"), "receded"), + (UniCase("dragonus"), "dragons"), + (UniCase("unbareable"), "unbearable"), + (UniCase("superviser"), "supervisor"), + (UniCase("businesmen"), "businessmen"), + (UniCase("enthuasists"), "enthusiasts"), + (UniCase("immserive"), "immersive"), + (UniCase("ventialtion"), "ventilation"), + (UniCase("planetos"), "planets"), + (UniCase("norwegain"), "norwegian"), + (UniCase("ontairo"), "ontario"), + (UniCase("interet"), "interest"), + (UniCase("sandstrom"), "sandstorm"), + (UniCase("intervalls"), "intervals"), + (UniCase("conferances"), "conferences"), + (UniCase("peripheals"), "peripherals"), + (UniCase("identifiy"), "identify"), + (UniCase("tonuges"), "tongues"), + (UniCase("inpolite"), "impolite"), + (UniCase("progressvie"), "progressives"), + (UniCase("crystalus"), "crystals"), + (UniCase("vegetatian"), "vegetarian"), + (UniCase("compunation"), "computation"), + (UniCase("racionalization"), "rationalization"), + (UniCase("instalement"), "installment"), + (UniCase("dehyrdation"), "dehydration"), + (UniCase("produktion"), "production"), + (UniCase("skateboad"), "skateboard"), + (UniCase("maximise"), "maximize"), + (UniCase("exposse"), "exposes"), + (UniCase("obssessed"), "obsessed"), + (UniCase("conversationy"), "conservation"), + (UniCase("permitas"), "permits"), + (UniCase("trespasing"), "trespassing"), + (UniCase("independens"), "independents"), + (UniCase("entirley"), "entirely"), + (UniCase("valenica"), "valencia"), + (UniCase("reconcider"), "reconsider"), + (UniCase("lightrom"), "lightroom"), + (UniCase("subscribirse"), "subscriber"), + (UniCase("intorduces"), "introduces"), + (UniCase("archeytpes"), "archetypes"), + (UniCase("punsihments"), "punishments"), + (UniCase("empathie"), "empathize"), + (UniCase("discolsure"), "disclosure"), + (UniCase("ideologis"), "ideologies"), + (UniCase("frsibee"), "frisbee"), + (UniCase("protess"), "protests"), + (UniCase("acclimatised"), "acclimatized"), + (UniCase("instatance"), "instance"), + (UniCase("caterogized"), "categorized"), + (UniCase("whilrwind"), "whirlwind"), + (UniCase("womanising"), "womanizing"), + (UniCase("auotattack"), "autoattack"), + (UniCase("collosal"), "colossal"), + (UniCase("agressive"), "aggressive"), + (UniCase("centralise"), "centralize"), + (UniCase("vampiers"), "vampires"), + (UniCase("circumstante"), "circumstance"), + (UniCase("nationalitic"), "nationalistic"), + (UniCase("venezuelean"), "venezuela"), + (UniCase("europeaness"), "europeans"), + (UniCase("atmosoheric"), "atmospheric"), + (UniCase("undeniablely"), "undeniably"), + (UniCase("cubpoard"), "cupboard"), + (UniCase("jeopardises"), "jeopardizes"), + (UniCase("balcanes"), "balances"), + (UniCase("syrap"), "syrup"), + (UniCase("transistorised"), "transistorized"), + (UniCase("brendamn"), "brendan"), + (UniCase("asteorid"), "asteroid"), + (UniCase("agonise"), "agonize"), + (UniCase("symoblic"), "symbolic"), + (UniCase("singluarity"), "singularity"), + (UniCase("datbase"), "database"), + (UniCase("contemplat"), "contempt"), + (UniCase("burtsing"), "bursting"), + (UniCase("absurdy"), "absurdly"), + (UniCase("transfomed"), "transformed"), + (UniCase("duplicants"), "duplicates"), + (UniCase("acheivements"), "achievements"), + (UniCase("associatons"), "associations"), + (UniCase("phsyician"), "physician"), + (UniCase("sheninigans"), "shenanigans"), + (UniCase("neuorscience"), "neuroscience"), + (UniCase("organismed"), "organise"), + (UniCase("flethcer"), "fletcher"), + (UniCase("representas"), "represents"), + (UniCase("cumpolsory"), "compulsory"), + (UniCase("neuroscienze"), "neuroscience"), + (UniCase("strenghtened"), "strengthened"), + (UniCase("homogenuous"), "homogeneous"), + (UniCase("libguistic"), "linguistic"), + (UniCase("definitiely"), "definitively"), + (UniCase("swaskita"), "swastika"), + (UniCase("manglade"), "mangled"), + (UniCase("corrulates"), "correlates"), + (UniCase("deocrations"), "decorations"), + (UniCase("ocurrance"), "occurrence"), + (UniCase("bargianing"), "bargaining"), + (UniCase("hvaing"), "having"), + (UniCase("icefrong"), "icefrog"), + (UniCase("cardiovascualar"), "cardiovascular"), + (UniCase("verifikation"), "verification"), + (UniCase("silbings"), "siblings"), + (UniCase("deplyoing"), "deploying"), + (UniCase("commissionor"), "commissioner"), + (UniCase("expectansy"), "expectancy"), + (UniCase("anedocte"), "anecdote"), + (UniCase("beoynce"), "beyonce"), + (UniCase("atheltes"), "athletes"), + (UniCase("confidance"), "confidence"), + (UniCase("impovershied"), "impoverished"), + (UniCase("anyonse"), "anyones"), + (UniCase("blessure"), "blessing"), + (UniCase("anaesthetising"), "anesthetizing"), + (UniCase("narcissisim"), "narcissism"), + (UniCase("pretaining"), "pertaining"), + (UniCase("repoistory"), "repository"), + (UniCase("accliamed"), "acclaimed"), + (UniCase("reporductive"), "reproductive"), + (UniCase("michellle"), "michelle"), + (UniCase("froniter"), "frontier"), + (UniCase("resturants"), "restaurants"), + (UniCase("forbiden"), "forbidden"), + (UniCase("metephysical"), "metaphysical"), + (UniCase("effecitvely"), "effectively"), + (UniCase("prejucided"), "prejudiced"), + (UniCase("permissble"), "permissible"), + (UniCase("expentiture"), "expenditure"), + (UniCase("explossive"), "explosives"), + (UniCase("omnipetent"), "omnipotent"), + (UniCase("americanis"), "americas"), + (UniCase("providance"), "providence"), + (UniCase("illegalls"), "illegals"), + (UniCase("sqeuaky"), "squeaky"), + (UniCase("construde"), "construed"), + (UniCase("weightlfiting"), "weightlifting"), + (UniCase("definitevly"), "definitively"), + (UniCase("manoeuverability"), "maneuverability"), + (UniCase("reasonabley"), "reasonably"), + (UniCase("extraccion"), "extraction"), + (UniCase("preleminary"), "preliminary"), + (UniCase("backjacking"), "backpacking"), + (UniCase("rudimentory"), "rudimentary"), + (UniCase("temparatures"), "temperatures"), + (UniCase("revealtions"), "revelations"), + (UniCase("circumsised"), "circumcised"), + (UniCase("niusance"), "nuisance"), + (UniCase("publisger"), "publisher"), + (UniCase("fossilises"), "fossilizes"), + (UniCase("benifit"), "benefit"), + (UniCase("transformarea"), "transformer"), + (UniCase("simeltaneously"), "simultaneously"), + (UniCase("tacticallity"), "tactically"), + (UniCase("broadcastors"), "broadcasts"), + (UniCase("distractin"), "district"), + (UniCase("assitant"), "assistant"), + (UniCase("astronat"), "astronaut"), + (UniCase("accuratley"), "accurately"), + (UniCase("conversley"), "conversely"), + (UniCase("arrangment"), "arrangement"), + (UniCase("expirements"), "experiments"), + (UniCase("gauntles"), "gauntlets"), + (UniCase("sergeat"), "sergeant"), + (UniCase("unorginial"), "unoriginal"), + (UniCase("responisbilities"), "responsibilities"), + (UniCase("incidently"), "incidentally"), + (UniCase("travelling"), "traveling"), + (UniCase("mutilatin"), "mutilation"), + (UniCase("specialsts"), "specialists"), + (UniCase("fluctuatie"), "fluctuate"), + (UniCase("optimizaton"), "optimization"), + (UniCase("innovatve"), "innovate"), + (UniCase("sherlcok"), "sherlock"), + (UniCase("intelligente"), "intelligence"), + (UniCase("intervieni"), "interviewing"), + (UniCase("omision"), "omission"), + (UniCase("thumbnailers"), "thumbnails"), + (UniCase("impedence"), "impedance"), + (UniCase("obtianable"), "obtainable"), + (UniCase("physcological"), "psychological"), + (UniCase("restauring"), "restarting"), + (UniCase("essencially"), "essentially"), + (UniCase("confussions"), "confessions"), + (UniCase("straignt"), "straighten"), + (UniCase("unwieldly"), "unwieldy"), + (UniCase("disillutioned"), "disillusioned"), + (UniCase("breathalysers"), "breathalyzers"), + (UniCase("hodlings"), "holdings"), + (UniCase("manafestation"), "manifestation"), + (UniCase("schedulling"), "scheduling"), + (UniCase("distingiush"), "distinguish"), + (UniCase("resistendo"), "resisted"), + (UniCase("permature"), "premature"), + (UniCase("intermedie"), "intermediate"), + (UniCase("conversacion"), "conversation"), + (UniCase("banruptcy"), "bankruptcy"), + (UniCase("implemenet"), "implements"), + (UniCase("sacrifized"), "sacrificed"), + (UniCase("mousturizing"), "moisturizing"), + (UniCase("narcotis"), "narcotics"), + (UniCase("deyhdrated"), "dehydrated"), + (UniCase("fingernal"), "fingernails"), + (UniCase("unsoliciated"), "unsolicited"), + (UniCase("pronunciating"), "pronunciation"), + (UniCase("infromal"), "informal"), + (UniCase("varitey"), "variety"), + (UniCase("ejaculaion"), "ejaculation"), + (UniCase("profitabile"), "profitable"), + (UniCase("fragmet"), "fragment"), + (UniCase("passivisation"), "passivization"), + (UniCase("specailly"), "specially"), + (UniCase("motoroal"), "motorola"), + (UniCase("combatents"), "combatants"), + (UniCase("cheerleeders"), "cheerleaders"), + (UniCase("infecteous"), "infectious"), + (UniCase("intanjible"), "intangible"), + (UniCase("pronous"), "pronouns"), + (UniCase("multilpier"), "multiplier"), + (UniCase("blochchain"), "blockchain"), + (UniCase("legitimatcy"), "legitimacy"), + (UniCase("unsubscribade"), "unsubscribed"), + (UniCase("intercouse"), "intercourse"), + (UniCase("instanteneous"), "instantaneous"), + (UniCase("mocrotransactions"), "microtransactions"), + (UniCase("necessiates"), "necessities"), + (UniCase("appereance"), "appearance"), + (UniCase("hypotethical"), "hypothetical"), + (UniCase("caulfilower"), "cauliflower"), + (UniCase("involuntairy"), "involuntary"), + (UniCase("interese"), "interested"), + (UniCase("nessasarily"), "necessarily"), + (UniCase("kwno"), "know"), + (UniCase("ascnesion"), "ascension"), + (UniCase("implementatin"), "implementations"), + (UniCase("appreciateive"), "appreciative"), + (UniCase("medicae"), "medicare"), + (UniCase("libellous"), "libelous"), + (UniCase("terrorits"), "terrorist"), + (UniCase("palestina"), "palestinian"), + (UniCase("interacive"), "interactive"), + (UniCase("asbestoes"), "asbestos"), + (UniCase("ditributed"), "distributed"), + (UniCase("gymanstics"), "gymnastics"), + (UniCase("pennsylvnia"), "pennsylvania"), + (UniCase("jeoprady"), "jeopardy"), + (UniCase("somoenes"), "someones"), + (UniCase("amnsety"), "amnesty"), + (UniCase("unicornus"), "unicorns"), + (UniCase("displacemnt"), "displacement"), + (UniCase("romaanin"), "romanian"), + (UniCase("maintan"), "maintain"), + (UniCase("iwth"), "with"), + (UniCase("dictadorship"), "dictatorship"), + (UniCase("contagiosa"), "contagious"), + (UniCase("grandchilder"), "grandchildren"), + (UniCase("substanties"), "substantive"), + (UniCase("milennium"), "millennium"), + (UniCase("anniversy"), "anniversary"), + (UniCase("religously"), "religiously"), + (UniCase("psychoanalyse"), "psychoanalyze"), + (UniCase("natique"), "antique"), + (UniCase("strategisch"), "strategic"), + (UniCase("theroetical"), "theoretical"), + (UniCase("heartbrake"), "heartbreak"), + (UniCase("sponsered"), "sponsored"), + (UniCase("familiarisation"), "familiarization"), + (UniCase("understandibly"), "understandably"), + (UniCase("conflit"), "conflict"), + (UniCase("smaurai"), "samurai"), + (UniCase("deomgraphics"), "demographics"), + (UniCase("tournamnet"), "tournament"), + (UniCase("repalying"), "replaying"), + (UniCase("ressemble"), "resemble"), + (UniCase("doulbe"), "double"), + (UniCase("certificiate"), "certificate"), + (UniCase("flexibel"), "flexible"), + (UniCase("comissioning"), "commissioning"), + (UniCase("effectivly"), "effectively"), + (UniCase("proponet"), "proponents"), + (UniCase("appliences"), "appliances"), + (UniCase("summones"), "summoners"), + (UniCase("symbolise"), "symbolize"), + (UniCase("investegator"), "investigator"), + (UniCase("credientals"), "credentials"), + (UniCase("casuation"), "causation"), + (UniCase("behavioural"), "behavioral"), + (UniCase("transgenered"), "transgender"), + (UniCase("constantivs"), "constants"), + (UniCase("revelant"), "relevant"), + (UniCase("regularing"), "regulating"), + (UniCase("discriminitory"), "discriminatory"), + (UniCase("moisturising"), "moisturizing"), + (UniCase("commitee"), "committee"), + (UniCase("croatioa"), "croatia"), + (UniCase("uncertianty"), "uncertainty"), + (UniCase("suggestieve"), "suggestive"), + (UniCase("doublerift"), "doublelift"), + (UniCase("hauntig"), "haunting"), + (UniCase("intelluctuals"), "intellectuals"), + (UniCase("margerat"), "margaret"), + (UniCase("regisrty"), "registry"), + (UniCase("figthing"), "fighting"), + (UniCase("proccess"), "process"), + (UniCase("ehtnicity"), "ethnicity"), + (UniCase("disporportionatly"), "disproportionately"), + (UniCase("steroetypical"), "stereotypical"), + (UniCase("chocolotes"), "chocolates"), + (UniCase("paediatric"), "pediatric"), + (UniCase("mistery"), "mystery"), + (UniCase("guresome"), "gruesome"), + (UniCase("annilihate"), "annihilated"), + (UniCase("represenation"), "representation"), + (UniCase("argicultural"), "agricultural"), + (UniCase("unsuprisingly"), "unsurprisingly"), + (UniCase("radaince"), "radiance"), + (UniCase("whitholding"), "withholding"), + (UniCase("constitues"), "constitutes"), + (UniCase("microwavers"), "microwaves"), + (UniCase("ideoligically"), "ideologically"), + (UniCase("enterprices"), "enterprises"), + (UniCase("transparrent"), "transparent"), + (UniCase("acitvates"), "activates"), + (UniCase("corintheans"), "corinthians"), + (UniCase("createur"), "creature"), + (UniCase("uncertaincy"), "uncertainty"), + (UniCase("ocasionally"), "occasionally"), + (UniCase("fraternety"), "fraternity"), + (UniCase("plagarism"), "plagiarism"), + (UniCase("percintile"), "percentile"), + (UniCase("infromation"), "information"), + (UniCase("prostitude"), "prostitute"), + (UniCase("aggressivo"), "aggression"), + (UniCase("conversatino"), "conservation"), + (UniCase("ploughshares"), "plowshares"), + (UniCase("halluciantions"), "hallucinations"), + (UniCase("italianas"), "italians"), + (UniCase("comitted"), "committed"), + (UniCase("impossibal"), "impossibly"), + (UniCase("underutilised"), "underutilized"), + (UniCase("blackberrry"), "blackberry"), + (UniCase("compreses"), "compress"), + (UniCase("categorice"), "categorize"), + (UniCase("pyschologically"), "psychologically"), + (UniCase("revolvs"), "revolves"), + (UniCase("invervention"), "intervention"), + (UniCase("swiming"), "swimming"), + (UniCase("personel"), "personnel"), + (UniCase("jacksonvile"), "jacksonville"), + (UniCase("startus"), "startups"), + (UniCase("motorollas"), "motorola"), + (UniCase("somtimes"), "sometimes"), + (UniCase("noticible"), "noticeable"), + (UniCase("journalims"), "journals"), + (UniCase("railraod"), "railroad"), + (UniCase("pronunciaton"), "pronunciation"), + (UniCase("mentionning"), "mentioning"), + (UniCase("decalring"), "declaring"), + (UniCase("firefigther"), "firefighters"), + (UniCase("misdemenor"), "misdemeanor"), + (UniCase("manufacters"), "manufactures"), + (UniCase("mercinaries"), "mercenaries"), + (UniCase("ackward"), "awkward"), + (UniCase("eclpise"), "eclipse"), + (UniCase("gonig"), "going"), + (UniCase("pharmacs"), "pharmacist"), + (UniCase("rewitten"), "rewritten"), + (UniCase("indefinete"), "indefinite"), + (UniCase("dispite"), "despite"), + (UniCase("insignificent"), "insignificant"), + (UniCase("flashligt"), "flashlight"), + (UniCase("undermimes"), "undermines"), + (UniCase("consistencey"), "consistency"), + (UniCase("multiplyng"), "multiplying"), + (UniCase("canalised"), "canalized"), + (UniCase("synomynous"), "synonymous"), + (UniCase("shelveys"), "shelves"), + (UniCase("falired"), "flaired"), + (UniCase("fluctiations"), "fluctuations"), + (UniCase("deodorise"), "deodorize"), + (UniCase("dirfting"), "drifting"), + (UniCase("possiblly"), "possibly"), + (UniCase("defensivley"), "defensively"), + (UniCase("concentraded"), "concentrated"), + (UniCase("tsamina"), "stamina"), + (UniCase("perpetraded"), "perpetrated"), + (UniCase("downgarde"), "downgrade"), + (UniCase("atmosphereic"), "atmospheric"), + (UniCase("purposelly"), "purposely"), + (UniCase("electrolyts"), "electrolytes"), + (UniCase("parametics"), "paramedics"), + (UniCase("procative"), "proactive"), + (UniCase("minnesotta"), "minnesota"), + (UniCase("infinetely"), "infinitely"), + (UniCase("derivitaves"), "derivatives"), + (UniCase("invincibile"), "invincible"), + (UniCase("reproducion"), "reproduction"), + (UniCase("scritps"), "scripts"), + (UniCase("disgustinly"), "disgustingly"), + (UniCase("hysteriia"), "hysteria"), + (UniCase("misrepresentativ"), "misrepresentation"), + (UniCase("persussion"), "persuasion"), + (UniCase("emiting"), "emitting"), + (UniCase("prioritises"), "prioritizes"), + (UniCase("wednessay"), "wednesdays"), + (UniCase("litecon"), "litecoin"), + (UniCase("regulas"), "regulars"), + (UniCase("interveres"), "interferes"), + (UniCase("distribuie"), "distribute"), + (UniCase("happliy"), "happily"), + (UniCase("invulnerbale"), "invulnerable"), + (UniCase("excecuting"), "executing"), + (UniCase("combinaton"), "combination"), + (UniCase("autochtonous"), "autochthonous"), + (UniCase("conpetitions"), "competitions"), + (UniCase("highloader"), "highlander"), + (UniCase("semestres"), "semesters"), + (UniCase("laucnher"), "launcher"), + (UniCase("amke"), "make"), + (UniCase("conflcit"), "conflict"), + (UniCase("assembe"), "assemble"), + (UniCase("mainfests"), "manifests"), + (UniCase("thunderblot"), "thunderbolt"), + (UniCase("iranias"), "iranians"), + (UniCase("itemise"), "itemize"), + (UniCase("specializied"), "specialize"), + (UniCase("falsley"), "falsely"), + (UniCase("presonas"), "personas"), + (UniCase("citicenship"), "citizenship"), + (UniCase("strawberrries"), "strawberries"), + (UniCase("renassiance"), "renaissance"), + (UniCase("organisers"), "organizers"), + (UniCase("reinitalise"), "reinitialise"), + (UniCase("professioanl"), "professionals"), + (UniCase("pedophilea"), "pedophilia"), + (UniCase("shortenend"), "shortened"), + (UniCase("collectivley"), "collectively"), + (UniCase("forunner"), "forerunner"), + (UniCase("contractos"), "contracts"), + (UniCase("adivsor"), "advisor"), + (UniCase("prostituton"), "prostitution"), + (UniCase("artihmetic"), "arithmetic"), + (UniCase("manifestes"), "manifests"), + (UniCase("reinstaled"), "reinstalled"), + (UniCase("abiltiy"), "ability"), + (UniCase("stragegically"), "strategically"), + (UniCase("sensationilist"), "sensationalist"), + (UniCase("proceedes"), "proceeds"), + (UniCase("parenthesies"), "parenthesis"), + (UniCase("aeorspace"), "aerospace"), + (UniCase("exapnds"), "expands"), + (UniCase("massechusetts"), "massachusetts"), + (UniCase("detectoare"), "detector"), + (UniCase("reserach"), "research"), + (UniCase("amohetamines"), "amphetamines"), + (UniCase("recoginse"), "recognise"), + (UniCase("soem"), "some"), + (UniCase("arbitratily"), "arbitrarily"), + (UniCase("contextualised"), "contextualized"), + (UniCase("convencen"), "convenience"), + (UniCase("enclycopedia"), "encyclopedia"), + (UniCase("presense"), "presence"), + (UniCase("tranzporter"), "transporter"), + (UniCase("completelyl"), "completely"), + (UniCase("dissepointed"), "dissapointed"), + (UniCase("sovietes"), "soviets"), + (UniCase("benchamrks"), "benchmarks"), + (UniCase("deployd"), "deployed"), + (UniCase("obtainabe"), "obtainable"), + (UniCase("americs"), "americas"), + (UniCase("toxicitity"), "toxicity"), + (UniCase("qualificatons"), "qualifications"), + (UniCase("transphonic"), "transphobic"), + (UniCase("konw"), "know"), + (UniCase("philosophicaly"), "philosophically"), + (UniCase("dissapponted"), "dissapointed"), + (UniCase("bacholers"), "bachelors"), + (UniCase("telelevision"), "television"), + (UniCase("restricion"), "restriction"), + (UniCase("whaeton"), "wheaton"), + (UniCase("predocessor"), "predecessor"), + (UniCase("ciricuit"), "circuit"), + (UniCase("breathos"), "breaths"), + (UniCase("critizing"), "criticizing"), + (UniCase("awya"), "away"), + (UniCase("subscriping"), "subscribing"), + (UniCase("retroactivelly"), "retroactively"), + (UniCase("procrastinationg"), "procrastinating"), + (UniCase("predicte"), "predictive"), + (UniCase("comminication"), "communication"), + (UniCase("sensitivy"), "sensitivity"), + (UniCase("ploughshare"), "plowshare"), + (UniCase("monolythic"), "monolithic"), + (UniCase("consttruction"), "construction"), + (UniCase("indefinitley"), "indefinitely"), + (UniCase("chcukles"), "chuckles"), + (UniCase("bulletprooof"), "bulletproof"), + (UniCase("suprizingly"), "surprisingly"), + (UniCase("environemnt"), "environment"), + (UniCase("garuantee"), "guarantee"), + (UniCase("downvoteurs"), "downvoters"), + (UniCase("manufactueres"), "manufactures"), + (UniCase("revealtion"), "revelations"), + (UniCase("equilevants"), "equivalents"), + (UniCase("warwcik"), "warwick"), + (UniCase("visably"), "visibly"), + (UniCase("motherbords"), "motherboards"), + (UniCase("difficutly"), "difficulty"), + (UniCase("determinare"), "determine"), + (UniCase("healtchare"), "healthcare"), + (UniCase("astronuat"), "astronaut"), + (UniCase("adaptare"), "adapter"), + (UniCase("vocalise"), "vocalize"), + (UniCase("reluctanty"), "reluctantly"), + (UniCase("archaoelogy"), "archeology"), + (UniCase("concentracion"), "concentration"), + (UniCase("luanched"), "launched"), + (UniCase("autisitc"), "autistic"), + (UniCase("tumours"), "tumors"), + (UniCase("macthup"), "matchup"), + (UniCase("intially"), "initially"), + (UniCase("mutliples"), "multiples"), + (UniCase("inculding"), "including"), + (UniCase("battlefied"), "battlefield"), + (UniCase("sentemental"), "sentimental"), + (UniCase("controvercy"), "controversy"), + (UniCase("photograhper"), "photographer"), + (UniCase("terminarlo"), "terminal"), + (UniCase("cooperativo"), "cooperation"), + (UniCase("denationalise"), "denationalize"), + (UniCase("photogrpahed"), "photographed"), + (UniCase("rucuperate"), "recuperate"), + (UniCase("naviagtion"), "navigation"), + (UniCase("unsuccessfull"), "unsuccessful"), + (UniCase("expell"), "expel"), + (UniCase("tortiose"), "tortoise"), + (UniCase("unanwsered"), "unanswered"), + (UniCase("exclamating"), "exclamation"), + (UniCase("costumise"), "costumes"), + (UniCase("stencilled"), "stenciled"), + (UniCase("inconprehensible"), "incomprehensible"), + (UniCase("poweful"), "powerful"), + (UniCase("appals"), "appalls"), + (UniCase("differene"), "differences"), + (UniCase("projecte"), "projectile"), + (UniCase("extremaste"), "extremes"), + (UniCase("insipred"), "inspired"), + (UniCase("diagonaal"), "diagonal"), + (UniCase("persuits"), "pursuits"), + (UniCase("starighten"), "straighten"), + (UniCase("criticicing"), "criticising"), + (UniCase("disciplinare"), "discipline"), + (UniCase("emmisarries"), "emissaries"), + (UniCase("fertilizier"), "fertilizer"), + (UniCase("misnadry"), "misandry"), + (UniCase("strechtes"), "stretches"), + (UniCase("backgrouns"), "backgrounds"), + (UniCase("cohesie"), "cohesive"), + (UniCase("fromatting"), "formatting"), + (UniCase("downsiders"), "downsides"), + (UniCase("corruptin"), "corruption"), + (UniCase("introverse"), "introverts"), + (UniCase("inventaron"), "inventor"), + (UniCase("intermittment"), "intermittent"), + (UniCase("automony"), "autonomy"), + (UniCase("anaylzing"), "analyzing"), + (UniCase("whistel"), "whistle"), + (UniCase("environmentl"), "environmentally"), + (UniCase("nullabour"), "nullarbor"), + (UniCase("symetrically"), "symmetrically"), + (UniCase("configureable"), "configurable"), + (UniCase("premeired"), "premiered"), + (UniCase("transmatter"), "transmitter"), + (UniCase("availabillity"), "availability"), + (UniCase("alledges"), "alleges"), + (UniCase("periphreals"), "peripherals"), + (UniCase("cosemtic"), "cosmetic"), + (UniCase("corrospond"), "correspond"), + (UniCase("chromossome"), "chromosomes"), + (UniCase("introspektion"), "introspection"), + (UniCase("transseuxal"), "transsexual"), + (UniCase("chargehr"), "charger"), + (UniCase("conpromising"), "compromising"), + (UniCase("manufactuter"), "manufacture"), + (UniCase("doucehbag"), "douchebag"), + (UniCase("skelatel"), "skeletal"), + (UniCase("maintaines"), "maintains"), + (UniCase("unbelievablly"), "unbelievably"), + (UniCase("intestinos"), "intestines"), + (UniCase("colonise"), "colonize"), + (UniCase("splendour"), "splendor"), + (UniCase("aucitons"), "auctions"), + (UniCase("ministeres"), "ministers"), + (UniCase("socilaism"), "socialism"), + (UniCase("foreginer"), "foreigner"), + (UniCase("embarass"), "embarrass"), + (UniCase("cosiest"), "coziest"), + (UniCase("fractalpus"), "fractals"), + (UniCase("infrotn"), "infront"), + (UniCase("inconsistecy"), "inconsistency"), + (UniCase("diarrhoea"), "diarrhea"), + (UniCase("disicples"), "disciples"), + (UniCase("justifyable"), "justifiable"), + (UniCase("comtamination"), "contamination"), + (UniCase("entrepreuners"), "entrepreneurs"), + (UniCase("resembels"), "resembles"), + (UniCase("guaridans"), "guardians"), + (UniCase("compresssion"), "compression"), + (UniCase("inadventently"), "inadvertently"), + (UniCase("asssasin"), "assassin"), + (UniCase("recidents"), "residents"), + (UniCase("developmetn"), "developments"), + (UniCase("invitacion"), "invitation"), + (UniCase("sharpley"), "sharply"), + (UniCase("tricolour"), "tricolor"), + (UniCase("traversie"), "traverse"), + (UniCase("downvotear"), "downvoters"), + (UniCase("manufacturas"), "manufactures"), + (UniCase("siezable"), "sizeable"), + (UniCase("neverthless"), "nevertheless"), + (UniCase("illustartions"), "illustrations"), + (UniCase("simluator"), "simulator"), + (UniCase("overpoweing"), "overpowering"), + (UniCase("participaste"), "participants"), + (UniCase("comming"), "coming"), + (UniCase("contast"), "contacts"), + (UniCase("confidenciality"), "confidential"), + (UniCase("timestap"), "timestamp"), + (UniCase("prompty"), "promptly"), + (UniCase("amatersu"), "amateurs"), + (UniCase("biologicaly"), "biologically"), + (UniCase("pretedermined"), "predetermined"), + (UniCase("misognyists"), "misogynist"), + (UniCase("scenarioes"), "scenarios"), + (UniCase("animostiy"), "animosity"), + (UniCase("steryotypes"), "stereotypes"), + (UniCase("executionees"), "executions"), + (UniCase("reinitalizing"), "reinitializing"), + (UniCase("indicativo"), "indication"), + (UniCase("kindergaten"), "kindergarten"), + (UniCase("accquainted"), "acquainted"), + (UniCase("cleasne"), "cleanse"), + (UniCase("sensationslism"), "sensationalism"), + (UniCase("bodyweigt"), "bodyweight"), + (UniCase("passerbys"), "passersby"), + (UniCase("govermet"), "goverment"), + (UniCase("spontaneus"), "spontaneous"), + (UniCase("activisit"), "activist"), + (UniCase("blackahwks"), "blackhawks"), + (UniCase("immitated"), "imitated"), + (UniCase("australianas"), "australians"), + (UniCase("frequenties"), "frequencies"), + (UniCase("anythign"), "anything"), + (UniCase("hipopotamus"), "hippopotamus"), + (UniCase("insultes"), "insults"), + (UniCase("cerimonious"), "ceremonious"), + (UniCase("prospertiy"), "prosperity"), + (UniCase("tghe"), "the"), + (UniCase("entirelly"), "entirely"), + (UniCase("socioeconimic"), "socioeconomic"), + (UniCase("institutue"), "instituted"), + (UniCase("criminalised"), "criminalized"), + (UniCase("fiercly"), "fiercely"), + (UniCase("volounteered"), "volunteered"), + (UniCase("necesserily"), "necessarily"), + (UniCase("tortillias"), "tortilla"), + (UniCase("creativelly"), "creatively"), + (UniCase("limitaiton"), "limitation"), + (UniCase("redepmtion"), "redemption"), + (UniCase("cardiovascualr"), "cardiovascular"), + (UniCase("derivitave"), "derivative"), + (UniCase("basicaly"), "basically"), + (UniCase("evangelise"), "evangelize"), + (UniCase("estbalishment"), "establishments"), + (UniCase("preceed"), "precede"), + (UniCase("commandore"), "commanders"), + (UniCase("firendlies"), "friendlies"), + (UniCase("keybaords"), "keyboards"), + (UniCase("continus"), "continues"), + (UniCase("interrogatin"), "interrogation"), + (UniCase("definetaly"), "definately"), + (UniCase("geographicaly"), "geographically"), + (UniCase("narcessist"), "narcissist"), + (UniCase("demonstraiton"), "demonstrations"), + (UniCase("presearing"), "preserving"), + (UniCase("programmier"), "programmer"), + (UniCase("forciblly"), "forcibly"), + (UniCase("agnostiscm"), "agnosticism"), + (UniCase("defenselss"), "defenseless"), + (UniCase("referentes"), "references"), + (UniCase("prominantly"), "prominently"), + (UniCase("amortising"), "amortizing"), + (UniCase("relatin"), "relation"), + (UniCase("scartches"), "scratches"), + (UniCase("existensial"), "existential"), + (UniCase("monogameous"), "monogamous"), + (UniCase("subsizide"), "subsidize"), + (UniCase("accessable"), "accessible"), + (UniCase("franchsies"), "franchises"), + (UniCase("parmasen"), "parmesan"), + (UniCase("guadulupe"), "guadalupe"), + (UniCase("simplefying"), "simplifying"), + (UniCase("agressivnes"), "agressive"), + (UniCase("stranglove"), "strangle"), + (UniCase("honory"), "honorary"), + (UniCase("monumnet"), "monument"), + (UniCase("appropraite"), "appropriate"), + (UniCase("opportunites"), "opportunities"), + (UniCase("radify"), "ratify"), + (UniCase("collectivly"), "collectively"), + (UniCase("confrentation"), "confrontation"), + (UniCase("bloodborbe"), "bloodborne"), + (UniCase("synonumous"), "synonymous"), + (UniCase("oppurtunities"), "opportunities"), + (UniCase("acopalyptic"), "apocalyptic"), + (UniCase("brimestone"), "brimstone"), + (UniCase("apporach"), "approach"), + (UniCase("repsonds"), "responds"), + (UniCase("realisme"), "realise"), + (UniCase("construcing"), "constructing"), + (UniCase("miscomunnication"), "miscommunication"), + (UniCase("negociate"), "negotiate"), + (UniCase("treatmet"), "treatments"), + (UniCase("neccessities"), "necessities"), + (UniCase("revelas"), "reveals"), + (UniCase("shephered"), "shepherd"), + (UniCase("initalizes"), "initializes"), + (UniCase("invariablly"), "invariably"), + (UniCase("hyperbolie"), "hyperbole"), + (UniCase("forensisch"), "forensic"), + (UniCase("directy"), "directly"), + (UniCase("anonomously"), "anonymously"), + (UniCase("haev"), "have"), + (UniCase("trasnmission"), "transmissions"), + (UniCase("snadler"), "sandler"), + (UniCase("unionised"), "unionized"), + (UniCase("hseldon"), "sheldon"), + (UniCase("billingualism"), "bilingualism"), + (UniCase("playhtrough"), "playthrough"), + (UniCase("infalte"), "inflate"), + (UniCase("accussed"), "accused"), + (UniCase("agriculutral"), "agricultural"), + (UniCase("temporise"), "temporize"), + (UniCase("enviroment"), "environment"), + (UniCase("pedophila"), "pedophilia"), + (UniCase("eloquenty"), "eloquently"), + (UniCase("incorportate"), "incorporate"), + (UniCase("propriatory"), "proprietary"), + (UniCase("difficut"), "difficulty"), + (UniCase("spectum"), "spectrum"), + (UniCase("multyplying"), "multiplying"), + (UniCase("intimitated"), "intimidated"), + (UniCase("nutrutional"), "nutritional"), + (UniCase("interpritation"), "interpretation"), + (UniCase("fedorans"), "fedoras"), + (UniCase("destruccion"), "destruction"), + (UniCase("deregulaiton"), "deregulation"), + (UniCase("indikation"), "indication"), + (UniCase("relavation"), "relaxation"), + (UniCase("synthesisers"), "synthesizers"), + (UniCase("dishoner"), "dishonored"), + (UniCase("facilitiy"), "facility"), + (UniCase("intoxicatin"), "intoxication"), + (UniCase("psuedo"), "pseudo"), + (UniCase("contribuo"), "contributor"), + (UniCase("gunatanamo"), "guantanamo"), + (UniCase("dieing"), "dying"), + (UniCase("knowleagable"), "knowledgable"), + (UniCase("probleem"), "problem"), + (UniCase("valentie"), "valentines"), + (UniCase("judgenental"), "judgemental"), + (UniCase("atatchment"), "attachment"), + (UniCase("compatative"), "comparative"), + (UniCase("devastanti"), "devastating"), + (UniCase("neighboorhoud"), "neighbourhood"), + (UniCase("wonderes"), "wonders"), + (UniCase("presedintia"), "presidential"), + (UniCase("presumptous"), "presumptuous"), + (UniCase("fundemantal"), "fundamental"), + (UniCase("generelization"), "generalization"), + (UniCase("entrepreneurers"), "entrepreneurs"), + (UniCase("explainging"), "explaining"), + (UniCase("treatmens"), "treatments"), + (UniCase("winnpieg"), "winnipeg"), + (UniCase("intimidad"), "intimidated"), + (UniCase("admininistrative"), "administrative"), + (UniCase("intrument"), "instrument"), + (UniCase("neslave"), "enslave"), + (UniCase("complition"), "completion"), + (UniCase("converning"), "converting"), + (UniCase("artifical"), "artificial"), + (UniCase("indianopolis"), "indianapolis"), + (UniCase("guage"), "gauge"), + (UniCase("brilliante"), "brilliance"), + (UniCase("inquisitivo"), "inquisition"), + (UniCase("sceptre"), "scepter"), + (UniCase("consums"), "consumes"), + (UniCase("facebok"), "facebook"), + (UniCase("physcopath"), "psychopath"), + (UniCase("socreboard"), "scoreboard"), + (UniCase("placemens"), "placements"), + (UniCase("deutcshland"), "deutschland"), + (UniCase("equialent"), "equivalent"), + (UniCase("predominatly"), "predominantly"), + (UniCase("minnestoa"), "minnesota"), + (UniCase("carrers"), "careers"), + (UniCase("elitisim"), "elitism"), + (UniCase("comsetics"), "cosmetics"), + (UniCase("respositories"), "repositories"), + (UniCase("comparions"), "comparison"), + (UniCase("californa"), "california"), + (UniCase("fundimentalist"), "fundamentalist"), + (UniCase("chloesterol"), "cholesterol"), + (UniCase("athetlics"), "athletics"), + (UniCase("gringeworthy"), "cringeworthy"), + (UniCase("ordianry"), "ordinary"), + (UniCase("californnia"), "californian"), + (UniCase("persecutie"), "persecuted"), + (UniCase("malasyia"), "malaysia"), + (UniCase("ulitmately"), "ultimately"), + (UniCase("containors"), "containers"), + (UniCase("impliciete"), "implicit"), + (UniCase("extraordinay"), "extraordinary"), + (UniCase("extermists"), "extremists"), + (UniCase("palaeontology"), "paleontology"), + (UniCase("metalic"), "metallic"), + (UniCase("tournements"), "tournaments"), + (UniCase("challanged"), "challenged"), + (UniCase("phsyicians"), "physicians"), + (UniCase("connonation"), "connotation"), + (UniCase("exterioare"), "exterior"), + (UniCase("prejeduces"), "prejudices"), + (UniCase("contigent"), "contingent"), + (UniCase("bilateraly"), "bilaterally"), + (UniCase("adjectivos"), "adjectives"), + (UniCase("girlfirends"), "girlfriends"), + (UniCase("marganilize"), "marginalized"), + (UniCase("staion"), "station"), + (UniCase("obviosuly"), "obviously"), + (UniCase("coefficeint"), "coefficient"), + (UniCase("corridoor"), "corridor"), + (UniCase("contibute"), "contribute"), + (UniCase("chlidfree"), "childfree"), + (UniCase("compansated"), "compensated"), + (UniCase("powerhourse"), "powerhouse"), + (UniCase("anbd"), "and"), + (UniCase("cmoputer"), "computer"), + (UniCase("morgtages"), "mortgages"), + (UniCase("phycisists"), "physicists"), + (UniCase("eurpoean"), "european"), + (UniCase("veryifing"), "verifying"), + (UniCase("marginis"), "margins"), + (UniCase("isntaller"), "installer"), + (UniCase("metaphysicans"), "metaphysics"), + (UniCase("objectivty"), "objectivity"), + (UniCase("justiifcation"), "justifications"), + (UniCase("perferable"), "preferable"), + (UniCase("masturbeta"), "masturbated"), + (UniCase("unaccpetable"), "unacceptable"), + (UniCase("confedence"), "conference"), + (UniCase("copenhaegen"), "copenhagen"), + (UniCase("cataclyms"), "cataclysm"), + (UniCase("transctions"), "transitions"), + (UniCase("phychiatrists"), "psychiatrists"), + (UniCase("hallucinatin"), "hallucinations"), + (UniCase("overpooling"), "overlooking"), + (UniCase("clitors"), "clitoris"), + (UniCase("entierty"), "entirety"), + (UniCase("grahpical"), "graphical"), + (UniCase("beccause"), "because"), + (UniCase("brianer"), "brainer"), + (UniCase("bulletts"), "bullets"), + (UniCase("creepes"), "creepers"), + (UniCase("custcenes"), "cutscenes"), + (UniCase("bodyweigth"), "bodyweight"), + (UniCase("commonspace"), "commonplace"), + (UniCase("natuilus"), "nautilus"), + (UniCase("hapened"), "happened"), + (UniCase("contruction"), "construction"), + (UniCase("fulfils"), "fulfills"), + (UniCase("commentart"), "commentator"), + (UniCase("sticthing"), "stitching"), + (UniCase("implicetly"), "implicitly"), + (UniCase("compalins"), "complains"), + (UniCase("researchs"), "researchers"), + (UniCase("extraodrinary"), "extraordinary"), + (UniCase("caluclator"), "calculator"), + (UniCase("afterhtought"), "afterthought"), + (UniCase("discreditted"), "discredited"), + (UniCase("mosquiters"), "mosquitoes"), + (UniCase("protability"), "portability"), + (UniCase("misunderstunding"), "misunderstandings"), + (UniCase("centepide"), "centipede"), + (UniCase("prohibitve"), "prohibited"), + (UniCase("percautions"), "precautions"), + (UniCase("spammear"), "spammer"), + (UniCase("brugundy"), "burgundy"), + (UniCase("intrecacies"), "intricacies"), + (UniCase("spesifications"), "specifications"), + (UniCase("transcrito"), "transcript"), + (UniCase("cupbaord"), "cupboard"), + (UniCase("infidility"), "infidelity"), + (UniCase("geographacilly"), "geographically"), + (UniCase("pharamceutical"), "pharmaceutical"), + (UniCase("laucnhers"), "launchers"), + (UniCase("technicaly"), "technically"), + (UniCase("moustache"), "mustache"), + (UniCase("moulting"), "molting"), + (UniCase("alledged"), "alleged"), + (UniCase("armouries"), "armories"), + (UniCase("chromasome"), "chromosome"), + (UniCase("reacll"), "recall"), + (UniCase("construccion"), "construction"), + (UniCase("credencials"), "credentials"), + (UniCase("collectivised"), "collectivized"), + (UniCase("defautls"), "defaults"), + (UniCase("enthusiest"), "enthusiast"), + (UniCase("yosemeti"), "yosemite"), + (UniCase("wednsedays"), "wednesdays"), + (UniCase("piankillers"), "painkillers"), + (UniCase("hotshoot"), "hotshot"), + (UniCase("premission"), "permission"), + (UniCase("frustrasion"), "frustrations"), + (UniCase("valykrie"), "valkyrie"), + (UniCase("colourize"), "colorize"), + (UniCase("bulletprof"), "bulletproof"), + (UniCase("eyar"), "year"), + (UniCase("interchangebale"), "interchangeable"), + (UniCase("idolised"), "idolized"), + (UniCase("proportionel"), "proportional"), + (UniCase("subisdy"), "subsidy"), + (UniCase("unnecessery"), "unnecessary"), + (UniCase("greenalnd"), "greenland"), + (UniCase("libertarien"), "libertarian"), + (UniCase("mulitation"), "mutilation"), + (UniCase("leiutenant"), "lieutenant"), + (UniCase("consequentually"), "consequently"), + (UniCase("accesss"), "access"), + (UniCase("metamage"), "metagame"), + (UniCase("uninstallimg"), "uninstalling"), + (UniCase("necromamcer"), "necromancer"), + (UniCase("portait"), "portrait"), + (UniCase("herculase"), "hercules"), + (UniCase("uncontrallably"), "uncontrollably"), + (UniCase("articel"), "article"), + (UniCase("cariacture"), "caricature"), + (UniCase("constituie"), "constitute"), + (UniCase("campaings"), "campaigns"), + (UniCase("marginaali"), "marginal"), + (UniCase("butterfries"), "butterflies"), + (UniCase("lanucher"), "launcher"), + (UniCase("transmutter"), "transmitter"), + (UniCase("equaliser"), "equalizer"), + (UniCase("perpetuationg"), "perpetuating"), + (UniCase("kilogramme"), "kilogram"), + (UniCase("confedaracy"), "confederacy"), + (UniCase("transaltion"), "translation"), + (UniCase("competitivley"), "competitively"), + (UniCase("tumour"), "tumor"), + (UniCase("dividens"), "dividends"), + (UniCase("reenforced"), "reinforced"), + (UniCase("ramificaitons"), "ramifications"), + (UniCase("distinctily"), "distinctly"), + (UniCase("positivitiy"), "positivity"), + (UniCase("intentionnal"), "intentional"), + (UniCase("dissmisal"), "dismissal"), + (UniCase("esportes"), "esports"), + (UniCase("empiers"), "empires"), + (UniCase("undergroud"), "underground"), + (UniCase("essensials"), "essentials"), + (UniCase("critizized"), "criticized"), + (UniCase("idenitfy"), "identify"), + (UniCase("partnerd"), "partnered"), + (UniCase("outclasssed"), "outclassed"), + (UniCase("consideraste"), "considerate"), + (UniCase("leaglizing"), "legalizing"), + (UniCase("ethicallity"), "ethically"), + (UniCase("unattented"), "unattended"), + (UniCase("unathorised"), "unauthorised"), + (UniCase("bangledesh"), "bangladesh"), + (UniCase("subtlties"), "subtitles"), + (UniCase("apprentace"), "apprentice"), + (UniCase("birghtest"), "brightest"), + (UniCase("liousville"), "louisville"), + (UniCase("transplantees"), "transplants"), + (UniCase("utilizaiton"), "utilization"), + (UniCase("regualting"), "regulating"), + (UniCase("rivalling"), "rivaling"), + (UniCase("strenghened"), "strengthened"), + (UniCase("satirise"), "satirize"), + (UniCase("concequently"), "consequently"), + (UniCase("ambassedor"), "ambassador"), + (UniCase("repsoted"), "reposted"), + (UniCase("millionairres"), "millionaire"), + (UniCase("monopolis"), "monopolies"), + (UniCase("contridicts"), "contradicts"), + (UniCase("collcetion"), "collections"), + (UniCase("subsidiced"), "subsidized"), + (UniCase("jurisdicitons"), "jurisdictions"), + (UniCase("seantors"), "senators"), + (UniCase("kindapped"), "kidnapped"), + (UniCase("descerning"), "descending"), + (UniCase("suceeded"), "succeeded"), + (UniCase("responsibilies"), "responsibilities"), + (UniCase("volunterily"), "voluntarily"), + (UniCase("coordinaton"), "coordination"), + (UniCase("amethsyt"), "amethyst"), + (UniCase("significanly"), "significantly"), + (UniCase("belabours"), "belabors"), + (UniCase("dolhpins"), "dolphins"), + (UniCase("discharded"), "discharged"), + (UniCase("compliation"), "compilation"), + (UniCase("parallells"), "parallels"), + (UniCase("audiobookmrs"), "audiobooks"), + (UniCase("stoyr"), "story"), + (UniCase("currentpos"), "currents"), + (UniCase("intillectually"), "intellectually"), + (UniCase("falshbacks"), "flashbacks"), + (UniCase("tirdent"), "trident"), + (UniCase("directoty"), "directory"), + (UniCase("referemces"), "references"), + (UniCase("manifestior"), "manifesto"), + (UniCase("trannsexual"), "transsexual"), + (UniCase("instabillity"), "instability"), + (UniCase("ubiquituous"), "ubiquitous"), + (UniCase("overlcoking"), "overlooking"), + (UniCase("pulverise"), "pulverize"), + (UniCase("interfce"), "interface"), + (UniCase("represantation"), "representation"), + (UniCase("repsonse"), "response"), + (UniCase("interactice"), "interactive"), + (UniCase("optimizare"), "optimize"), + (UniCase("linclon"), "lincoln"), + (UniCase("considerstion"), "considerations"), + (UniCase("phenomanon"), "phenomenon"), + (UniCase("spectaculalry"), "spectacularly"), + (UniCase("enthusuastic"), "enthusiastic"), + (UniCase("utlrasound"), "ultrasound"), + (UniCase("nuaghty"), "naughty"), + (UniCase("representaciones"), "representations"), + (UniCase("councelors"), "counselors"), + (UniCase("prohibirte"), "prohibit"), + (UniCase("populatiry"), "popularity"), + (UniCase("contravercial"), "controversial"), + (UniCase("illustratior"), "illustrator"), + (UniCase("aforememtioned"), "aforementioned"), + (UniCase("accuastion"), "accusation"), + (UniCase("mastrubates"), "masturbate"), + (UniCase("continious"), "continuous"), + (UniCase("villian"), "villain"), + (UniCase("spacification"), "specification"), + (UniCase("musicains"), "musicians"), + (UniCase("torrentas"), "torrents"), + (UniCase("imperailist"), "imperialist"), + (UniCase("prependicular"), "perpendicular"), + (UniCase("agnostocism"), "agnosticism"), + (UniCase("explosiones"), "explosions"), + (UniCase("amneisa"), "amnesia"), + (UniCase("intracacies"), "intricacies"), + (UniCase("positionl"), "positional"), + (UniCase("eliminase"), "eliminates"), + (UniCase("emergerd"), "emerged"), + (UniCase("playthourghs"), "playthroughs"), + (UniCase("expoch"), "epoch"), + (UniCase("abutts"), "abuts"), + (UniCase("resembelance"), "resemblance"), + (UniCase("ridiculoussness"), "ridiculousness"), + (UniCase("regressivo"), "regression"), + (UniCase("enlcave"), "enclave"), + (UniCase("cringeworhty"), "cringeworthy"), + (UniCase("unbelizeable"), "unbelievable"), + (UniCase("acquanited"), "acquainted"), + (UniCase("amphatamines"), "amphetamines"), + (UniCase("inspries"), "inspires"), + (UniCase("exaggarated"), "exaggerated"), + (UniCase("anonymosly"), "anonymously"), + (UniCase("knowledegable"), "knowledgeable"), + (UniCase("chariman"), "chairman"), + (UniCase("cheque"), "check"), + (UniCase("manouver"), "maneuver"), + (UniCase("unsuable"), "unusable"), + (UniCase("investigatons"), "investigations"), + (UniCase("adequet"), "adequate"), + (UniCase("fundamnetalist"), "fundamentalist"), + (UniCase("lobbyistes"), "lobbyists"), + (UniCase("consomation"), "consolation"), + (UniCase("polarising"), "polarizing"), + (UniCase("harasments"), "harassments"), + (UniCase("vertgio"), "vertigo"), + (UniCase("procriation"), "procreation"), + (UniCase("lazyness"), "laziness"), + (UniCase("crpytic"), "cryptic"), + (UniCase("conviciton"), "conviction"), + (UniCase("alterante"), "alternate"), + (UniCase("subconsciosly"), "subconsciously"), + (UniCase("permissibe"), "permissible"), + (UniCase("underestemate"), "underestimate"), + (UniCase("definitinely"), "definitively"), + (UniCase("analysze"), "analyse"), + (UniCase("transsmision"), "transmissions"), + (UniCase("regionaal"), "regional"), + (UniCase("retalaite"), "retaliate"), + (UniCase("dyamically"), "dynamically"), + (UniCase("exellent"), "excellent"), + (UniCase("ellected"), "elected"), + (UniCase("partiarchy"), "patriarchy"), + (UniCase("preceeded"), "preceded"), + (UniCase("comparasion"), "comparison"), + (UniCase("prerequistite"), "prerequisite"), + (UniCase("archaelogical"), "archaeological"), + (UniCase("altrusitic"), "altruistic"), + (UniCase("coulndt"), "couldnt"), + (UniCase("flourishment"), "flourishing"), + (UniCase("entrepreneuers"), "entrepreneurs"), + (UniCase("noctunre"), "nocturne"), + (UniCase("complianed"), "compliance"), + (UniCase("preorderes"), "preorders"), + (UniCase("workingest"), "workings"), + (UniCase("fraternise"), "fraternize"), + (UniCase("respectivley"), "respectively"), + (UniCase("comparaste"), "compares"), + (UniCase("explinatory"), "explanatory"), + (UniCase("compilaton"), "compilation"), + (UniCase("emphysyma"), "emphysema"), + (UniCase("misandrony"), "misandry"), + (UniCase("saviour"), "savior"), + (UniCase("buddhistisk"), "buddhists"), + (UniCase("complimentory"), "complimentary"), + (UniCase("overhwelmingly"), "overwhelmingly"), + (UniCase("imcompetence"), "incompetence"), + (UniCase("luietenant"), "lieutenant"), + (UniCase("goosebumbps"), "goosebumps"), + (UniCase("repulsie"), "repulsive"), + (UniCase("exectuions"), "executions"), + (UniCase("converstaion"), "conversation"), + (UniCase("instantaneos"), "instantaneous"), + (UniCase("stencilling"), "stenciling"), + (UniCase("meditatiing"), "meditating"), + (UniCase("repsonsibly"), "responsibly"), + (UniCase("nirvanna"), "nirvana"), + (UniCase("automaticly"), "automatically"), + (UniCase("unviersity"), "university"), + (UniCase("sporles"), "sproles"), + (UniCase("thialand"), "thailand"), + (UniCase("apprecaite"), "appreciate"), + (UniCase("priases"), "praises"), + (UniCase("irresponcible"), "irresponsible"), + (UniCase("intesnely"), "intensely"), + (UniCase("armageddeon"), "armageddon"), + (UniCase("gynaecology"), "gynecology"), + (UniCase("strecthes"), "stretches"), + (UniCase("tranzformer"), "transformer"), + (UniCase("decsend"), "descend"), + (UniCase("costomizable"), "customizable"), + (UniCase("intrinseci"), "intrinsic"), + (UniCase("inplementing"), "implementing"), + (UniCase("portagonists"), "protagonists"), + (UniCase("downwoters"), "downvoters"), + (UniCase("musuclar"), "muscular"), + (UniCase("nihilsim"), "nihilism"), + (UniCase("momentos"), "moments"), + (UniCase("efficeincy"), "efficiency"), + (UniCase("secratary"), "secretary"), + (UniCase("industriel"), "industrial"), + (UniCase("perceptoin"), "perceptions"), + (UniCase("circels"), "circles"), + (UniCase("missionera"), "missionary"), + (UniCase("missourri"), "missouri"), + (UniCase("intermediete"), "intermediate"), + (UniCase("exclusivos"), "exclusives"), + (UniCase("almanacks"), "almanacs"), + (UniCase("sprakling"), "sparkling"), + (UniCase("cooridnation"), "coordination"), + (UniCase("acordingly"), "accordingly"), + (UniCase("representate"), "representative"), + (UniCase("accompianed"), "accompanied"), + (UniCase("intruduced"), "introduced"), + (UniCase("distorto"), "distortion"), + (UniCase("prioritise"), "prioritize"), + (UniCase("callipers"), "calipers"), + (UniCase("yeras"), "years"), + (UniCase("savoury"), "savory"), + (UniCase("appraoched"), "approached"), + (UniCase("fantasiose"), "fantasies"), + (UniCase("viabiliy"), "viability"), + (UniCase("interventie"), "intervene"), + (UniCase("recipets"), "recipes"), + (UniCase("reassureing"), "reassuring"), + (UniCase("sheakspeare"), "shakespeare"), + (UniCase("swiftley"), "swiftly"), + (UniCase("deminsional"), "dimensional"), + (UniCase("soliliquy"), "soliloquy"), + (UniCase("tunnells"), "tunnels"), + (UniCase("reisntalled"), "reinstalled"), + (UniCase("visable"), "visible"), + (UniCase("inappropriatly"), "inappropriately"), + (UniCase("laboraty"), "laboratory"), + (UniCase("cliffhager"), "cliffhanger"), + (UniCase("pretens"), "pretends"), + (UniCase("entrepeneur"), "entrepreneur"), + (UniCase("exchangees"), "exchanges"), + (UniCase("fasicst"), "fascist"), + (UniCase("neigbhourhood"), "neighbourhood"), + (UniCase("magisine"), "magazine"), + (UniCase("settelments"), "settlements"), + (UniCase("nahsville"), "nashville"), + (UniCase("sasketchawan"), "saskatchewan"), + (UniCase("contextualises"), "contextualizes"), + (UniCase("championsip"), "championship"), + (UniCase("reclutantly"), "reluctantly"), + (UniCase("comminicate"), "communicate"), + (UniCase("appropraitely"), "appropriately"), + (UniCase("sexuallly"), "sexually"), + (UniCase("disastrosa"), "disastrous"), + (UniCase("emprisonment"), "imprisonment"), + (UniCase("competance"), "competence"), + (UniCase("armegaddon"), "armageddon"), + (UniCase("caridovascular"), "cardiovascular"), + (UniCase("esprots"), "esports"), + (UniCase("counsilors"), "counselors"), + (UniCase("annoints"), "anoints"), + (UniCase("anarchistm"), "anarchism"), + (UniCase("exagerated"), "exaggerated"), + (UniCase("levelign"), "leveling"), + (UniCase("inpsired"), "inspired"), + (UniCase("spreedsheet"), "spreadsheet"), + (UniCase("regularlas"), "regulars"), + (UniCase("levetated"), "levitated"), + (UniCase("levleling"), "levelling"), + (UniCase("defiantely"), "definately"), + (UniCase("involantary"), "involuntary"), + (UniCase("orangers"), "oranges"), + (UniCase("sympathiek"), "sympathize"), + (UniCase("cliffhangar"), "cliffhanger"), + (UniCase("gonorrhoea"), "gonorrhea"), + (UniCase("muscualr"), "muscular"), + (UniCase("laucnhing"), "launching"), + (UniCase("initmidate"), "intimidate"), + (UniCase("subscrie"), "subscriber"), + (UniCase("anthropoloy"), "anthropology"), + (UniCase("conversatism"), "conservatism"), + (UniCase("cansiter"), "canister"), + (UniCase("swedisch"), "swedish"), + (UniCase("scartching"), "scratching"), + (UniCase("hoilday"), "holiday"), + (UniCase("euorpeans"), "europeans"), + (UniCase("microtrasnactions"), "microtransactions"), + (UniCase("inaccuraties"), "inaccuracies"), + (UniCase("ritualised"), "ritualized"), + (UniCase("heronie"), "heroine"), + (UniCase("abrreviation"), "abbreviation"), + (UniCase("manufacturered"), "manufactured"), + (UniCase("jouranlist"), "journalist"), + (UniCase("bounderies"), "boundaries"), + (UniCase("disingeneous"), "disingenuous"), + (UniCase("adventurus"), "adventurous"), + (UniCase("strugglign"), "struggling"), + (UniCase("vegaterian"), "vegetarian"), + (UniCase("tolerabe"), "tolerable"), + (UniCase("transfors"), "transforms"), + (UniCase("equivilents"), "equivalents"), + (UniCase("cartirdges"), "cartridges"), + (UniCase("centrefold"), "centerfold"), + (UniCase("philospoher"), "philosopher"), + (UniCase("microtransacciones"), "microtransactions"), + (UniCase("incrementarlo"), "incremental"), + (UniCase("fascization"), "fascination"), + (UniCase("distraccion"), "distraction"), + (UniCase("misspeling"), "misspelling"), + (UniCase("attemted"), "attempted"), + (UniCase("decison"), "decision"), + (UniCase("allegry"), "allergy"), + (UniCase("sunderlona"), "sunderland"), + (UniCase("annoyingy"), "annoyingly"), + (UniCase("alterato"), "alteration"), + (UniCase("directores"), "directors"), + (UniCase("withdrawl"), "withdrawal"), + (UniCase("muscluar"), "muscular"), + (UniCase("vulgarising"), "vulgarizing"), + (UniCase("midfied"), "midfield"), + (UniCase("suspecious"), "suspicious"), + (UniCase("benevelent"), "benevolent"), + (UniCase("citisenship"), "citizenship"), + (UniCase("conversons"), "conversions"), + (UniCase("almanack"), "almanac"), + (UniCase("contirbutors"), "contributors"), + (UniCase("championsihp"), "championships"), + (UniCase("dismisals"), "dismissal"), + (UniCase("ressemblance"), "resemblance"), + (UniCase("pandroa"), "pandora"), + (UniCase("compemdium"), "compendium"), + (UniCase("capusles"), "capsules"), + (UniCase("colonisers"), "colonizers"), + (UniCase("approxiamte"), "approximate"), + (UniCase("anayltics"), "analytics"), + (UniCase("ironicaly"), "ironically"), + (UniCase("knwo"), "know"), + (UniCase("disadventage"), "disadvantage"), + (UniCase("reaplying"), "replaying"), + (UniCase("reorganisation"), "reorganization"), + (UniCase("precendence"), "precedence"), + (UniCase("intersteller"), "interstellar"), + (UniCase("responce"), "response"), + (UniCase("compromsie"), "compromises"), + (UniCase("freindships"), "friendships"), + (UniCase("complimentry"), "complimentary"), + (UniCase("corporativos"), "corporations"), + (UniCase("accuray"), "accuracy"), + (UniCase("indoktrination"), "indoctrination"), + (UniCase("prosectuion"), "prosecution"), + (UniCase("godliek"), "godlike"), + (UniCase("distils"), "distills"), + (UniCase("abruplty"), "abruptly"), + (UniCase("institutionnels"), "institutions"), + (UniCase("unsuprised"), "unsurprised"), + (UniCase("clamours"), "clamors"), + (UniCase("glight"), "flight"), + (UniCase("simultanously"), "simultaneously"), + (UniCase("invertes"), "inverse"), + (UniCase("sanitised"), "sanitized"), + (UniCase("strategice"), "strategies"), + (UniCase("relevations"), "revelations"), + (UniCase("inusrgency"), "insurgency"), + (UniCase("proverai"), "proverbial"), + (UniCase("incomprehensibe"), "incomprehensible"), + (UniCase("immortalises"), "immortalizes"), + (UniCase("lefitst"), "leftist"), + (UniCase("brasillian"), "brazilian"), + (UniCase("dentistas"), "dentists"), + (UniCase("flourine"), "fluorine"), + (UniCase("constituer"), "constitute"), + (UniCase("legendaires"), "legendaries"), + (UniCase("moisturises"), "moisturizes"), + (UniCase("noticeabley"), "noticeably"), + (UniCase("dependd"), "depended"), + (UniCase("commercialised"), "commercialized"), + (UniCase("clutchign"), "clutching"), + (UniCase("tirangle"), "triangle"), + (UniCase("implementationen"), "implementations"), + (UniCase("hospitalty"), "hospitality"), + (UniCase("investingate"), "investigate"), + (UniCase("flautist"), "flutist"), + (UniCase("resoultions"), "resolutions"), + (UniCase("nutriet"), "nutrient"), + (UniCase("infintiy"), "infinity"), + (UniCase("schyzophrenia"), "schizophrenia"), + (UniCase("strawberies"), "strawberries"), + (UniCase("settlemnts"), "settlements"), + (UniCase("institutionalise"), "institutionalize"), + (UniCase("maneagable"), "manageable"), + (UniCase("restrait"), "restraint"), + (UniCase("groyne"), "groin"), + (UniCase("responsability"), "responsibility"), + (UniCase("supperssor"), "suppressor"), + (UniCase("hsitorians"), "historians"), + (UniCase("proffesed"), "professed"), + (UniCase("preventivno"), "prevention"), + (UniCase("noticalbe"), "noticable"), + (UniCase("hypnotises"), "hypnotizes"), + (UniCase("conqouring"), "conquering"), + (UniCase("difficutlies"), "difficulties"), + (UniCase("therapeutuc"), "therapeutic"), + (UniCase("perpsective"), "perspective"), + (UniCase("caterpilar"), "caterpillar"), + (UniCase("alleigance"), "allegiance"), + (UniCase("wieghted"), "weighted"), + (UniCase("tortillla"), "tortilla"), + (UniCase("computition"), "computation"), + (UniCase("apprendice"), "apprentice"), + (UniCase("pshycology"), "psychology"), + (UniCase("professer"), "professor"), + (UniCase("maraconi"), "macaroni"), + (UniCase("schozophrenic"), "schizophrenic"), + (UniCase("trasnportation"), "transportation"), + (UniCase("deterministc"), "deterministic"), + (UniCase("atrocitites"), "atrocities"), + (UniCase("pscyhopath"), "psychopath"), + (UniCase("repaires"), "repairs"), + (UniCase("arithemtic"), "arithmetic"), + (UniCase("remainds"), "remains"), + (UniCase("pedophilac"), "pedophilia"), + (UniCase("liberatrian"), "libertarians"), + (UniCase("isrealis"), "israelis"), + (UniCase("maneuveurs"), "maneuver"), + (UniCase("liuke"), "like"), + (UniCase("syphoned"), "siphoned"), + (UniCase("conflicing"), "conflicting"), + (UniCase("unforgetable"), "unforgettable"), + (UniCase("abundancies"), "abundances"), + (UniCase("requieum"), "requiem"), + (UniCase("simulatenous"), "simultaneous"), + (UniCase("copyrighed"), "copyrighted"), + (UniCase("adivser"), "adviser"), + (UniCase("steryotypical"), "stereotypical"), + (UniCase("challengue"), "challenger"), + (UniCase("neighbords"), "neighbours"), + (UniCase("underming"), "undermining"), + (UniCase("embarrases"), "embarrassed"), + (UniCase("occupaiton"), "occupation"), + (UniCase("ostensiably"), "ostensibly"), + (UniCase("assersions"), "assertions"), + (UniCase("excatly"), "exactly"), + (UniCase("dismanting"), "dismantling"), + (UniCase("cacuses"), "caucuses"), + (UniCase("straind"), "strained"), + (UniCase("invaribaly"), "invariably"), + (UniCase("extemporising"), "extemporizing"), + (UniCase("mutlinational"), "multinational"), + (UniCase("governmant"), "governmental"), + (UniCase("workins"), "workings"), + (UniCase("democray"), "democracy"), + (UniCase("childres"), "childrens"), + (UniCase("satifsying"), "satisfying"), + (UniCase("listeneres"), "listeners"), + (UniCase("paitently"), "patiently"), + (UniCase("fanficitons"), "fanfiction"), + (UniCase("optimziation"), "optimization"), + (UniCase("imperetive"), "imperative"), + (UniCase("operatie"), "operative"), + (UniCase("correspondense"), "correspondence"), + (UniCase("capsulets"), "capsules"), + (UniCase("percantage"), "percentage"), + (UniCase("absorpsion"), "absorption"), + (UniCase("unnecassary"), "unnecessary"), + (UniCase("realies"), "realise"), + (UniCase("sysmatically"), "systematically"), + (UniCase("matierals"), "materials"), + (UniCase("substract"), "subtract"), + (UniCase("slienced"), "silenced"), + (UniCase("contais"), "contains"), + (UniCase("suprassing"), "surpassing"), + (UniCase("blackbeery"), "blackberry"), + (UniCase("illigetimate"), "illegitimate"), + (UniCase("overcoding"), "overcoming"), + (UniCase("negotation"), "negotiation"), + (UniCase("hypothesised"), "hypothesized"), + (UniCase("stormend"), "stormed"), + (UniCase("jersualem"), "jerusalem"), + (UniCase("philosohpy"), "philosophy"), + (UniCase("flavourless"), "flavorless"), + (UniCase("aspriin"), "aspirin"), + (UniCase("executivas"), "executives"), + (UniCase("intoxocated"), "intoxicated"), + (UniCase("improbible"), "improbable"), + (UniCase("origonally"), "originally"), + (UniCase("unsolicated"), "unsolicited"), + (UniCase("allievate"), "alleviate"), + (UniCase("disproportionnate"), "disproportionate"), + (UniCase("alchool"), "alcohol"), + (UniCase("arbour"), "arbor"), + (UniCase("sneeks"), "sneaks"), + (UniCase("rebounce"), "rebound"), + (UniCase("chernyobl"), "chernobyl"), + (UniCase("overcomming"), "overcoming"), + (UniCase("cynaide"), "cyanide"), + (UniCase("involontary"), "involuntary"), + (UniCase("preferenze"), "preference"), + (UniCase("compatabile"), "compatible"), + (UniCase("libertariansism"), "libertarianism"), + (UniCase("organisier"), "organise"), + (UniCase("suspiciuos"), "suspicions"), + (UniCase("noticeing"), "noticing"), + (UniCase("tryahrd"), "tryhard"), + (UniCase("toxicitiy"), "toxicity"), + (UniCase("innovatief"), "innovate"), + (UniCase("constransi"), "constraints"), + (UniCase("diagramas"), "diagrams"), + (UniCase("thoecracy"), "theocracy"), + (UniCase("misubderstanding"), "misunderstandings"), + (UniCase("passionant"), "passionate"), + (UniCase("ugprade"), "upgrade"), + (UniCase("manifestion"), "manifesto"), + (UniCase("malpractise"), "malpractice"), + (UniCase("enthusiasic"), "enthusiastic"), + (UniCase("substantie"), "substantive"), + (UniCase("distrubtes"), "distrust"), + (UniCase("stupidiy"), "stupidity"), + (UniCase("anytying"), "anything"), + (UniCase("privelege"), "privilege"), + (UniCase("drakest"), "darkest"), + (UniCase("misinterpretion"), "misinterpreting"), + (UniCase("unplacable"), "unplayable"), + (UniCase("presuambly"), "presumably"), + (UniCase("accumalated"), "accumulated"), + (UniCase("essentually"), "essentially"), + (UniCase("pennisula"), "peninsula"), + (UniCase("misunderstod"), "misunderstood"), + (UniCase("closley"), "closely"), + (UniCase("distrupts"), "distrust"), + (UniCase("symmertical"), "symmetrical"), + (UniCase("indiffernt"), "indifferent"), + (UniCase("proportionaly"), "proportionally"), + (UniCase("revelaing"), "revealing"), + (UniCase("intermettent"), "intermittent"), + (UniCase("contractar"), "contractor"), + (UniCase("accumulaton"), "accumulation"), + (UniCase("athletisim"), "athleticism"), + (UniCase("resolutionary"), "revolutionary"), + (UniCase("assissinated"), "assassinated"), + (UniCase("compesitions"), "compositions"), + (UniCase("exapnsive"), "expansive"), + (UniCase("simliar"), "similar"), + (UniCase("adbandon"), "abandon"), + (UniCase("cringewothy"), "cringeworthy"), + (UniCase("crtical"), "critical"), + (UniCase("negociated"), "negotiated"), + (UniCase("irritaties"), "irritate"), + (UniCase("avatares"), "avatars"), + (UniCase("isntrument"), "instrument"), + (UniCase("philosohpers"), "philosopher"), + (UniCase("treasuers"), "treasures"), + (UniCase("sexualy"), "sexually"), + (UniCase("mistakey"), "mistakenly"), + (UniCase("infrantryman"), "infantryman"), + (UniCase("deficeint"), "deficient"), + (UniCase("apocalytic"), "apocalyptic"), + (UniCase("frustraits"), "frustrates"), + (UniCase("damenor"), "demeanor"), + (UniCase("harasment"), "harassment"), + (UniCase("passabe"), "passable"), + (UniCase("shamelessely"), "shamelessly"), + (UniCase("refromed"), "reformed"), + (UniCase("formalising"), "formalizing"), + (UniCase("cooridnates"), "coordinates"), + (UniCase("persocuted"), "persecuted"), + (UniCase("dialgoue"), "dialogue"), + (UniCase("misogynsitic"), "misogynistic"), + (UniCase("alrightty"), "alrighty"), + (UniCase("remannts"), "remnants"), + (UniCase("loiusiana"), "louisiana"), + (UniCase("sprinke"), "sprinkle"), + (UniCase("affirmate"), "affirmative"), + (UniCase("kicthen"), "kitchen"), + (UniCase("simulatenously"), "simultaneously"), + (UniCase("handeld"), "handled"), + (UniCase("antiboitic"), "antibiotics"), + (UniCase("prepetrated"), "perpetrated"), + (UniCase("noteably"), "notably"), + (UniCase("lesbianas"), "lesbians"), + (UniCase("immediatelly"), "immediately"), + (UniCase("epscially"), "specially"), + (UniCase("imperfectionists"), "imperfections"), + (UniCase("xeonphobia"), "xenophobia"), + (UniCase("adquire"), "acquire"), + (UniCase("contestors"), "contests"), + (UniCase("volunteeer"), "volunteers"), + (UniCase("unseccessful"), "unsuccessful"), + (UniCase("commano"), "commando"), + (UniCase("charecters"), "characters"), + (UniCase("unbeliveably"), "unbelievably"), + (UniCase("embarressed"), "embarrassed"), + (UniCase("indicentally"), "incidentally"), + (UniCase("periwinkel"), "periwinkle"), + (UniCase("analyitcal"), "analytical"), + (UniCase("homoegenous"), "homogeneous"), + (UniCase("californina"), "californian"), + (UniCase("organizms"), "organism"), + (UniCase("suplimented"), "supplemented"), + (UniCase("dreasm"), "dreams"), + (UniCase("apporachable"), "approachable"), + (UniCase("attributred"), "attributed"), + (UniCase("moleclues"), "molecules"), + (UniCase("intrinsisch"), "intrinsic"), + (UniCase("destabilising"), "destabilizing"), + (UniCase("dominae"), "dominate"), + (UniCase("onslaugth"), "onslaught"), + (UniCase("scorebaord"), "scoreboard"), + (UniCase("supermarkers"), "supermarkets"), + (UniCase("unahppy"), "unhappy"), + (UniCase("crytpic"), "cryptic"), + (UniCase("disruptron"), "disruption"), + (UniCase("sentationalism"), "sensationalism"), + (UniCase("interaccion"), "interaction"), + (UniCase("sportsmamship"), "sportsmanship"), + (UniCase("transpoder"), "transported"), + (UniCase("innersection"), "intersection"), + (UniCase("achieval"), "achievable"), + (UniCase("humilitaion"), "humiliation"), + (UniCase("streamare"), "streamer"), + (UniCase("urkainian"), "ukrainian"), + (UniCase("apocalytpic"), "apocalyptic"), + (UniCase("shiped"), "shipped"), + (UniCase("interviened"), "interviewed"), + (UniCase("simliiar"), "similiar"), + (UniCase("devaite"), "deviate"), + (UniCase("begining"), "beginning"), + (UniCase("redundantcy"), "redundancy"), + (UniCase("litigatin"), "litigation"), + (UniCase("overwritte"), "overwrite"), + (UniCase("differantly"), "differently"), + (UniCase("inconsistensies"), "inconsistencies"), + (UniCase("chocolats"), "chocolates"), + (UniCase("catagorically"), "categorically"), + (UniCase("philosophiae"), "philosophies"), + (UniCase("perpaid"), "prepaid"), + (UniCase("heroicos"), "heroics"), + (UniCase("specificaitons"), "specification"), + (UniCase("powerliftng"), "powerlifting"), + (UniCase("succeded"), "succeeded"), + (UniCase("nationalties"), "nationalist"), + (UniCase("remians"), "remains"), + (UniCase("exhaustivo"), "exhaustion"), + (UniCase("feminsim"), "feminism"), + (UniCase("possesives"), "possessive"), + (UniCase("neighborhods"), "neighborhoods"), + (UniCase("apparenty"), "apparently"), + (UniCase("backgruond"), "backgrounds"), + (UniCase("generatin"), "generations"), + (UniCase("unintentionnally"), "unintentionally"), + (UniCase("dilpoma"), "diploma"), + (UniCase("aritfacts"), "artifacts"), + (UniCase("agrieved"), "aggrieved"), + (UniCase("hallucenations"), "hallucinations"), + (UniCase("prostehtic"), "prosthetic"), + (UniCase("camouglage"), "camouflage"), + (UniCase("importerad"), "imported"), + (UniCase("lighhtning"), "lightening"), + (UniCase("critisisms"), "criticisms"), + (UniCase("degrate"), "degrade"), + (UniCase("investemnt"), "investments"), + (UniCase("terminater"), "terminator"), + (UniCase("outmanoeuvred"), "outmaneuvered"), + (UniCase("raoming"), "roaming"), + (UniCase("pronuncuation"), "pronunciation"), + (UniCase("perputuated"), "perpetuated"), + (UniCase("inheirt"), "inherit"), + (UniCase("ddoging"), "dodging"), + (UniCase("pronoucned"), "pronounced"), + (UniCase("disposicion"), "disposition"), + (UniCase("responsiblity"), "responsibility"), + (UniCase("catapillers"), "caterpillars"), + (UniCase("swearengin"), "swearing"), + (UniCase("bilzzcon"), "blizzcon"), + (UniCase("relativitiy"), "relativity"), + (UniCase("needlees"), "needles"), + (UniCase("expolsives"), "explosives"), + (UniCase("transfroming"), "transforming"), + (UniCase("relpase"), "relapse"), + (UniCase("commissionned"), "commissioned"), + (UniCase("comany"), "company"), + (UniCase("unlikley"), "unlikely"), + (UniCase("apparantly"), "apparently"), + (UniCase("franchizes"), "franchises"), + (UniCase("sypmtom"), "symptom"), + (UniCase("privetized"), "privatized"), + (UniCase("insparation"), "inspiration"), + (UniCase("isntruments"), "instruments"), + (UniCase("comittee"), "committee"), + (UniCase("protectiei"), "protective"), + (UniCase("representatieve"), "representative"), + (UniCase("subpecies"), "subspecies"), + (UniCase("acknoweldged"), "acknowledged"), + (UniCase("anyhwere"), "anywhere"), + (UniCase("compolsory"), "compulsory"), + (UniCase("publicised"), "publicized"), + (UniCase("mozzarela"), "mozzarella"), + (UniCase("metagem"), "metagame"), + (UniCase("vocalising"), "vocalizing"), + (UniCase("clairfy"), "clarify"), + (UniCase("tornaodes"), "tornadoes"), + (UniCase("sensacionalism"), "sensationalism"), + (UniCase("restricton"), "restriction"), + (UniCase("charsimatic"), "charismatic"), + (UniCase("empitness"), "emptiness"), + (UniCase("clasues"), "clauses"), + (UniCase("vriament"), "vraiment"), + (UniCase("vietnamees"), "vietnamese"), + (UniCase("reproductivo"), "reproduction"), + (UniCase("dominato"), "domination"), + (UniCase("speical"), "special"), + (UniCase("begginings"), "beginnings"), + (UniCase("sasktachewan"), "saskatchewan"), + (UniCase("passionetly"), "passionately"), + (UniCase("sapphie"), "sapphire"), + (UniCase("abstinense"), "abstinence"), + (UniCase("preiodic"), "periodic"), + (UniCase("documentaties"), "documentaries"), + (UniCase("perdominantly"), "predominantly"), + (UniCase("lighthearded"), "lighthearted"), + (UniCase("explioted"), "exploited"), + (UniCase("philosiphers"), "philosophers"), + (UniCase("flamable"), "flammable"), + (UniCase("urugauy"), "uruguay"), + (UniCase("selectivly"), "selectively"), + (UniCase("sentinte"), "sentient"), + (UniCase("journaal"), "journal"), + (UniCase("magnifecent"), "magnificent"), + (UniCase("inpsiring"), "inspiring"), + (UniCase("presedential"), "presidential"), + (UniCase("thankyoou"), "thankyou"), + (UniCase("ocotpus"), "octopus"), + (UniCase("custimized"), "customized"), + (UniCase("definitaly"), "definately"), + (UniCase("regresse"), "regressive"), + (UniCase("olreans"), "orleans"), + (UniCase("controverisal"), "controversial"), + (UniCase("sceptical"), "skeptical"), + (UniCase("hsyteria"), "hysteria"), + (UniCase("co-incided"), "coincided"), + (UniCase("offences"), "offenses"), + (UniCase("subsiquent"), "subsequent"), + (UniCase("populary"), "popularity"), + (UniCase("halluciantion"), "hallucinations"), + (UniCase("vietnamiese"), "vietnamese"), + (UniCase("gentailia"), "genitalia"), + (UniCase("egaliterian"), "egalitarian"), + (UniCase("spwaned"), "spawned"), + (UniCase("stimulantes"), "stimulants"), + (UniCase("buglaria"), "bulgaria"), + (UniCase("unintensionally"), "unintentionally"), + (UniCase("botivational"), "motivational"), + (UniCase("complicati"), "complicit"), + (UniCase("confidentiel"), "confidential"), + (UniCase("permitis"), "permits"), + (UniCase("campainging"), "campaigning"), + (UniCase("likebale"), "likeable"), + (UniCase("gramme"), "gram"), + (UniCase("televisivo"), "television"), + (UniCase("paraphenalia"), "paraphernalia"), + (UniCase("dicover"), "discover"), + (UniCase("considerbly"), "considerably"), + (UniCase("autokorrect"), "autocorrect"), + (UniCase("psychoanalyses"), "psychoanalyzes"), + (UniCase("deterministische"), "deterministic"), + (UniCase("crossifre"), "crossfire"), + (UniCase("portrat"), "portrait"), + (UniCase("inablility"), "inability"), + (UniCase("considerais"), "considers"), + (UniCase("neigbours"), "neighbours"), + (UniCase("downwoting"), "downvoting"), + (UniCase("bestialiy"), "bestiality"), + (UniCase("hypnotise"), "hypnotize"), + (UniCase("circularising"), "circularizing"), + (UniCase("inutitive"), "intuitive"), + (UniCase("returnd"), "returned"), + (UniCase("spainsh"), "spanish"), + (UniCase("panethon"), "pantheon"), + (UniCase("iconclastic"), "iconoclastic"), + (UniCase("globalises"), "globalizes"), + (UniCase("respitatory"), "respiratory"), + (UniCase("listenend"), "listened"), + (UniCase("facilitatile"), "facilitate"), + (UniCase("excecutes"), "executes"), + (UniCase("independantes"), "independents"), + (UniCase("chidlrens"), "childrens"), + (UniCase("intracicies"), "intricacies"), + (UniCase("implantase"), "implants"), + (UniCase("imporvised"), "improvised"), + (UniCase("hospitalise"), "hospitalize"), + (UniCase("cosy"), "cozy"), + (UniCase("tigthening"), "tightening"), + (UniCase("endeavour"), "endeavor"), + (UniCase("beneficiul"), "beneficial"), + (UniCase("currentfps"), "currents"), + (UniCase("descripcion"), "description"), + (UniCase("indoctrinatie"), "indoctrinated"), + (UniCase("nationalise"), "nationalize"), + (UniCase("etrailer"), "retailer"), + (UniCase("convertibile"), "convertible"), + (UniCase("foundaiton"), "foundations"), + (UniCase("instructer"), "instructor"), + (UniCase("underestemating"), "underestimating"), + (UniCase("instutitionalized"), "institutionalized"), + (UniCase("gryphon"), "griffin"), + (UniCase("tommorrow"), "tomorrow"), + (UniCase("duplifaces"), "duplicates"), + (UniCase("inclreased"), "increased"), + (UniCase("unorigional"), "unoriginal"), + (UniCase("prevalecen"), "prevalence"), + (UniCase("subltety"), "subtlety"), + (UniCase("satisfiy"), "satisfy"), + (UniCase("prioritied"), "prioritize"), + (UniCase("minneaplois"), "minneapolis"), + (UniCase("amateurest"), "amateurs"), + (UniCase("insipration"), "inspiration"), + (UniCase("explorerers"), "explorers"), + (UniCase("honsetly"), "honestly"), + (UniCase("gundamentalists"), "fundamentalists"), + (UniCase("emapthize"), "empathize"), + (UniCase("aggrovating"), "aggravating"), + (UniCase("coordiantor"), "coordinator"), + (UniCase("uncomftorable"), "uncomfortable"), + (UniCase("compremised"), "compromised"), + (UniCase("prespectives"), "perspectives"), + (UniCase("dominno"), "dominion"), + (UniCase("unrealistc"), "unrealistic"), + (UniCase("columbidae"), "columbia"), + (UniCase("scrutinises"), "scrutinizes"), + (UniCase("labyrnith"), "labyrinth"), + (UniCase("outperfrom"), "outperform"), + (UniCase("massachusites"), "massachusetts"), + (UniCase("disbelife"), "disbelief"), + (UniCase("blackhaws"), "blackhawks"), + (UniCase("guarantess"), "guarantees"), + (UniCase("perfexcion"), "perfection"), + (UniCase("vizualisations"), "visualization"), + (UniCase("greande"), "grenade"), + (UniCase("revisionis"), "revisions"), + (UniCase("enthuiasts"), "enthusiast"), + (UniCase("capitans"), "captains"), + (UniCase("viatmins"), "vitamins"), + (UniCase("referens"), "references"), + (UniCase("procudures"), "procedures"), + (UniCase("conferming"), "confirming"), + (UniCase("misrepresantation"), "misrepresentation"), + (UniCase("regulament"), "regulate"), + (UniCase("produciton"), "production"), + (UniCase("neighbouring"), "neighboring"), + (UniCase("anticipe"), "anticipate"), + (UniCase("assembleing"), "assembling"), + (UniCase("reuinon"), "reunion"), + (UniCase("resotration"), "restoration"), + (UniCase("thnigs"), "things"), + (UniCase("metaphoras"), "metaphors"), + (UniCase("eleminating"), "eliminating"), + (UniCase("expectus"), "expects"), + (UniCase("masturbarte"), "masturbate"), + (UniCase("subscritpion"), "subscriptions"), + (UniCase("noctrune"), "nocturne"), + (UniCase("punishmnet"), "punishments"), + (UniCase("irrationallity"), "irrationally"), + (UniCase("mairjuana"), "marijuana"), + (UniCase("endoctrinated"), "indoctrinated"), + (UniCase("incorportaed"), "incorporated"), + (UniCase("fictionalisations"), "fictionalizations"), + (UniCase("differenty"), "differently"), + (UniCase("videogamemes"), "videogames"), + (UniCase("summarises"), "summarizes"), + (UniCase("brigthest"), "brightest"), + (UniCase("fuelling"), "fueling"), + (UniCase("fianlly"), "finally"), + (UniCase("formalisation"), "formalization"), + (UniCase("convienence"), "convenience"), + (UniCase("experimentors"), "experiments"), + (UniCase("prescritpion"), "prescriptions"), + (UniCase("elction"), "election"), + (UniCase("pathelogical"), "pathological"), + (UniCase("penaltis"), "penalties"), + (UniCase("wupport"), "support"), + (UniCase("celebratons"), "celebrations"), + (UniCase("aplhabet"), "alphabet"), + (UniCase("transcribtion"), "transcription"), + (UniCase("armamant"), "armament"), + (UniCase("reciept"), "receipt"), + (UniCase("exlcude"), "exclude"), + (UniCase("paramormal"), "paranormal"), + (UniCase("controlleras"), "controllers"), + (UniCase("louvres"), "louvers"), + (UniCase("caspule"), "capsule"), + (UniCase("exclusivly"), "exclusively"), + (UniCase("docuhebag"), "douchebag"), + (UniCase("guantanemo"), "guantanamo"), + (UniCase("speciliast"), "specialists"), + (UniCase("despiration"), "desperation"), + (UniCase("manufacterurs"), "manufactures"), + (UniCase("plagiariam"), "plagiarism"), + (UniCase("supsicions"), "suspicions"), + (UniCase("attened"), "attended"), + (UniCase("unreasonbly"), "unreasonably"), + (UniCase("germanos"), "germans"), + (UniCase("distribuer"), "distribute"), + (UniCase("naieve"), "naive"), + (UniCase("spectatular"), "spectacular"), + (UniCase("empahsizing"), "emphasizing"), + (UniCase("paragrapgh"), "paragraphs"), + (UniCase("reigmes"), "regimes"), + (UniCase("periodicaly"), "periodically"), + (UniCase("monolgoue"), "monologue"), + (UniCase("skillshosts"), "skillshots"), + (UniCase("suscpetible"), "susceptible"), + (UniCase("permisions"), "permission"), + (UniCase("firghtened"), "frightened"), + (UniCase("nazereth"), "nazareth"), + (UniCase("antiquae"), "antique"), + (UniCase("innocentes"), "innocents"), + (UniCase("approxamately"), "approximately"), + (UniCase("indianos"), "indians"), + (UniCase("enviornment"), "environment"), + (UniCase("respectivelly"), "respectively"), + (UniCase("truthfuly"), "truthfully"), + (UniCase("extremisim"), "extremism"), + (UniCase("periodisch"), "periodic"), + (UniCase("remoulded"), "remolded"), + (UniCase("apoligists"), "apologists"), + (UniCase("instal"), "install"), + (UniCase("zionistas"), "zionists"), + (UniCase("disresepct"), "disrespect"), + (UniCase("complane"), "complacent"), + (UniCase("phychologists"), "psychologists"), + (UniCase("consumirse"), "consumerism"), + (UniCase("rysurrection"), "resurrection"), + (UniCase("spammare"), "spammer"), + (UniCase("desperato"), "desperation"), + (UniCase("realtion"), "relation"), + (UniCase("gracefullly"), "gracefully"), + (UniCase("necessairy"), "necessarily"), + (UniCase("betehsda"), "bethesda"), + (UniCase("faincee"), "fiancee"), + (UniCase("studdy"), "study"), + (UniCase("repostiory"), "repository"), + (UniCase("pakistain"), "pakistani"), + (UniCase("captainers"), "captains"), + (UniCase("inconsistancies"), "inconsistencies"), + (UniCase("responsaveis"), "responsive"), + (UniCase("instutitional"), "institutional"), + (UniCase("espressso"), "espresso"), + (UniCase("registery"), "registry"), + (UniCase("microhpone"), "microphone"), + (UniCase("apostrope"), "apostrophe"), + (UniCase("overpad"), "overpaid"), + (UniCase("agricutlure"), "agriculture"), + (UniCase("plaestinians"), "palestinians"), + (UniCase("tournamets"), "tournaments"), + (UniCase("lisense"), "license"), + (UniCase("illitirate"), "illiterate"), + (UniCase("wikileakes"), "wikileaks"), + (UniCase("legistators"), "legislators"), + (UniCase("pumpinks"), "pumpkins"), + (UniCase("diferrent"), "different"), + (UniCase("decsendants"), "descendants"), + (UniCase("illuminauti"), "illuminati"), + (UniCase("demonising"), "demonizing"), + (UniCase("circumsizion"), "circumcision"), + (UniCase("signalled"), "signaled"), + (UniCase("transohobic"), "transphobic"), + (UniCase("catlayst"), "catalyst"), + (UniCase("exclusivitiy"), "exclusivity"), + (UniCase("renoylds"), "reynolds"), + (UniCase("acustom"), "accustom"), + (UniCase("subterranian"), "subterranean"), + (UniCase("pwoer"), "power"), + (UniCase("degragation"), "degradation"), + (UniCase("signficiant"), "significant"), + (UniCase("consdieration"), "considerations"), + (UniCase("simualtion"), "simulation"), + (UniCase("forfiet"), "forfeit"), + (UniCase("truamatic"), "traumatic"), + (UniCase("apprieciate"), "appreciate"), + (UniCase("communits"), "communist"), + (UniCase("malfonction"), "malfunction"), + (UniCase("multiplicacion"), "multiplication"), + (UniCase("homogenious"), "homogeneous"), + (UniCase("tranformed"), "transformed"), + (UniCase("proteines"), "proteins"), + (UniCase("atrifact"), "artifact"), + (UniCase("subsiduary"), "subsidiary"), + (UniCase("sensationails"), "sensationalism"), + (UniCase("caramelised"), "caramelized"), + (UniCase("logtiech"), "logitech"), + (UniCase("reaserching"), "researching"), + (UniCase("correclty"), "correctly"), + (UniCase("worshopping"), "worshipping"), + (UniCase("administre"), "administer"), + (UniCase("aready"), "already"), + (UniCase("tempalrs"), "templars"), + (UniCase("accomplishemnts"), "accomplishments"), + (UniCase("forsakn"), "forsaken"), + (UniCase("intamicy"), "intimacy"), + (UniCase("percisely"), "precisely"), + (UniCase("buring"), "burying"), + (UniCase("polysaccaride"), "polysaccharide"), + (UniCase("supressed"), "suppressed"), + (UniCase("palestinan"), "palestinian"), + (UniCase("immortailty"), "immortality"), + (UniCase("rulle"), "rule"), + (UniCase("distinciton"), "distinction"), + (UniCase("elecrtomagnetic"), "electromagnetic"), + (UniCase("sentaors"), "senators"), + (UniCase("emmisaries"), "emissaries"), + (UniCase("addopted"), "adopted"), + (UniCase("ploughman"), "plowman"), + (UniCase("proficinecy"), "proficiency"), + (UniCase("adheisve"), "adhesive"), + (UniCase("roleplaing"), "roleplaying"), + (UniCase("dissappears"), "disappears"), + (UniCase("extensivelly"), "extensively"), + (UniCase("conclutions"), "conclusions"), + (UniCase("therby"), "thereby"), + (UniCase("ridiculose"), "ridicule"), + (UniCase("fanaticals"), "fanatics"), + (UniCase("preests"), "presets"), + (UniCase("tsnuami"), "tsunami"), + (UniCase("straightmen"), "straighten"), + (UniCase("secrest"), "secrets"), + (UniCase("hieghtened"), "heightened"), + (UniCase("earthboud"), "earthbound"), + (UniCase("publishre"), "publisher"), + (UniCase("thyriod"), "thyroid"), + (UniCase("accountabilty"), "accountability"), + (UniCase("assistat"), "assistants"), + (UniCase("gloablly"), "globally"), + (UniCase("cloesly"), "closely"), + (UniCase("intangibil"), "intangible"), + (UniCase("inconvienent"), "inconvenient"), + (UniCase("vientam"), "vietnam"), + (UniCase("cerimonies"), "ceremonies"), + (UniCase("konversation"), "conversation"), + (UniCase("lesbain"), "lesbian"), + (UniCase("executioneers"), "executioner"), + (UniCase("departer"), "departure"), + (UniCase("diaganol"), "diagonal"), + (UniCase("complacant"), "complacent"), + (UniCase("buidlers"), "builders"), + (UniCase("medicority"), "mediocrity"), + (UniCase("frankenstiner"), "frankenstein"), + (UniCase("socialising"), "socializing"), + (UniCase("infiniment"), "infinite"), + (UniCase("escalatie"), "escalate"), + (UniCase("articualted"), "articulated"), + (UniCase("ceremone"), "ceremonies"), + (UniCase("discrecion"), "discretion"), + (UniCase("irresponsble"), "irresponsible"), + (UniCase("interrupteds"), "interrupts"), + (UniCase("platformar"), "platformer"), + (UniCase("extermism"), "extremism"), + (UniCase("accelerar"), "accelerator"), + (UniCase("aquire"), "acquire"), + (UniCase("partecipant"), "participant"), + (UniCase("adminsitration"), "administration"), + (UniCase("procrastinarting"), "procrastinating"), + (UniCase("translatin"), "translations"), + (UniCase("attracters"), "attracts"), + (UniCase("babysittng"), "babysitting"), + (UniCase("harvasting"), "harvesting"), + (UniCase("horrendeous"), "horrendous"), + (UniCase("liberatore"), "liberate"), + (UniCase("compasssion"), "compassion"), + (UniCase("centimetres"), "centimeters"), + (UniCase("volounteer"), "volunteer"), + (UniCase("paitence"), "patience"), + (UniCase("signitures"), "signatures"), + (UniCase("scrutinising"), "scrutinizing"), + (UniCase("duplicas"), "duplicates"), + (UniCase("colonializm"), "colonialism"), + (UniCase("cylidner"), "cylinder"), + (UniCase("acustommed"), "accustomed"), + (UniCase("showerd"), "showered"), + (UniCase("indirectely"), "indirectly"), + (UniCase("billioniares"), "billionaires"), + (UniCase("communicaton"), "communication"), + (UniCase("procrestination"), "procrastination"), + (UniCase("licences"), "licenses"), + (UniCase("contributer"), "contributor"), + (UniCase("preferenser"), "preferences"), + (UniCase("astonashing"), "astonishing"), + (UniCase("prototpyes"), "prototypes"), + (UniCase("perpetuaters"), "perpetuates"), + (UniCase("ostracise"), "ostracize"), + (UniCase("handcuffes"), "handcuffs"), + (UniCase("caffeen"), "caffeine"), + (UniCase("konservatism"), "conservatism"), + (UniCase("thermoneter"), "thermometer"), + (UniCase("uniquesness"), "uniqueness"), + (UniCase("ideologije"), "ideologies"), + (UniCase("keynode"), "keynote"), + (UniCase("massarce"), "massacre"), + (UniCase("destryoer"), "destroyer"), + (UniCase("penetracion"), "penetration"), + (UniCase("illistrate"), "illiterate"), + (UniCase("configuartions"), "configurations"), + (UniCase("nuetrality"), "neutrality"), + (UniCase("satisfacion"), "satisfaction"), + (UniCase("embarassment"), "embarrassment"), + (UniCase("deceptionist"), "receptionist"), + (UniCase("levetating"), "levitating"), + (UniCase("fractalers"), "fractals"), + (UniCase("captued"), "captured"), + (UniCase("uncertanty"), "uncertainty"), + (UniCase("retrived"), "retrieved"), + (UniCase("seperated"), "separated"), + (UniCase("beuatiful"), "beautiful"), + (UniCase("jamaicains"), "jamaican"), + (UniCase("purcahse"), "purchase"), + (UniCase("colgone"), "cologne"), + (UniCase("workststion"), "workstation"), + (UniCase("interected"), "interacted"), + (UniCase("constitucion"), "constitution"), + (UniCase("marijauna"), "marijuana"), + (UniCase("democrocies"), "democracies"), + (UniCase("consulation"), "consolation"), + (UniCase("unnecesserily"), "unnecessarily"), + (UniCase("neckbears"), "neckbeards"), + (UniCase("communicatons"), "communications"), + (UniCase("restaruants"), "restaurants"), + (UniCase("exerpts"), "excerpts"), + (UniCase("plausbile"), "plausible"), + (UniCase("governered"), "governed"), + (UniCase("spreadhseet"), "spreadsheet"), + (UniCase("revolutoin"), "revolutions"), + (UniCase("raspbery"), "raspberry"), + (UniCase("reccomended"), "recommended"), + (UniCase("streamtrue"), "streamer"), + (UniCase("punshier"), "punisher"), + (UniCase("relaspe"), "relapse"), + (UniCase("siginificant"), "significant"), + (UniCase("iminent"), "eminent"), + (UniCase("douchely"), "douchey"), + (UniCase("economisesti"), "economists"), + (UniCase("clitorious"), "clitoris"), + (UniCase("miscarraiges"), "miscarriage"), + (UniCase("prostitures"), "prostitutes"), + (UniCase("vrey"), "very"), + (UniCase("produse"), "produces"), + (UniCase("deterministisch"), "deterministic"), + (UniCase("primaeval"), "primeval"), + (UniCase("constituante"), "constituents"), + (UniCase("perade"), "parade"), + (UniCase("microtransactioned"), "microtransactions"), + (UniCase("infrasturcture"), "infrastructure"), + (UniCase("multplies"), "multiples"), + (UniCase("delibarate"), "deliberate"), + (UniCase("voilently"), "violently"), + (UniCase("contendor"), "contender"), + (UniCase("hemingwary"), "hemingway"), + (UniCase("decomissioned"), "decommissioned"), + (UniCase("harrassments"), "harassments"), + (UniCase("volonteers"), "volunteers"), + (UniCase("cleanleness"), "cleanliness"), + (UniCase("merceneries"), "mercenaries"), + (UniCase("linnaena"), "linnaean"), + (UniCase("procrastenating"), "procrastinating"), + (UniCase("commomwealth"), "commonwealth"), + (UniCase("gottleib"), "gottlieb"), + (UniCase("immunises"), "immunizes"), + (UniCase("groynes"), "groins"), + (UniCase("negotiaion"), "negotiation"), + (UniCase("countres"), "counters"), + (UniCase("involunatry"), "involuntary"), + (UniCase("transfroms"), "transforms"), + (UniCase("cleanliess"), "cleanliness"), + (UniCase("monopolised"), "monopolized"), + (UniCase("paricular"), "particular"), + (UniCase("oversimplificaiton"), "oversimplification"), + (UniCase("dismantleing"), "dismantling"), + (UniCase("downgarded"), "downgraded"), + (UniCase("proprietory"), "proprietary"), + (UniCase("congegration"), "congregation"), + (UniCase("infogrpahic"), "infographic"), + (UniCase("polgyamy"), "polygamy"), + (UniCase("contension"), "contention"), + (UniCase("altogehter"), "altogether"), + (UniCase("bifgoot"), "bigfoot"), + (UniCase("thanskgiving"), "thanksgiving"), + (UniCase("mississipi"), "mississippi"), + (UniCase("pecuilar"), "peculiar"), + (UniCase("negligente"), "negligence"), + (UniCase("nestin"), "nesting"), + (UniCase("hunderds"), "hundreds"), + (UniCase("syndiacte"), "syndicate"), + (UniCase("govermental"), "governmental"), + (UniCase("chihuahuha"), "chihuahua"), + (UniCase("heared"), "heard"), + (UniCase("onslaugt"), "onslaught"), + (UniCase("cathloic"), "catholic"), + (UniCase("impresonating"), "impersonating"), + (UniCase("parlours"), "parlors"), + (UniCase("airsfot"), "airsoft"), + (UniCase("ressemblence"), "resemblance"), + (UniCase("familiair"), "familiar"), + (UniCase("implementig"), "implementing"), + (UniCase("incompatablity"), "incompatibility"), + (UniCase("pertinante"), "pertinent"), + (UniCase("galvanise"), "galvanize"), + (UniCase("invisibiity"), "invisibility"), + (UniCase("volcaron"), "volcano"), + (UniCase("miscummunication"), "miscommunication"), + (UniCase("rigourous"), "rigorous"), + (UniCase("ailenating"), "alienating"), + (UniCase("recognicing"), "recognizing"), + (UniCase("patroit"), "patriot"), + (UniCase("randmoness"), "randomness"), + (UniCase("demosntrations"), "demonstrations"), + (UniCase("exhibites"), "exhibits"), + (UniCase("symmtery"), "symmetry"), + (UniCase("resignacion"), "resignation"), + (UniCase("urethrea"), "urethra"), + (UniCase("imapired"), "impaired"), + (UniCase("glagsow"), "glasgow"), + (UniCase("percential"), "percentile"), + (UniCase("scuplture"), "sculpture"), + (UniCase("envirnoment"), "environment"), + (UniCase("preventitve"), "preventative"), + (UniCase("procceding"), "proceeding"), + (UniCase("phycisians"), "physicians"), + (UniCase("scandalose"), "scandals"), + (UniCase("countes"), "counters"), + (UniCase("framethrower"), "flamethrower"), + (UniCase("aspriations"), "aspirations"), + (UniCase("sociopolical"), "sociological"), + (UniCase("determenation"), "determination"), + (UniCase("commomplace"), "commonplace"), + (UniCase("conversaion"), "conversion"), + (UniCase("profitabiliy"), "profitability"), + (UniCase("napoleonian"), "napoleonic"), + (UniCase("exaggurate"), "exaggerate"), + (UniCase("royalites"), "royalties"), + (UniCase("pleasent"), "pleasant"), + (UniCase("permissie"), "permissible"), + (UniCase("olymipcs"), "olympics"), + (UniCase("livelehood"), "livelihood"), + (UniCase("distint"), "distinct"), + (UniCase("victimises"), "victimizes"), + (UniCase("weathliest"), "wealthiest"), + (UniCase("usally"), "usually"), + (UniCase("architecs"), "architects"), + (UniCase("euhporia"), "euphoria"), + (UniCase("agricultue"), "agriculture"), + (UniCase("roundabaout"), "roundabout"), + (UniCase("highscholl"), "highschool"), + (UniCase("publicises"), "publicizes"), + (UniCase("originales"), "originals"), + (UniCase("suspiciouly"), "suspiciously"), + (UniCase("enfringement"), "infringement"), + (UniCase("militiades"), "militias"), + (UniCase("apporached"), "approached"), + (UniCase("recrutiment"), "recruitment"), + (UniCase("acknowleges"), "acknowledges"), + (UniCase("overeaching"), "overarching"), + (UniCase("powerfisting"), "powerlifting"), + (UniCase("obeidence"), "obedience"), + (UniCase("suop"), "soup"), + (UniCase("annointed"), "anointed"), + (UniCase("extremistes"), "extremists"), + (UniCase("negligable"), "negligible"), + (UniCase("analzyed"), "analyzed"), + (UniCase("breathalyses"), "breathalyzes"), + (UniCase("lightres"), "lighters"), + (UniCase("brownei"), "brownie"), + (UniCase("athletisism"), "athleticism"), + (UniCase("retrubution"), "retribution"), + (UniCase("primatively"), "primitively"), + (UniCase("stlyish"), "stylish"), + (UniCase("psychiatrict"), "psychiatrist"), + (UniCase("cannister"), "canister"), + (UniCase("legalizate"), "legalize"), + (UniCase("impelmentation"), "implementations"), + (UniCase("weaponary"), "weaponry"), + (UniCase("correciton"), "corrections"), + (UniCase("considerato"), "consideration"), + (UniCase("fraternising"), "fraternizing"), + (UniCase("radicalis"), "radicals"), + (UniCase("exressed"), "expressed"), + (UniCase("resisten"), "resistance"), + (UniCase("androis"), "androids"), + (UniCase("overboad"), "overboard"), + (UniCase("sponsores"), "sponsors"), + (UniCase("compatiable"), "compatible"), + (UniCase("inspeciton"), "inspections"), + (UniCase("volonteered"), "volunteered"), + (UniCase("theorises"), "theorizes"), + (UniCase("visbily"), "visibly"), + (UniCase("instils"), "instills"), + (UniCase("overriden"), "overridden"), + (UniCase("maintinaing"), "maintaining"), + (UniCase("malaira"), "malaria"), + (UniCase("asthetical"), "aesthetical"), + (UniCase("answerd"), "answered"), + (UniCase("radicas"), "radicals"), + (UniCase("intorduce"), "introduce"), + (UniCase("executie"), "executive"), + (UniCase("panmedic"), "pandemic"), + (UniCase("courtey"), "courtesy"), + (UniCase("refridgeration"), "refrigeration"), + (UniCase("satifies"), "satisfies"), + (UniCase("heastink"), "heatsink"), + (UniCase("fluxtuations"), "fluctuations"), + (UniCase("fremented"), "fermented"), + (UniCase("democract"), "democrat"), + (UniCase("classicos"), "classics"), + (UniCase("procedurial"), "procedural"), + (UniCase("predeterminded"), "predetermined"), + (UniCase("villageois"), "villages"), + (UniCase("collisson"), "collisions"), + (UniCase("emphatize"), "empathize"), + (UniCase("distrcits"), "districts"), + (UniCase("peculure"), "peculiar"), + (UniCase("faclons"), "falcons"), + (UniCase("demonstraion"), "demonstration"), + (UniCase("millenian"), "millennia"), + (UniCase("strians"), "strains"), + (UniCase("engeneering"), "engineering"), + (UniCase("condemmed"), "condemned"), + (UniCase("correlaties"), "correlates"), + (UniCase("secretery"), "secretary"), + (UniCase("dirived"), "derived"), + (UniCase("incorruptable"), "incorruptible"), + (UniCase("defnietly"), "definetly"), + (UniCase("intillectual"), "intellectual"), + (UniCase("occassion"), "occasion"), + (UniCase("processsors"), "processors"), + (UniCase("refered"), "referred"), + (UniCase("saviours"), "saviors"), + (UniCase("indistinguisable"), "indistinguishable"), + (UniCase("complecate"), "complicate"), + (UniCase("divison"), "division"), + (UniCase("passionite"), "passionate"), + (UniCase("steriotyping"), "stereotyping"), + (UniCase("manufactureros"), "manufactures"), + (UniCase("consilidate"), "consolidate"), + (UniCase("knoweldgeable"), "knowledgeable"), + (UniCase("permissons"), "permissions"), + (UniCase("expeditonary"), "expeditionary"), + (UniCase("empathising"), "empathizing"), + (UniCase("pnatheon"), "pantheon"), + (UniCase("garantees"), "guarantees"), + (UniCase("repuglicans"), "republicans"), + (UniCase("calibres"), "calibers"), + (UniCase("progresing"), "progressing"), + (UniCase("administrater"), "administrator"), + (UniCase("preparato"), "preparation"), + (UniCase("aremnian"), "armenian"), + (UniCase("insurence"), "insurance"), + (UniCase("commenwealth"), "commonwealth"), + (UniCase("welathy"), "wealthy"), + (UniCase("efficienct"), "efficient"), + (UniCase("practies"), "practise"), + (UniCase("demosntrated"), "demonstrated"), + (UniCase("transision"), "transition"), + (UniCase("intimadate"), "intimidate"), + (UniCase("governer"), "governor"), + (UniCase("recivership"), "receivership"), + (UniCase("waviers"), "waivers"), + (UniCase("knowlegeable"), "knowledgeable"), + (UniCase("censur"), "censor"), + (UniCase("frigign"), "friggin"), + (UniCase("arbours"), "arbors"), + (UniCase("numericable"), "numerical"), + (UniCase("transgended"), "transgendered"), + (UniCase("meerkrat"), "meerkat"), + (UniCase("thermastat"), "thermostat"), + (UniCase("predacessors"), "predecessors"), + (UniCase("homeowneris"), "homeowners"), + (UniCase("heroicus"), "heroics"), + (UniCase("enamelled"), "enameled"), + (UniCase("oppressin"), "oppression"), + (UniCase("dolphines"), "dolphins"), + (UniCase("patriarh"), "patriarchy"), + (UniCase("tresspasing"), "trespassing"), + (UniCase("labouring"), "laboring"), + (UniCase("disgustoso"), "disgusts"), + (UniCase("manufactorers"), "manufacturers"), + (UniCase("annonymouse"), "anonymous"), + (UniCase("transpotting"), "transporting"), + (UniCase("unautherized"), "unauthorized"), + (UniCase("astranauts"), "astronauts"), + (UniCase("contigious"), "contagious"), + (UniCase("intrenets"), "internets"), + (UniCase("predessecor"), "predecessor"), + (UniCase("agruable"), "arguable"), + (UniCase("possessivize"), "possessive"), + (UniCase("haording"), "hoarding"), + (UniCase("colleteral"), "collateral"), + (UniCase("chlidish"), "childish"), + (UniCase("pedohpiles"), "pedophiles"), + (UniCase("bastardes"), "bastards"), + (UniCase("bengzhai"), "benghazi"), + (UniCase("bureaocratic"), "bureaucratic"), + (UniCase("nightlie"), "nightlife"), + (UniCase("participat"), "participants"), + (UniCase("electorite"), "electorate"), + (UniCase("collequial"), "colloquial"), + (UniCase("condamning"), "condemning"), + (UniCase("natrual"), "natural"), + (UniCase("distinations"), "distinctions"), + (UniCase("agruing"), "arguing"), + (UniCase("maneuveres"), "maneuvers"), + (UniCase("breakthorugh"), "breakthrough"), + (UniCase("elecrto"), "electro"), + (UniCase("segretated"), "segregated"), + (UniCase("medicore"), "mediocre"), + (UniCase("resistences"), "resistances"), + (UniCase("milisecond"), "millisecond"), + (UniCase("recquired"), "required"), + (UniCase("descirbes"), "describes"), + (UniCase("dyanmite"), "dynamite"), + (UniCase("wieghtlifting"), "weightlifting"), + (UniCase("witht"), "with"), + (UniCase("halluzinations"), "hallucinations"), + (UniCase("invinicble"), "invincible"), + (UniCase("disadvantges"), "disadvantages"), + (UniCase("inconditionally"), "unconditionally"), + (UniCase("stationy"), "stationary"), + (UniCase("spectaculary"), "spectacularly"), + (UniCase("earhtquakes"), "earthquakes"), + (UniCase("problomatic"), "problematic"), + (UniCase("subarmine"), "submarine"), + (UniCase("northereastern"), "northeastern"), + (UniCase("norhtern"), "northern"), + (UniCase("disapprovel"), "disapproval"), + (UniCase("consolidad"), "consolidated"), + (UniCase("interrim"), "interim"), + (UniCase("organising"), "organizing"), + (UniCase("needels"), "needles"), + (UniCase("fabircation"), "fabrication"), + (UniCase("brakley"), "barkley"), + (UniCase("spezialisation"), "specialization"), + (UniCase("convento"), "convention"), + (UniCase("altrusim"), "altruism"), + (UniCase("sezuires"), "seizures"), + (UniCase("collectons"), "collections"), + (UniCase("retrevier"), "retriever"), + (UniCase("anwsering"), "answering"), + (UniCase("dramtic"), "dramatic"), + (UniCase("organizatinal"), "organizational"), + (UniCase("joystik"), "joystick"), + (UniCase("venezuelian"), "venezuela"), + (UniCase("gutteral"), "guttural"), + (UniCase("quention"), "quentin"), + (UniCase("ammused"), "amused"), + (UniCase("befoer"), "before"), + (UniCase("evangelising"), "evangelizing"), + (UniCase("organizuje"), "organize"), + (UniCase("fristly"), "firstly"), + (UniCase("moisturised"), "moisturized"), + (UniCase("dormtund"), "dortmund"), + (UniCase("scandianvian"), "scandinavian"), + (UniCase("inexpense"), "inexpensive"), + (UniCase("psychedellics"), "psychedelics"), + (UniCase("fanatsizing"), "fantasizing"), + (UniCase("spontaenous"), "spontaneous"), + (UniCase("disadvatanges"), "disadvantages"), + (UniCase("stroyline"), "storyline"), + (UniCase("bithces"), "bitches"), + (UniCase("planeswaker"), "planeswalker"), + (UniCase("durabillity"), "durability"), + (UniCase("trasnparency"), "transparency"), + (UniCase("confermation"), "confirmation"), + (UniCase("foreigness"), "foreigners"), + (UniCase("prodominantly"), "predominantly"), + (UniCase("convinsing"), "convincing"), + (UniCase("catagorized"), "categorized"), + (UniCase("coinsidentally"), "coincidentally"), + (UniCase("screenshat"), "screenshot"), + (UniCase("decomposit"), "decompose"), + (UniCase("recomend"), "recommend"), + (UniCase("photographied"), "photographed"), + (UniCase("traversier"), "traverse"), + (UniCase("initmately"), "intimately"), + (UniCase("utilisation"), "utilization"), + (UniCase("immesnely"), "immensely"), + (UniCase("territoral"), "territorial"), + (UniCase("intimitaly"), "intimately"), + (UniCase("aesthatically"), "aesthetically"), + (UniCase("initation"), "initiation"), + (UniCase("dagners"), "dangers"), + (UniCase("acronmys"), "acronyms"), + (UniCase("systematicaly"), "systematically"), + (UniCase("zoinism"), "zionism"), + (UniCase("narritives"), "narratives"), + (UniCase("distingishing"), "distinguishing"), + (UniCase("unconditionaly"), "unconditionally"), + (UniCase("migrains"), "migraines"), + (UniCase("narcissstic"), "narcissist"), + (UniCase("reletnless"), "relentless"), + (UniCase("generelize"), "generalize"), + (UniCase("repbulic"), "republic"), + (UniCase("controllore"), "controllers"), + (UniCase("misinfomed"), "misinformed"), + (UniCase("documantary"), "documentary"), + (UniCase("substitition"), "substitution"), + (UniCase("incomprehesible"), "incomprehensible"), + (UniCase("normalised"), "normalized"), + (UniCase("publishher"), "publisher"), + (UniCase("giltched"), "glitched"), + (UniCase("massasge"), "massages"), + (UniCase("purposley"), "purposely"), + (UniCase("fertilisers"), "fertilizers"), + (UniCase("qualifiing"), "qualifying"), + (UniCase("nationsl"), "nationals"), + (UniCase("exectuioner"), "executioner"), + (UniCase("delfect"), "deflect"), + (UniCase("procrastinazione"), "procrastination"), + (UniCase("repblican"), "republican"), + (UniCase("eyeballers"), "eyeballs"), + (UniCase("ritoers"), "rioters"), + (UniCase("ionising"), "ionizing"), + (UniCase("unfortuante"), "unfortunate"), + (UniCase("photograped"), "photographed"), + (UniCase("condmened"), "condemned"), + (UniCase("incredable"), "incredible"), + (UniCase("denominater"), "denominator"), + (UniCase("inlightening"), "enlightening"), + (UniCase("lingvistic"), "linguistic"), + (UniCase("ukrianian"), "ukrainian"), + (UniCase("comrads"), "comrades"), + (UniCase("shrelock"), "sherlock"), + (UniCase("afternooon"), "afternoon"), + (UniCase("lightergas"), "lighters"), + (UniCase("teaspon"), "teaspoon"), + (UniCase("felxible"), "flexible"), + (UniCase("anecodtally"), "anecdotally"), + (UniCase("simulatious"), "simulations"), + (UniCase("architechtures"), "architectures"), + (UniCase("creationsit"), "creationist"), + (UniCase("overlauded"), "overloaded"), + (UniCase("descripiton"), "descriptions"), + (UniCase("reapired"), "repaired"), + (UniCase("consipracy"), "conspiracy"), + (UniCase("subsidie"), "subsidized"), + (UniCase("cheif"), "chief"), + (UniCase("prolitariat"), "proletariat"), + (UniCase("pucini"), "puccini"), + (UniCase("finalises"), "finalizes"), + (UniCase("omiting"), "omitting"), + (UniCase("serached"), "searched"), + (UniCase("ninteenth"), "nineteenth"), + (UniCase("positionial"), "positional"), + (UniCase("obatinable"), "obtainable"), + (UniCase("glimpes"), "glimpse"), + (UniCase("agnosticsm"), "agnosticism"), + (UniCase("enlsaved"), "enslaved"), + (UniCase("judisuary"), "judiciary"), + (UniCase("missle"), "missile"), + (UniCase("militis"), "militias"), + (UniCase("feminises"), "feminizes"), + (UniCase("distrobutions"), "distributions"), + (UniCase("easthetically"), "aesthetically"), + (UniCase("anomynous"), "anonymous"), + (UniCase("similir"), "similiar"), + (UniCase("enginereed"), "engineered"), + (UniCase("earhtbound"), "earthbound"), + (UniCase("adminsitrative"), "administrative"), + (UniCase("haematological"), "hematological"), + (UniCase("undeniablly"), "undeniably"), + (UniCase("capitulo"), "capitol"), + (UniCase("engagemnts"), "engagements"), + (UniCase("governemnt"), "government"), + (UniCase("chrisitans"), "christians"), + (UniCase("performous"), "performs"), + (UniCase("morotola"), "motorola"), + (UniCase("metroplois"), "metropolis"), + (UniCase("disgusied"), "disguised"), + (UniCase("castatrophe"), "catastrophe"), + (UniCase("playthorugh"), "playthrough"), + (UniCase("representacion"), "representation"), + (UniCase("shakesphere"), "shakespeare"), + (UniCase("atmopshere"), "atmosphere"), + (UniCase("inverterad"), "inverted"), + (UniCase("templaras"), "templars"), + (UniCase("valentien"), "valentine"), + (UniCase("schisophrenic"), "schizophrenic"), + (UniCase("maintainted"), "maintained"), + (UniCase("trianlges"), "triangles"), + (UniCase("abbout"), "about"), + (UniCase("hting"), "thing"), + (UniCase("buisnesses"), "businesses"), + (UniCase("novmeber"), "november"), + (UniCase("asissted"), "assisted"), + (UniCase("camoufle"), "camouflage"), + (UniCase("quantifiy"), "quantify"), + (UniCase("thorughout"), "throughout"), + (UniCase("thermostaat"), "thermostat"), + (UniCase("liberalise"), "liberalize"), + (UniCase("intermidiate"), "intermediate"), + (UniCase("transsexuel"), "transsexual"), + (UniCase("counsolers"), "counselors"), + (UniCase("anticiapted"), "anticipated"), + (UniCase("chatoic"), "chaotic"), + (UniCase("successs"), "successes"), + (UniCase("supernarkets"), "supermarkets"), + (UniCase("intestinas"), "intestines"), + (UniCase("rhythim"), "rhythm"), + (UniCase("catagory"), "category"), + (UniCase("ammendments"), "amendments"), + (UniCase("eliminas"), "eliminates"), + (UniCase("condascending"), "condescending"), + (UniCase("inquisidor"), "inquisitor"), + (UniCase("aggragating"), "aggravating"), + (UniCase("literaly"), "literally"), + (UniCase("beggin"), "begin"), + (UniCase("vaguley"), "vaguely"), + (UniCase("montanha"), "montana"), + (UniCase("planeswaler"), "planeswalker"), + (UniCase("equivalant"), "equivalent"), + (UniCase("carvinal"), "carnival"), + (UniCase("iranianos"), "iranians"), + (UniCase("persuassive"), "persuasive"), + (UniCase("computerising"), "computerizing"), + (UniCase("outisders"), "outsiders"), + (UniCase("correctivos"), "corrections"), + (UniCase("affordible"), "affordable"), + (UniCase("intentines"), "intestines"), + (UniCase("experimeted"), "experimented"), + (UniCase("hypothosis"), "hypothesis"), + (UniCase("vaiation"), "aviation"), + (UniCase("karoake"), "karaoke"), + (UniCase("substitude"), "substitute"), + (UniCase("whislte"), "whistle"), + (UniCase("contenintal"), "continental"), + (UniCase("combiens"), "combines"), + (UniCase("analyse"), "analyze"), + (UniCase("vegeratian"), "vegetarians"), + (UniCase("sorcerey"), "sorcery"), + (UniCase("angosticism"), "agnosticism"), + (UniCase("fantacizing"), "fantasizing"), + (UniCase("minoritets"), "minorities"), + (UniCase("microtransactons"), "microtransactions"), + (UniCase("unfortunatley"), "unfortunately"), + (UniCase("controception"), "contraception"), + (UniCase("projektion"), "projection"), + (UniCase("penetratiing"), "penetrating"), + (UniCase("immobilise"), "immobilize"), + (UniCase("addionally"), "additionally"), + (UniCase("characterisics"), "characteristics"), + (UniCase("underneith"), "underneath"), + (UniCase("skillsto"), "skillshots"), + (UniCase("carnberry"), "cranberry"), + (UniCase("coloureds"), "coloreds"), + (UniCase("simultaneuous"), "simultaneous"), + (UniCase("hyporcite"), "hypocrite"), + (UniCase("battlearts"), "battlestar"), + (UniCase("logiteh"), "logitech"), + (UniCase("idiosyncracy"), "idiosyncrasy"), + (UniCase("persuasivo"), "persuasion"), + (UniCase("intelligance"), "intelligence"), + (UniCase("steadilly"), "steadily"), + (UniCase("vehicule"), "vehicle"), + (UniCase("renassaince"), "renaissance"), + (UniCase("gloabl"), "global"), + (UniCase("consultent"), "consultant"), + (UniCase("poisond"), "poisoned"), + (UniCase("collectros"), "collects"), + (UniCase("werstler"), "wrestler"), + (UniCase("racistes"), "racists"), + (UniCase("satisfactorally"), "satisfactory"), + (UniCase("believeble"), "believable"), + (UniCase("disastrosi"), "disastrous"), + (UniCase("transparantie"), "transparent"), + (UniCase("arcahic"), "archaic"), + (UniCase("priviliges"), "privileges"), + (UniCase("luanchers"), "launchers"), + (UniCase("potatos"), "potatoes"), + (UniCase("neckbeardius"), "neckbeards"), + (UniCase("improvemnts"), "improvements"), + (UniCase("unpredicatble"), "unpredictable"), + (UniCase("grammaticallity"), "grammatically"), + (UniCase("straightned"), "straightened"), + (UniCase("underbaker"), "undertaker"), + (UniCase("disciplinery"), "disciplinary"), + (UniCase("knowlege"), "knowledge"), + (UniCase("sprinkeld"), "sprinkled"), + (UniCase("cirruculum"), "curriculum"), + (UniCase("contradictin"), "contradiction"), + (UniCase("relaly"), "really"), + (UniCase("personarse"), "personas"), + (UniCase("propreitary"), "proprietary"), + (UniCase("parellels"), "parallels"), + (UniCase("rehersal"), "rehearsal"), + (UniCase("proportionnal"), "proportional"), + (UniCase("summerized"), "summarized"), + (UniCase("sentaor"), "senator"), + (UniCase("exclamativo"), "exclamation"), + (UniCase("revolutionens"), "revolutions"), + (UniCase("analyseras"), "analyses"), + (UniCase("blockes"), "blockers"), + (UniCase("abritrary"), "arbitrary"), + (UniCase("ehtereal"), "ethereal"), + (UniCase("afflcition"), "affliction"), + (UniCase("estonija"), "estonia"), + (UniCase("unwrittern"), "unwritten"), + (UniCase("guantanameow"), "guantanamo"), + (UniCase("criticizms"), "criticisms"), + (UniCase("peotry"), "poetry"), + (UniCase("percusions"), "percussion"), + (UniCase("discussin"), "discussion"), + (UniCase("behaivour"), "behaviour"), + (UniCase("empirialist"), "imperialist"), + (UniCase("environmentality"), "environmentally"), + (UniCase("interpriting"), "interpreting"), + (UniCase("braodcasting"), "broadcasting"), + (UniCase("tyrannise"), "tyrannize"), + (UniCase("expectating"), "expectation"), + (UniCase("medicalert"), "medicare"), + (UniCase("assosiations"), "associations"), + (UniCase("inexpereince"), "inexperience"), + (UniCase("synonomy"), "synonym"), + (UniCase("usefuly"), "usefully"), + (UniCase("maximised"), "maximized"), + (UniCase("impresison"), "impressions"), + (UniCase("convienent"), "convenient"), + (UniCase("rendezous"), "rendezvous"), + (UniCase("aperutre"), "aperture"), + (UniCase("circumsied"), "circumcised"), + (UniCase("arguemtn"), "arguement"), + (UniCase("unsuprized"), "unsurprised"), + (UniCase("appluad"), "applaud"), + (UniCase("celesital"), "celestial"), + (UniCase("initialises"), "initializes"), + (UniCase("implimented"), "implemented"), + (UniCase("chirstianity"), "christianity"), + (UniCase("ravelling"), "raveling"), + (UniCase("islamisters"), "islamists"), + (UniCase("addtional"), "additional"), + (UniCase("bottelneck"), "bottleneck"), + (UniCase("justificaiton"), "justification"), + (UniCase("aginst"), "against"), + (UniCase("prouncements"), "pronouncements"), + (UniCase("nigthly"), "nightly"), + (UniCase("gaurantee"), "guarantee"), + (UniCase("engineeer"), "engineer"), + (UniCase("perpatrators"), "perpetrators"), + (UniCase("initiaties"), "initiatives"), + (UniCase("compensante"), "compensate"), + (UniCase("dogamtic"), "dogmatic"), + (UniCase("disadvanteged"), "disadvantaged"), + (UniCase("dessertation"), "dissertation"), + (UniCase("preocupation"), "preoccupation"), + (UniCase("compansation"), "compensation"), + (UniCase("reinkarnation"), "reincarnation"), + (UniCase("instutution"), "institution"), + (UniCase("naturaly"), "naturally"), + (UniCase("enlish"), "english"), + (UniCase("mulitplier"), "multiplier"), + (UniCase("continential"), "continental"), + (UniCase("consequece"), "consequence"), + (UniCase("alternativelly"), "alternatively"), + (UniCase("misandy"), "misandry"), + (UniCase("templats"), "templates"), + (UniCase("stormfromt"), "stormfront"), + (UniCase("planeswalkr"), "planeswalker"), + (UniCase("convertr"), "converter"), + (UniCase("metaphsyical"), "metaphysical"), + (UniCase("donwsides"), "downsides"), + (UniCase("instrcutor"), "instructors"), + (UniCase("paraniod"), "paranoid"), + (UniCase("princibles"), "principles"), + (UniCase("spreadsheeticus"), "spreadsheets"), + (UniCase("silders"), "sliders"), + (UniCase("masturabte"), "masturbate"), + (UniCase("dialecs"), "dialects"), + (UniCase("apsotrophe"), "apostrophe"), + (UniCase("insanley"), "insanely"), + (UniCase("incarnacion"), "incarnation"), + (UniCase("succede"), "succeed"), + (UniCase("condemnd"), "condemned"), + (UniCase("paranornal"), "paranormal"), + (UniCase("paraphrashing"), "paraphrasing"), + (UniCase("warrriors"), "warriors"), + (UniCase("homewoner"), "homeowner"), + (UniCase("constans"), "constants"), + (UniCase("beneifical"), "beneficial"), + (UniCase("immortalls"), "immortals"), + (UniCase("sacrastic"), "sarcastic"), + (UniCase("toritlla"), "tortilla"), + (UniCase("wiredest"), "weirdest"), + (UniCase("impossibilty"), "impossibility"), + (UniCase("medeterranean"), "mediterranean"), + (UniCase("exposicion"), "exposition"), + (UniCase("themselvs"), "themselves"), + (UniCase("monoploies"), "monopolies"), + (UniCase("independentness"), "independents"), + (UniCase("cannibilism"), "cannibalism"), + (UniCase("trickey"), "trickery"), + (UniCase("declarasen"), "declares"), + (UniCase("mosquite"), "mosquitoes"), + (UniCase("luanching"), "launching"), + (UniCase("photographyi"), "photographic"), + (UniCase("collegues"), "colleagues"), + (UniCase("absurdley"), "absurdly"), + (UniCase("inattractive"), "unattractive"), + (UniCase("rulebok"), "rulebook"), + (UniCase("responnsibilty"), "responsibility"), + (UniCase("portraing"), "portraying"), + (UniCase("murdererd"), "murdered"), + (UniCase("recommeneded"), "recommended"), + (UniCase("outmanoeuvre"), "outmaneuver"), + (UniCase("spectaculaire"), "spectacular"), + (UniCase("encycolpedias"), "encyclopedia"), + (UniCase("bablyon"), "babylon"), + (UniCase("psichologist"), "psychologist"), + (UniCase("explosivas"), "explosives"), + (UniCase("quuery"), "query"), + (UniCase("maintenence"), "maintenance"), + (UniCase("waclott"), "walcott"), + (UniCase("instituded"), "instituted"), + (UniCase("abosrbed"), "absorbed"), + (UniCase("dawrves"), "dwarves"), + (UniCase("duaghter"), "daughter"), + (UniCase("communites"), "communities"), + (UniCase("employeer"), "employer"), + (UniCase("werstle"), "wrestle"), + (UniCase("tranlsations"), "translations"), + (UniCase("foucs"), "focus"), + (UniCase("condradictory"), "contradictory"), + (UniCase("specailized"), "specialized"), + (UniCase("hallicunation"), "hallucination"), + (UniCase("louisianna"), "louisiana"), + (UniCase("expoliting"), "exploiting"), + (UniCase("monopolising"), "monopolizing"), + (UniCase("zionsit"), "zionist"), + (UniCase("creationkit"), "creationist"), + (UniCase("recide"), "reside"), + (UniCase("tuseday"), "tuesday"), + (UniCase("misrepreseted"), "misrepresented"), + (UniCase("integrering"), "interfering"), + (UniCase("possesess"), "possesses"), + (UniCase("ostracised"), "ostracized"), + (UniCase("marmelade"), "marmalade"), + (UniCase("initiavite"), "initiatives"), + (UniCase("legistative"), "legislative"), + (UniCase("wintson"), "winston"), + (UniCase("dangeros"), "dangers"), + (UniCase("recpies"), "recipes"), + (UniCase("intiials"), "initials"), + (UniCase("apratheid"), "apartheid"), + (UniCase("signalling"), "signaling"), + (UniCase("invisibillity"), "invisibility"), + (UniCase("secpter"), "scepter"), + (UniCase("moonligt"), "moonlight"), + (UniCase("republi"), "republic"), + (UniCase("separato"), "separation"), + (UniCase("administrativo"), "administration"), + (UniCase("joysitck"), "joystick"), + (UniCase("smarthpones"), "smartphones"), + (UniCase("peodphile"), "pedophile"), + (UniCase("mouthpeace"), "mouthpiece"), + (UniCase("submarinas"), "submarines"), + (UniCase("valkirye"), "valkyrie"), + (UniCase("curcumstantial"), "circumstantial"), + (UniCase("arund"), "around"), + (UniCase("romanticises"), "romanticizes"), + (UniCase("invididually"), "individually"), + (UniCase("levander"), "lavender"), + (UniCase("syncronously"), "synchronously"), + (UniCase("residentail"), "residential"), + (UniCase("birthdsy"), "birthdays"), + (UniCase("subscrpition"), "subscriptions"), + (UniCase("reamins"), "remains"), + (UniCase("invlunerable"), "invulnerable"), + (UniCase("disciniplary"), "disciplinary"), + (UniCase("agknowledged"), "acknowledged"), + (UniCase("cheesecase"), "cheesecake"), + (UniCase("objectificaton"), "objectification"), + (UniCase("subesquent"), "subsequent"), + (UniCase("daimond"), "diamond"), + (UniCase("temperaturs"), "temperatures"), + (UniCase("substansen"), "substances"), + (UniCase("properites"), "properties"), + (UniCase("etherel"), "ethereal"), + (UniCase("playwrites"), "playwrights"), + (UniCase("cataclsym"), "cataclysm"), + (UniCase("explose"), "explodes"), + (UniCase("chromosomers"), "chromosomes"), + (UniCase("heartbeast"), "heartbeat"), + (UniCase("assisst"), "assists"), + (UniCase("israelits"), "israelis"), + (UniCase("cilnatro"), "cilantro"), + (UniCase("scholarhip"), "scholarship"), + (UniCase("steriotypes"), "stereotypes"), + (UniCase("advsior"), "advisor"), + (UniCase("pepperonni"), "pepperoni"), + (UniCase("pervents"), "prevents"), + (UniCase("snowbolling"), "snowballing"), + (UniCase("calcularon"), "calculator"), + (UniCase("clangour"), "clangor"), + (UniCase("ocurr"), "occur"), + (UniCase("lieuenant"), "lieutenant"), + (UniCase("enthusiants"), "enthusiast"), + (UniCase("italicises"), "italicizes"), + (UniCase("abnormaly"), "abnormally"), + (UniCase("artifactos"), "artifacts"), + (UniCase("alocholics"), "alcoholics"), + (UniCase("caclulations"), "calculations"), + (UniCase("inaccessibile"), "inaccessible"), + (UniCase("pligrim"), "pilgrim"), + (UniCase("investogator"), "investigator"), + (UniCase("materalists"), "materialist"), + (UniCase("privte"), "private"), + (UniCase("artilley"), "artillery"), + (UniCase("deplorabile"), "deplorable"), + (UniCase("dissapounted"), "dissapointed"), + (UniCase("photograh"), "photograph"), + (UniCase("transiet"), "transient"), + (UniCase("horading"), "hoarding"), + (UniCase("programattically"), "programmatically"), + (UniCase("moisturise"), "moisturize"), + (UniCase("idolises"), "idolizes"), + (UniCase("satisfactorly"), "satisfactory"), + (UniCase("electroncis"), "electrons"), + (UniCase("survivabiliy"), "survivability"), + (UniCase("mercenarios"), "mercenaries"), + (UniCase("antibitoic"), "antibiotic"), + (UniCase("presonally"), "personally"), + (UniCase("overestimateing"), "overestimating"), + (UniCase("threatning"), "threatening"), + (UniCase("dissobediance"), "disobedience"), + (UniCase("appraoching"), "approaching"), + (UniCase("critizisms"), "criticisms"), + (UniCase("precaucion"), "precaution"), + (UniCase("netowrking"), "networking"), + (UniCase("nectode"), "netcode"), + (UniCase("illuminiati"), "illuminati"), + (UniCase("resolvendo"), "resolved"), + (UniCase("delibirately"), "deliberately"), + (UniCase("misoganist"), "misogynist"), + (UniCase("intellecutally"), "intellectually"), + (UniCase("corpsers"), "corpses"), + (UniCase("simualtor"), "simulator"), + (UniCase("squirrelus"), "squirrels"), + (UniCase("shitlasses"), "shitless"), + (UniCase("freqeuncy"), "frequency"), + (UniCase("competeted"), "competed"), + (UniCase("pumpknis"), "pumpkins"), + (UniCase("antivirs"), "antivirus"), + (UniCase("konfrontation"), "confrontation"), + (UniCase("braceletes"), "bracelets"), + (UniCase("unnecessarity"), "unnecessarily"), + (UniCase("medicallly"), "medically"), + (UniCase("circumsice"), "circumcised"), + (UniCase("inititaive"), "initiatives"), + (UniCase("spoilerd"), "spoiled"), + (UniCase("withdrawling"), "withdrawing"), + (UniCase("liberacion"), "liberation"), + (UniCase("accumelate"), "accumulate"), + (UniCase("doucheus"), "douches"), + (UniCase("vageuly"), "vaguely"), + (UniCase("neverthelss"), "nevertheless"), + (UniCase("conlcude"), "conclude"), + (UniCase("frankensteen"), "frankenstein"), + (UniCase("chivarly"), "chivalry"), + (UniCase("metres"), "meters"), + (UniCase("automonomous"), "autonomous"), + (UniCase("connecticon"), "connection"), + (UniCase("sentinents"), "sentiments"), + (UniCase("adminstrative"), "administrative"), + (UniCase("autograpgh"), "autograph"), + (UniCase("spartsn"), "spartans"), + (UniCase("uniliterally"), "unilaterally"), + (UniCase("expressie"), "expressive"), + (UniCase("philippinoes"), "philippines"), + (UniCase("southmapton"), "southampton"), + (UniCase("speciliazation"), "specialization"), + (UniCase("annihalition"), "annihilation"), + (UniCase("pich"), "pitch"), + (UniCase("misimformed"), "misinformed"), + (UniCase("imgrants"), "migrants"), + (UniCase("impeccabile"), "impeccable"), + (UniCase("inquriy"), "inquiry"), + (UniCase("transitionals"), "transitions"), + (UniCase("capabillity"), "capability"), + (UniCase("supernatual"), "supernatural"), + (UniCase("declaraste"), "declares"), + (UniCase("deathmath"), "deathmatch"), + (UniCase("finantially"), "financially"), + (UniCase("inconsequencial"), "inconsequential"), + (UniCase("intregal"), "integral"), + (UniCase("misspeld"), "misspelled"), + (UniCase("transfender"), "transgender"), + (UniCase("techticians"), "technicians"), + (UniCase("escavation"), "escalation"), + (UniCase("humantiarian"), "humanitarian"), + (UniCase("chrisitan"), "christian"), + (UniCase("conservatisim"), "conservatism"), + (UniCase("nationalistisen"), "nationalists"), + (UniCase("passisve"), "passives"), + (UniCase("perpetutate"), "perpetuate"), + (UniCase("gratuidous"), "gratuitous"), + (UniCase("survivavility"), "survivability"), + (UniCase("maybellline"), "maybelline"), + (UniCase("fundamentalistisch"), "fundamentalists"), + (UniCase("fethced"), "fetched"), + (UniCase("visibiliy"), "visibility"), + (UniCase("squirrles"), "squirrels"), + (UniCase("anecdotle"), "anecdote"), + (UniCase("bittersweeet"), "bittersweet"), + (UniCase("pasttime"), "pastime"), + (UniCase("recommedations"), "recommendations"), + (UniCase("entrepraneurs"), "entrepreneurs"), + (UniCase("themsevles"), "themselves"), + (UniCase("volunatry"), "voluntary"), + (UniCase("simulteneous"), "simultaneous"), + (UniCase("invalueble"), "invaluable"), + (UniCase("actualy"), "actually"), + (UniCase("reprihensible"), "reprehensible"), + (UniCase("constrait"), "constraints"), + (UniCase("checkmeat"), "checkmate"), + (UniCase("thsoe"), "those"), + (UniCase("commercialise"), "commercialize"), + (UniCase("secerts"), "secrets"), + (UniCase("goegraphic"), "geographic"), + (UniCase("procliamed"), "proclaimed"), + (UniCase("arbitrarion"), "arbitration"), + (UniCase("unravelled"), "unraveled"), + (UniCase("economised"), "economized"), + (UniCase("incomprehensable"), "incomprehensible"), + (UniCase("westernised"), "westernized"), + (UniCase("fantacising"), "fantasizing"), + (UniCase("serivceable"), "serviceable"), + (UniCase("connotaion"), "connotation"), + (UniCase("esctatic"), "ecstatic"), + (UniCase("conived"), "connived"), + (UniCase("necormancer"), "necromancer"), + (UniCase("alrightey"), "alrighty"), + (UniCase("playersare"), "playerbase"), + (UniCase("criticms"), "critics"), + (UniCase("methaphors"), "metaphors"), + (UniCase("accicently"), "accidently"), + (UniCase("republis"), "republics"), + (UniCase("reportidly"), "reportedly"), + (UniCase("prejuduces"), "prejudices"), + (UniCase("definatly"), "definitely"), + (UniCase("extrems"), "extremes"), + (UniCase("androidos"), "androids"), + (UniCase("anaylzed"), "analyzed"), + (UniCase("paralysed"), "paralyzed"), + (UniCase("historicly"), "historical"), + (UniCase("vandalised"), "vandalized"), + (UniCase("pursiut"), "pursuit"), + (UniCase("ridicoulus"), "ridiculous"), + (UniCase("busness"), "business"), + (UniCase("metaphotically"), "metaphorically"), + (UniCase("questonable"), "questionable"), + (UniCase("assocaition"), "associations"), + (UniCase("tremendious"), "tremendous"), + (UniCase("prohibation"), "prohibition"), + (UniCase("comphrehensive"), "comprehensive"), + (UniCase("industrias"), "industries"), + (UniCase("thunderboat"), "thunderbolt"), + (UniCase("artifcat"), "artifact"), + (UniCase("destiantions"), "destinations"), + (UniCase("privatise"), "privatize"), + (UniCase("cathredal"), "cathedral"), + (UniCase("vehciles"), "vehicles"), + (UniCase("extraordinarly"), "extraordinary"), + (UniCase("extremisme"), "extremes"), + (UniCase("wherease"), "whereas"), + (UniCase("neglegting"), "neglecting"), + (UniCase("underwealming"), "underwhelming"), + (UniCase("formattting"), "formatting"), + (UniCase("bombardeada"), "bombarded"), + (UniCase("feltcher"), "fletcher"), + (UniCase("accidebtly"), "accidently"), + (UniCase("syringae"), "syringe"), + (UniCase("misinterprent"), "misinterpret"), + (UniCase("norwegin"), "norwegian"), + (UniCase("revolutionised"), "revolutionized"), + (UniCase("centimetre"), "centimeter"), + (UniCase("palestininas"), "palestinians"), + (UniCase("equivelants"), "equivalents"), + (UniCase("chassids"), "chassis"), + (UniCase("hostles"), "hostels"), + (UniCase("revolutionise"), "revolutionize"), + (UniCase("instalment"), "installment"), + (UniCase("pronounciation"), "pronunciation"), + (UniCase("seriuosly"), "seriously"), + (UniCase("disproportionaly"), "disproportionately"), + (UniCase("construits"), "constructs"), + (UniCase("inefficienty"), "inefficiently"), + (UniCase("inspecticon"), "inspection"), + (UniCase("infarred"), "infrared"), + (UniCase("disconneted"), "disconnected"), + (UniCase("themslef"), "themself"), + (UniCase("encyclopaedias"), "encyclopedias"), + (UniCase("toliets"), "toilets"), + (UniCase("adventourus"), "adventurous"), + (UniCase("sprinkel"), "sprinkle"), + (UniCase("benedit"), "benedict"), + (UniCase("computacion"), "computation"), + (UniCase("intristically"), "intrinsically"), + (UniCase("meditato"), "meditation"), + (UniCase("authoritation"), "authorization"), + (UniCase("structurel"), "structural"), + (UniCase("electrones"), "electrons"), + (UniCase("philippinnes"), "philippines"), + (UniCase("initialled"), "initialed"), + (UniCase("inconsistencias"), "inconsistencies"), + (UniCase("regulatories"), "regulators"), + (UniCase("legenadries"), "legendaries"), + (UniCase("perdiction"), "prediction"), + (UniCase("critisicm"), "criticism"), + (UniCase("emnity"), "enmity"), + (UniCase("vaporisation"), "vaporization"), + (UniCase("resolveres"), "resolves"), + (UniCase("psychedilics"), "psychedelics"), + (UniCase("executible"), "executable"), + (UniCase("mobiltiy"), "mobility"), + (UniCase("caluiflower"), "cauliflower"), + (UniCase("completelys"), "completes"), + (UniCase("incorectly"), "incorrectly"), + (UniCase("embaraasing"), "embarassing"), + (UniCase("instrcutions"), "instruction"), + (UniCase("variey"), "variety"), + (UniCase("acclimatise"), "acclimatize"), + (UniCase("simulative"), "simulate"), + (UniCase("adaptating"), "adaptation"), + (UniCase("rennovate"), "renovate"), + (UniCase("imaginitve"), "imaginative"), + (UniCase("fashionalbe"), "fashionable"), + (UniCase("behoved"), "behooved"), + (UniCase("futher"), "further"), + (UniCase("manufacturerd"), "manufactured"), + (UniCase("symmetral"), "symmetric"), + (UniCase("supermaster"), "supermarkets"), + (UniCase("vaugely"), "vaguely"), + (UniCase("diarreha"), "diarrhea"), + (UniCase("construcs"), "constructs"), + (UniCase("represend"), "represented"), + (UniCase("stabilisation"), "stabilization"), + (UniCase("compalint"), "compliant"), + (UniCase("exercices"), "exercise"), + (UniCase("duplicats"), "duplicates"), + (UniCase("touchscreeen"), "touchscreen"), + (UniCase("absolutey"), "absolutely"), + (UniCase("oragnised"), "organised"), + (UniCase("enginer"), "engineer"), + (UniCase("amortise"), "amortize"), + (UniCase("accusato"), "accusation"), + (UniCase("boredoom"), "boredom"), + (UniCase("santurom"), "santorum"), + (UniCase("argubly"), "arguably"), + (UniCase("unsubscrubed"), "unsubscribed"), + (UniCase("crosspot"), "crosspost"), + (UniCase("entertainted"), "entertained"), + (UniCase("carnvial"), "carnival"), + (UniCase("diabetees"), "diabetes"), + (UniCase("skatebaords"), "skateboard"), + (UniCase("childisch"), "childish"), + (UniCase("rektifications"), "certifications"), + (UniCase("thast"), "that"), + (UniCase("producirse"), "producers"), + (UniCase("frequence"), "frequencies"), + (UniCase("aquarim"), "aquarium"), + (UniCase("excpetion"), "exception"), + (UniCase("theoratically"), "theoretically"), + (UniCase("undersetimate"), "underestimate"), + (UniCase("indictrinated"), "indoctrinated"), + (UniCase("hypathetically"), "hypothetically"), + (UniCase("marnies"), "marines"), + (UniCase("spesification"), "specification"), + (UniCase("suspicision"), "suspicions"), + (UniCase("resistnace"), "resistances"), + (UniCase("inhumain"), "inhuman"), + (UniCase("temeprature"), "temperature"), + (UniCase("annonceurs"), "announcers"), + (UniCase("overpiad"), "overpaid"), + (UniCase("decloration"), "declaration"), + (UniCase("introspectivo"), "introspection"), + (UniCase("premuims"), "premiums"), + (UniCase("weilded"), "wielded"), + (UniCase("adbucted"), "abducted"), + (UniCase("patriotics"), "patriotism"), + (UniCase("indirecty"), "indirectly"), + (UniCase("countrying"), "countering"), + (UniCase("limitacion"), "limitation"), + (UniCase("gongratulations"), "congratulations"), + (UniCase("abdominable"), "abdominal"), + (UniCase("chocolste"), "chocolates"), + (UniCase("appropriato"), "appropriation"), + (UniCase("physiologial"), "physiological"), + (UniCase("procrascinating"), "procrastinating"), + (UniCase("faliures"), "failures"), + (UniCase("introductary"), "introductory"), + (UniCase("trasnlated"), "translated"), + (UniCase("likelyhood"), "likelihood"), + (UniCase("fascinacion"), "fascination"), + (UniCase("tempets"), "tempest"), + (UniCase("designad"), "designated"), + (UniCase("sensationalising"), "sensationalizing"), + (UniCase("pireced"), "pierced"), + (UniCase("anwsered"), "answered"), + (UniCase("glicthes"), "glitches"), + (UniCase("frigthened"), "frightened"), + (UniCase("dischare"), "discharged"), + (UniCase("complate"), "complacent"), + (UniCase("practially"), "practically"), + (UniCase("synphony"), "symphony"), + (UniCase("emphasises"), "emphasizes"), + (UniCase("donwvoted"), "downvoted"), + (UniCase("memorised"), "memorized"), + (UniCase("unattractice"), "unattractive"), + (UniCase("curricullum"), "curriculum"), + (UniCase("indimidating"), "intimidating"), + (UniCase("regresives"), "regressive"), + (UniCase("bureaocracy"), "bureaucracy"), + (UniCase("gullibe"), "gullible"), + (UniCase("additivies"), "additive"), + (UniCase("monolopies"), "monopolies"), + (UniCase("semanitcs"), "semantics"), + (UniCase("hokpins"), "hopkins"), + (UniCase("littel"), "little"), + (UniCase("resurreccion"), "resurrection"), + (UniCase("refillls"), "refills"), + (UniCase("exaclty"), "exactly"), + (UniCase("sanctionned"), "sanctioned"), + (UniCase("programem"), "programme"), + (UniCase("unresponive"), "unresponsive"), + (UniCase("confilcting"), "conflicting"), + (UniCase("custumization"), "customization"), + (UniCase("intimitaded"), "intimidated"), + (UniCase("narwharl"), "narwhal"), + (UniCase("gernade"), "grenade"), + (UniCase("monitos"), "monitors"), + (UniCase("isntallation"), "installation"), + (UniCase("mediocraty"), "mediocrity"), + (UniCase("messagd"), "messaged"), + (UniCase("tentacls"), "tentacles"), + (UniCase("transformare"), "transformers"), + (UniCase("distributivos"), "distributions"), + (UniCase("melatonian"), "melatonin"), + (UniCase("copenhague"), "copenhagen"), + (UniCase("horizantal"), "horizontal"), + (UniCase("internalises"), "internalizes"), + (UniCase("scnearios"), "scenarios"), + (UniCase("wedensdays"), "wednesdays"), + (UniCase("littelfinger"), "littlefinger"), + (UniCase("conicidentally"), "coincidentally"), + (UniCase("representativas"), "representatives"), + (UniCase("cheezeburgers"), "cheeseburgers"), + (UniCase("sketchs"), "sketches"), + (UniCase("redundnacy"), "redundancy"), + (UniCase("millitary"), "military"), + (UniCase("repetitivo"), "repetition"), + (UniCase("explosie"), "explosive"), + (UniCase("masturbait"), "masturbate"), + (UniCase("declars"), "declares"), + (UniCase("proclamed"), "proclaimed"), + (UniCase("inquisitir"), "inquisitor"), + (UniCase("unabel"), "unable"), + (UniCase("percetange"), "percentages"), + (UniCase("rewatchibg"), "rewatching"), + (UniCase("sponsership"), "sponsorship"), + (UniCase("resistancies"), "resistances"), + (UniCase("permanantly"), "permanently"), + (UniCase("privatizied"), "privatized"), + (UniCase("charasmatic"), "charismatic"), + (UniCase("permanetly"), "permanently"), + (UniCase("breifly"), "briefly"), + (UniCase("accoridng"), "according"), + (UniCase("marbleds"), "marbles"), + (UniCase("tkaing"), "taking"), + (UniCase("emphatetic"), "empathetic"), + (UniCase("grapichs"), "graphics"), + (UniCase("frustrasted"), "frustrates"), + (UniCase("ailenated"), "alienated"), + (UniCase("adhearing"), "adhering"), + (UniCase("persvasive"), "persuasive"), + (UniCase("mathcups"), "matchups"), + (UniCase("cholrine"), "chlorine"), + (UniCase("manufactorer"), "manufacturer"), + (UniCase("lifespawn"), "lifespan"), + (UniCase("savour"), "savor"), + (UniCase("incomprehendible"), "incomprehensible"), + (UniCase("senerity"), "serenity"), + (UniCase("readmition"), "readmission"), + (UniCase("appreciato"), "appreciation"), + (UniCase("unimpresed"), "unimpressed"), + (UniCase("philosophise"), "philosophize"), + (UniCase("nutritivos"), "nutritious"), + (UniCase("corparate"), "corporate"), + (UniCase("resticted"), "restricted"), + (UniCase("verbatium"), "verbatim"), + (UniCase("caclium"), "calcium"), + (UniCase("mitigaiton"), "mitigation"), + (UniCase("proclami"), "proclaim"), + (UniCase("mesmerised"), "mesmerized"), + (UniCase("appereances"), "appearances"), + (UniCase("propesterous"), "preposterous"), + (UniCase("definitivos"), "definitions"), + (UniCase("montiors"), "monitors"), + (UniCase("margart"), "margaret"), + (UniCase("sceptically"), "skeptically"), + (UniCase("severeal"), "several"), + (UniCase("devels"), "delves"), + (UniCase("biologiskt"), "biologist"), + (UniCase("undesireble"), "undesirable"), + (UniCase("penalise"), "penalize"), + (UniCase("presumabley"), "presumably"), + (UniCase("recommenting"), "recommending"), + (UniCase("underneeth"), "underneath"), + (UniCase("unresponcive"), "unresponsive"), + (UniCase("defendas"), "defends"), + (UniCase("sentimenal"), "sentimental"), + (UniCase("apsirin"), "aspirin"), + (UniCase("relatabe"), "relatable"), + (UniCase("improbabe"), "improbable"), + (UniCase("availabale"), "available"), + (UniCase("projectives"), "projectiles"), + (UniCase("desensitise"), "desensitize"), + (UniCase("personhod"), "personhood"), + (UniCase("underraker"), "undertaker"), + (UniCase("windhsield"), "windshield"), + (UniCase("disgiused"), "disguised"), + (UniCase("intorverted"), "introverted"), + (UniCase("instatutionalized"), "institutionalized"), + (UniCase("asborbed"), "absorbed"), + (UniCase("distase"), "distaste"), + (UniCase("reveiwer"), "reviewer"), + (UniCase("warrany"), "warranty"), + (UniCase("distribucion"), "distribution"), + (UniCase("cuplrit"), "culprit"), + (UniCase("euphroic"), "euphoric"), + (UniCase("indicence"), "incidence"), + (UniCase("depersonalise"), "depersonalize"), + (UniCase("bourgeoius"), "bourgeois"), + (UniCase("consistes"), "consists"), + (UniCase("surrouded"), "surrounded"), + (UniCase("populative"), "populate"), + (UniCase("comander"), "commander"), + (UniCase("charsima"), "charisma"), + (UniCase("sensitivitiy"), "sensitivity"), + (UniCase("preferentes"), "preferences"), + (UniCase("collaberator"), "collaborate"), + (UniCase("disatissfied"), "dissatisfied"), + (UniCase("momentus"), "moments"), + (UniCase("courching"), "crouching"), + (UniCase("decideable"), "decidable"), + (UniCase("catholocisim"), "catholicism"), + (UniCase("promethese"), "prometheus"), + (UniCase("parastie"), "parasite"), + (UniCase("manevuer"), "maneuver"), + (UniCase("contestes"), "contests"), + (UniCase("fourties"), "forties"), + (UniCase("transcendant"), "transcendent"), + (UniCase("privilegien"), "privilege"), + (UniCase("historiens"), "histories"), + (UniCase("fucntionality"), "functionality"), + (UniCase("installatons"), "installations"), + (UniCase("regulaotrs"), "regulators"), + (UniCase("varibale"), "variable"), + (UniCase("mysogenistic"), "misogynistic"), + (UniCase("transportaion"), "transportation"), + (UniCase("winchestor"), "winchester"), + (UniCase("intercource"), "intercourse"), + (UniCase("extroardinary"), "extraordinary"), + (UniCase("downvotesd"), "downvoters"), + (UniCase("persumption"), "presumption"), + (UniCase("incarnato"), "incarnation"), + (UniCase("inaproppriate"), "inappropriate"), + (UniCase("configuratoin"), "configurations"), + (UniCase("politicus"), "politics"), + (UniCase("contreception"), "contraception"), + (UniCase("formuls"), "formulas"), + (UniCase("irreversebly"), "irreversible"), + (UniCase("symmetricaly"), "symmetrically"), + (UniCase("gauranteed"), "guaranteed"), + (UniCase("camoufalge"), "camouflage"), + (UniCase("billioniare"), "billionaire"), + (UniCase("catastraphic"), "catastrophic"), + (UniCase("collectivises"), "collectivizes"), + (UniCase("decleration"), "declaration"), + (UniCase("valentis"), "valentines"), + (UniCase("eratically"), "erratically"), + (UniCase("unicornis"), "unicorns"), + (UniCase("televesion"), "television"), + (UniCase("progressiste"), "progresses"), + (UniCase("amateus"), "amateurs"), + (UniCase("aquaruim"), "aquarium"), + (UniCase("accustumed"), "accustomed"), + (UniCase("designstion"), "designation"), + (UniCase("potentailly"), "potentially"), + (UniCase("healtheast"), "healthiest"), + (UniCase("experamental"), "experimental"), + (UniCase("disbeleif"), "disbelief"), + (UniCase("figuritively"), "figuratively"), + (UniCase("captivitiy"), "captivity"), + (UniCase("interasted"), "interacted"), + (UniCase("overbaord"), "overboard"), + (UniCase("prescriptons"), "prescriptions"), + (UniCase("unrealible"), "unreliable"), + (UniCase("teleportating"), "teleportation"), + (UniCase("preformances"), "performances"), + (UniCase("grpahite"), "graphite"), + (UniCase("resitsance"), "resistances"), + (UniCase("outsourcade"), "outsourced"), + (UniCase("psycholigically"), "psychologically"), + (UniCase("venezulea"), "venezuela"), + (UniCase("merchantos"), "merchants"), + (UniCase("outcalssed"), "outclassed"), + (UniCase("aestheticaly"), "aesthetically"), + (UniCase("administro"), "administer"), + (UniCase("circulatiing"), "circulating"), + (UniCase("populare"), "popular"), + (UniCase("artemius"), "artemis"), + (UniCase("beggins"), "begins"), + (UniCase("intercepto"), "interception"), + (UniCase("caucasin"), "caucasian"), + (UniCase("distinquished"), "distinguished"), + (UniCase("revelled"), "reveled"), + (UniCase("critiera"), "criteria"), + (UniCase("orientarla"), "oriental"), + (UniCase("socialistisk"), "socialists"), + (UniCase("compeltion"), "completion"), + (UniCase("duelling"), "dueling"), + (UniCase("euphorisch"), "euphoric"), + (UniCase("advertisting"), "advertising"), + (UniCase("deminstrations"), "demonstrations"), + (UniCase("emobdiment"), "embodiment"), + (UniCase("thna"), "than"), + (UniCase("durabiliy"), "durability"), + (UniCase("aqquaintance"), "acquaintance"), + (UniCase("donwloads"), "downloads"), + (UniCase("interactins"), "interacts"), + (UniCase("individuais"), "individuals"), + (UniCase("wheter"), "whether"), + (UniCase("neighbourly"), "neighborly"), + (UniCase("lackbuster"), "lackluster"), + (UniCase("canceltation"), "cancellation"), + (UniCase("destroyeer"), "destroyers"), + (UniCase("expereinces"), "experiences"), + (UniCase("hypotheiss"), "hypotheses"), + (UniCase("discriminatin"), "discrimination"), + (UniCase("scientests"), "scientists"), + (UniCase("verious"), "various"), + (UniCase("indoneisan"), "indonesian"), + (UniCase("arhtritis"), "arthritis"), + (UniCase("scholalry"), "scholarly"), + (UniCase("diserable"), "desirable"), + (UniCase("mentaly"), "mentally"), + (UniCase("bulletproff"), "bulletproof"), + (UniCase("patriotes"), "patriots"), + (UniCase("complict"), "complicit"), + (UniCase("archtypes"), "archetypes"), + (UniCase("familliar"), "familiar"), + (UniCase("enchantmens"), "enchantments"), + (UniCase("gurantees"), "guarantees"), + (UniCase("dumspter"), "dumpster"), + (UniCase("enlightend"), "enlightened"), + (UniCase("manslaugter"), "manslaughter"), + (UniCase("spectrolab"), "spectral"), + (UniCase("regresos"), "regress"), + (UniCase("notorios"), "notorious"), + (UniCase("suppresion"), "suppression"), + (UniCase("conecntration"), "concentrations"), + (UniCase("cockroackes"), "cockroaches"), + (UniCase("simultaniously"), "simultaneously"), + (UniCase("destros"), "destroys"), + (UniCase("deficienct"), "deficient"), + (UniCase("unoffocial"), "unofficial"), + (UniCase("jewelrey"), "jewelry"), + (UniCase("ploughed"), "plowed"), + (UniCase("defendent"), "defendant"), + (UniCase("stuggling"), "struggling"), + (UniCase("extrapulate"), "extrapolate"), + (UniCase("egytpian"), "egyptian"), + (UniCase("entitity"), "entity"), + (UniCase("disicpline"), "discipline"), + (UniCase("hitboxers"), "hitboxes"), + (UniCase("jerusalm"), "jerusalem"), + (UniCase("demonstraits"), "demonstrates"), + (UniCase("specualte"), "speculate"), + (UniCase("alrorythm"), "algorithm"), + (UniCase("coutneract"), "counteract"), + (UniCase("penisse"), "penises"), + (UniCase("yersa"), "years"), + (UniCase("yosemitie"), "yosemite"), + (UniCase("encyclopeida"), "encyclopedia"), + (UniCase("inturrupting"), "interrupting"), + (UniCase("protocl"), "protocol"), + (UniCase("supposdely"), "supposedly"), + (UniCase("depection"), "deception"), + (UniCase("catterpilar"), "caterpillar"), + (UniCase("creationnism"), "creationism"), + (UniCase("sorrounding"), "surrounding"), + (UniCase("jaguards"), "jaguars"), + (UniCase("oragsms"), "orgasms"), + (UniCase("anorexica"), "anorexia"), + (UniCase("udnerpowered"), "underpowered"), + (UniCase("criticises"), "criticizes"), + (UniCase("portayed"), "portrayed"), + (UniCase("scavanged"), "scavenged"), + (UniCase("aritmethic"), "arithmetic"), + (UniCase("concusions"), "concussion"), + (UniCase("disclsoure"), "disclosure"), + (UniCase("armageedon"), "armageddon"), + (UniCase("repsectful"), "respectful"), + (UniCase("invariabil"), "invariably"), + (UniCase("algorithmes"), "algorithms"), + (UniCase("aboriganal"), "aboriginal"), + (UniCase("morbidy"), "morbidly"), + (UniCase("appearane"), "appearances"), + (UniCase("yoghurts"), "yogurts"), + (UniCase("desperating"), "desperation"), + (UniCase("intrepreter"), "interpreter"), + (UniCase("acquaintinces"), "acquaintances"), + (UniCase("critereon"), "criterion"), + (UniCase("cannabolism"), "cannibalism"), + (UniCase("magnitue"), "magnitude"), + (UniCase("transparancy"), "transparency"), + (UniCase("lifestye"), "lifestyle"), + (UniCase("suddnely"), "suddenly"), + (UniCase("confortable"), "comfortable"), + (UniCase("misrepresentated"), "misrepresented"), + (UniCase("monopolise"), "monopolize"), + (UniCase("entreprenaur"), "entrepreneur"), + (UniCase("prohibt"), "prohibit"), + (UniCase("indisputible"), "indisputable"), + (UniCase("outfiled"), "outfield"), + (UniCase("vigour"), "vigor"), + (UniCase("soverign"), "sovereign"), + (UniCase("udnerdog"), "underdog"), + (UniCase("procastrination"), "procrastination"), + (UniCase("overwritted"), "overwrite"), + (UniCase("competitior"), "competitor"), + (UniCase("indefenite"), "indefinite"), + (UniCase("shortend"), "shortened"), + (UniCase("aritfact"), "artifact"), + (UniCase("quarrelling"), "quarreling"), + (UniCase("compenstate"), "compensate"), + (UniCase("livilehood"), "livelihood"), + (UniCase("immaturety"), "immaturity"), + (UniCase("marginalising"), "marginalizing"), + (UniCase("valkyire"), "valkyrie"), + (UniCase("incompatability"), "incompatibility"), + (UniCase("irreplacable"), "irreplaceable"), + (UniCase("plagiarius"), "plagiarism"), + (UniCase("spanisch"), "spanish"), + (UniCase("breathtakng"), "breathtaking"), + (UniCase("analisys"), "analysis"), + (UniCase("dashboad"), "dashboard"), + (UniCase("straighted"), "straightened"), + (UniCase("psychiatic"), "psychiatric"), + (UniCase("vocalised"), "vocalized"), + (UniCase("photograhpy"), "photography"), + (UniCase("agre"), "agree"), + (UniCase("contexta"), "contextual"), + (UniCase("concensus"), "consensus"), + (UniCase("uninteristing"), "uninteresting"), + (UniCase("repostas"), "reposts"), + (UniCase("passionatelly"), "passionately"), + (UniCase("exprimental"), "experimental"), + (UniCase("libertatian"), "libertarian"), + (UniCase("sceptics"), "skeptics"), + (UniCase("lannasters"), "lannisters"), + (UniCase("spaltoon"), "splatoon"), + (UniCase("completenes"), "completes"), + (UniCase("kinteic"), "kinetic"), + (UniCase("unbeateble"), "unbeatable"), + (UniCase("coulored"), "coloured"), + (UniCase("lietuenant"), "lieutenant"), + (UniCase("transcendance"), "transcendence"), + (UniCase("flecther"), "fletcher"), + (UniCase("honeymooon"), "honeymoon"), + (UniCase("abstenince"), "abstinence"), + (UniCase("proficieny"), "proficiency"), + (UniCase("disgrunted"), "disgruntled"), + (UniCase("cassete"), "cassette"), + (UniCase("apparentely"), "apparently"), + (UniCase("britsol"), "bristol"), + (UniCase("chrenobyl"), "chernobyl"), + (UniCase("minimals"), "minimalist"), + (UniCase("northwestener"), "northwestern"), + (UniCase("grwo"), "grow"), + (UniCase("capitilazation"), "capitalization"), + (UniCase("nationales"), "nationals"), + (UniCase("penetraion"), "penetration"), + (UniCase("calbire"), "calibre"), + (UniCase("infestato"), "infestation"), + (UniCase("contricting"), "contracting"), + (UniCase("serentiy"), "serenity"), + (UniCase("michina"), "michigan"), + (UniCase("conciveably"), "conceivably"), + (UniCase("compromisng"), "compromising"), + (UniCase("repsonding"), "responding"), + (UniCase("realsitic"), "realistic"), + (UniCase("fatalitites"), "fatalities"), + (UniCase("sucessfully"), "successfully"), + (UniCase("unconfortability"), "discomfort"), + (UniCase("embarassign"), "embarassing"), + (UniCase("moralised"), "moralized"), + (UniCase("homoeopaths"), "homeopaths"), + (UniCase("ghettoises"), "ghettoizes"), + (UniCase("theorised"), "theorized"), + (UniCase("imaginitave"), "imaginative"), + (UniCase("satelites"), "satellites"), + (UniCase("disqustingly"), "disgustingly"), + (UniCase("admittidly"), "admittedly"), + (UniCase("figurativeley"), "figuratively"), + (UniCase("figurativley"), "figuratively"), + (UniCase("absorbsion"), "absorption"), + (UniCase("skeptisicm"), "skepticism"), + (UniCase("deteoriated"), "deteriorated"), + (UniCase("lifestlyes"), "lifestyles"), + (UniCase("narcississm"), "narcissism"), + (UniCase("continuati"), "continuity"), + (UniCase("contredict"), "contradict"), + (UniCase("catagories"), "categories"), + (UniCase("repentable"), "repeatable"), + (UniCase("derogotory"), "derogatory"), + (UniCase("characterazation"), "characterization"), + (UniCase("pscyhiatric"), "psychiatric"), + (UniCase("restord"), "restored"), + (UniCase("crossfie"), "crossfire"), + (UniCase("volleyboll"), "volleyball"), + (UniCase("insentitive"), "insensitive"), + (UniCase("noticabe"), "noticable"), + (UniCase("organizaiton"), "organization"), + (UniCase("presitge"), "prestige"), + (UniCase("introdued"), "introduced"), + (UniCase("environmently"), "environmental"), + (UniCase("thermistat"), "thermostat"), + (UniCase("fossilisation"), "fossilization"), + (UniCase("explainig"), "explaining"), + (UniCase("voluntairly"), "voluntarily"), + (UniCase("blackjak"), "blackjack"), + (UniCase("moustaches"), "mustaches"), + (UniCase("censorhsip"), "censorship"), + (UniCase("continetal"), "continental"), + (UniCase("literarely"), "literary"), + (UniCase("stationairy"), "stationary"), + (UniCase("emmited"), "emitted"), + (UniCase("cemetarey"), "cemetery"), + (UniCase("exhausto"), "exhaustion"), + (UniCase("religeously"), "religiously"), + (UniCase("devlove"), "devolve"), + (UniCase("lituhania"), "lithuania"), + (UniCase("leathal"), "lethal"), + (UniCase("belive"), "believe"), + (UniCase("libelled"), "libeled"), + (UniCase("achievemts"), "achieves"), + (UniCase("cailbre"), "calibre"), + (UniCase("ellipitcal"), "elliptical"), + (UniCase("origniated"), "originated"), + (UniCase("defendernos"), "defenders"), + (UniCase("aqcuaintances"), "acquaintances"), + (UniCase("interviewd"), "interviewed"), + (UniCase("prosicution"), "prosecution"), + (UniCase("catalsyt"), "catalyst"), + (UniCase("compuslion"), "compulsion"), + (UniCase("unsintalled"), "uninstalled"), + (UniCase("sometihn"), "somethin"), + (UniCase("marginaly"), "marginally"), + (UniCase("shawhsank"), "shawshank"), + (UniCase("handboook"), "handbook"), + (UniCase("lightneing"), "lightening"), + (UniCase("spirtied"), "spirited"), + (UniCase("disrespekt"), "disrespect"), + (UniCase("manupilating"), "manipulating"), + (UniCase("regualrs"), "regulars"), + (UniCase("acticating"), "activating"), + (UniCase("apperciate"), "appreciate"), + (UniCase("prodcuts"), "products"), + (UniCase("merchanise"), "merchandise"), + (UniCase("ultrason"), "ultrasound"), + (UniCase("claymoe"), "claymore"), + (UniCase("templares"), "templars"), + (UniCase("soldies"), "soldiers"), + (UniCase("commercent"), "commence"), + (UniCase("certainlyt"), "certainty"), + (UniCase("switchs"), "switches"), + (UniCase("rumours"), "rumors"), + (UniCase("compeeting"), "completing"), + (UniCase("mutiliated"), "mutilated"), + (UniCase("mistakinly"), "mistakenly"), + (UniCase("repeition"), "repetition"), + (UniCase("hypocritial"), "hypocritical"), + (UniCase("technnology"), "technology"), + (UniCase("disagres"), "disagrees"), + (UniCase("instantaneus"), "instantaneous"), + (UniCase("congraturations"), "congratulations"), + (UniCase("speculatie"), "speculative"), + (UniCase("catalyses"), "catalyzes"), + (UniCase("pillards"), "pillars"), + (UniCase("quantaty"), "quantity"), + (UniCase("ostrasized"), "ostracized"), + (UniCase("industrailized"), "industrialized"), + (UniCase("ingrediant"), "ingredient"), + (UniCase("contaction"), "contacting"), + (UniCase("inquisicion"), "inquisition"), + (UniCase("activiites"), "activist"), + (UniCase("assassinatin"), "assassination"), + (UniCase("hypertrohpy"), "hypertrophy"), + (UniCase("striekr"), "striker"), + (UniCase("buddishts"), "buddhists"), + (UniCase("exponental"), "exponential"), + (UniCase("thermodyanmics"), "thermodynamics"), + (UniCase("coutners"), "counters"), + (UniCase("titanuim"), "titanium"), + (UniCase("ballsitic"), "ballistic"), + (UniCase("demilitarised"), "demilitarized"), + (UniCase("predictious"), "predictions"), + (UniCase("extremised"), "extremes"), + (UniCase("perenially"), "perennially"), + (UniCase("sketpics"), "skeptics"), + (UniCase("unluckly"), "unlucky"), + (UniCase("modificaitons"), "modifications"), + (UniCase("poylmer"), "polymer"), + (UniCase("gorillla"), "gorilla"), + (UniCase("metropilitan"), "metropolitan"), + (UniCase("representaion"), "representation"), + (UniCase("immortallity"), "immortality"), + (UniCase("positioing"), "positioning"), + (UniCase("devotin"), "devotion"), + (UniCase("narctoics"), "narcotics"), + (UniCase("difficuly"), "difficulty"), + (UniCase("amortisable"), "amortizable"), + (UniCase("mysteris"), "mysteries"), + (UniCase("reigonal"), "regional"), + (UniCase("underminding"), "undermining"), + (UniCase("indefininte"), "indefinite"), + (UniCase("nostlagic"), "nostalgic"), + (UniCase("galvinized"), "galvanized"), + (UniCase("chirstians"), "christians"), + (UniCase("infiltraron"), "infiltrator"), + (UniCase("unavailible"), "unavailable"), + (UniCase("demonise"), "demonize"), + (UniCase("industiralized"), "industrialized"), + (UniCase("trustwhorty"), "trustworthy"), + (UniCase("snwoden"), "snowden"), + (UniCase("chlidrens"), "childrens"), + (UniCase("benagls"), "bengals"), + (UniCase("notificacion"), "notification"), + (UniCase("swithces"), "switches"), + (UniCase("undergrund"), "underground"), + (UniCase("ironamn"), "ironman"), + (UniCase("continuato"), "continuation"), + (UniCase("disconnectme"), "disconnected"), + (UniCase("hypocracy"), "hypocrisy"), + (UniCase("experimet"), "experiments"), + (UniCase("replicae"), "replicated"), + (UniCase("powerhsell"), "powershell"), + (UniCase("isloate"), "isolate"), + (UniCase("acquaintences"), "acquaintances"), + (UniCase("centruy"), "century"), + (UniCase("seantor"), "senator"), + (UniCase("ceratine"), "creatine"), + (UniCase("interviwed"), "interviewed"), + (UniCase("contiunal"), "continual"), + (UniCase("identitites"), "identities"), + (UniCase("asterois"), "asteroids"), + (UniCase("vassalos"), "vassals"), + (UniCase("nationalsim"), "nationalism"), + (UniCase("clanand"), "clannad"), + (UniCase("infallibile"), "infallible"), + (UniCase("enterpreneurs"), "entrepreneurs"), + (UniCase("encoutners"), "encounters"), + (UniCase("anticipacion"), "anticipation"), + (UniCase("mucisians"), "musicians"), + (UniCase("wincheseter"), "winchester"), + (UniCase("combinaiton"), "combinations"), + (UniCase("mouldered"), "moldered"), + (UniCase("attractice"), "attractive"), + (UniCase("commandeur"), "commanders"), + (UniCase("explosvies"), "explosives"), + (UniCase("influenceing"), "influencing"), + (UniCase("intruments"), "instruments"), + (UniCase("irresponsbile"), "irresponsible"), + (UniCase("portriat"), "portrait"), + (UniCase("ketmaine"), "ketamine"), + (UniCase("multipy"), "multiply"), + (UniCase("tresuary"), "treasury"), + (UniCase("phsyique"), "physique"), + (UniCase("iresistably"), "irresistibly"), + (UniCase("transisitor"), "transistor"), + (UniCase("conciderable"), "considerable"), + (UniCase("sppeches"), "speeches"), + (UniCase("specialtys"), "specials"), + (UniCase("entiteld"), "entitled"), + (UniCase("organise"), "organize"), + (UniCase("hellucination"), "hallucination"), + (UniCase("microtranscation"), "microtransactions"), + (UniCase("admittadely"), "admittedly"), + (UniCase("pshycologically"), "psychologically"), + (UniCase("donwloadable"), "downloadable"), + (UniCase("familiarise"), "familiarize"), + (UniCase("unfomfortable"), "uncomfortable"), + (UniCase("disturbd"), "disturbed"), + (UniCase("guantanoma"), "guantanamo"), + (UniCase("admittetly"), "admittedly"), + (UniCase("unisntalled"), "uninstalled"), + (UniCase("blackade"), "blacked"), + (UniCase("providince"), "providence"), + (UniCase("stimulaton"), "stimulation"), + (UniCase("identifieras"), "identifies"), + (UniCase("libertarias"), "libertarians"), + (UniCase("garrions"), "garrison"), + (UniCase("manauls"), "manuals"), + (UniCase("somethijng"), "somethin"), + (UniCase("emminently"), "eminently"), + (UniCase("spiritd"), "spirited"), + (UniCase("deliberante"), "deliberate"), + (UniCase("apologistes"), "apologists"), + (UniCase("dinosaures"), "dinosaurs"), + (UniCase("apprectice"), "apprentice"), + (UniCase("plagiarizm"), "plagiarism"), + (UniCase("plaguarism"), "plagiarism"), + (UniCase("considerstions"), "considerations"), + (UniCase("agonsticism"), "agnosticism"), + (UniCase("refedendum"), "referendum"), + (UniCase("mechanises"), "mechanizes"), + (UniCase("congratualte"), "congratulate"), + (UniCase("organistaion"), "organisation"), + (UniCase("reminent"), "remnant"), + (UniCase("dekstop"), "desktop"), + (UniCase("tailban"), "taliban"), + (UniCase("notablly"), "notably"), + (UniCase("pakistanti"), "pakistani"), + (UniCase("defaltion"), "deflation"), + (UniCase("depostied"), "deposited"), + (UniCase("desriable"), "desirable"), + (UniCase("decifits"), "deficits"), + (UniCase("taligate"), "tailgate"), + (UniCase("hybirds"), "hybrids"), + (UniCase("attribuito"), "attribution"), + (UniCase("phonecian"), "phoenecian"), + (UniCase("grizzlay"), "grizzly"), + (UniCase("hetreosexual"), "heterosexual"), + (UniCase("insignificat"), "insignificant"), + (UniCase("labirynth"), "labyrinth"), + (UniCase("valentins"), "valentines"), + (UniCase("miniaturises"), "miniaturizes"), + (UniCase("juristiction"), "jurisdiction"), + (UniCase("bayonent"), "bayonet"), + (UniCase("vandalising"), "vandalizing"), + (UniCase("normalos"), "normals"), + (UniCase("labelled"), "labeled"), + (UniCase("extreem"), "extreme"), + (UniCase("felxibility"), "flexibility"), + (UniCase("subscripton"), "subscription"), + (UniCase("invoekr"), "invoker"), + (UniCase("practitioneer"), "practitioners"), + (UniCase("gaurdian"), "guardian"), + (UniCase("naturels"), "natures"), + (UniCase("demoralised"), "demoralized"), + (UniCase("govornment"), "government"), + (UniCase("avalable"), "available"), + (UniCase("ethicaly"), "ethically"), + (UniCase("electriciy"), "electricity"), + (UniCase("temporaily"), "temporarily"), + (UniCase("wallpappers"), "wallpapers"), + (UniCase("cariciture"), "caricature"), + (UniCase("mutliated"), "mutilated"), + (UniCase("sunglesses"), "sunglasses"), + (UniCase("infrastrucure"), "infrastructure"), + (UniCase("inconveniant"), "inconvenient"), + (UniCase("accessoirs"), "accessories"), + (UniCase("definining"), "defining"), + (UniCase("normallized"), "normalized"), + (UniCase("consistenty"), "consistently"), + (UniCase("stalkes"), "stalkers"), + (UniCase("particularlly"), "particularly"), + (UniCase("transofrming"), "transforming"), + (UniCase("subsidising"), "subsidizing"), + (UniCase("spammeur"), "spammer"), + (UniCase("conteiners"), "contenders"), + (UniCase("corsari"), "corsair"), + (UniCase("initailly"), "initially"), + (UniCase("disaapointed"), "dissapointed"), + (UniCase("avergaed"), "averaged"), + (UniCase("signifantly"), "significantly"), + (UniCase("mercurey"), "mercury"), + (UniCase("downtokers"), "downvoters"), + (UniCase("contignent"), "contingent"), + (UniCase("superisor"), "superiors"), + (UniCase("vindictave"), "vindictive"), + (UniCase("oposition"), "opposition"), + (UniCase("sanctionne"), "sanctioned"), + (UniCase("priestood"), "priesthood"), + (UniCase("traumatisch"), "traumatic"), + (UniCase("automibile"), "automobile"), + (UniCase("legimitately"), "legitimately"), + (UniCase("collasped"), "collapsed"), + (UniCase("unsoliticed"), "unsolicited"), + (UniCase("neighbourgs"), "neighbours"), + (UniCase("porcelina"), "porcelain"), + (UniCase("inquier"), "inquire"), + (UniCase("competant"), "competent"), + (UniCase("progresison"), "progressions"), + (UniCase("elementray"), "elementary"), + (UniCase("enviorment"), "environment"), + (UniCase("templas"), "templars"), + (UniCase("vegitable"), "vegetable"), + (UniCase("protectie"), "protective"), + (UniCase("presidancy"), "presidency"), + (UniCase("realisation"), "realization"), + (UniCase("netocde"), "netcode"), + (UniCase("affort"), "afford"), + (UniCase("diagnoal"), "diagonal"), + (UniCase("vailidty"), "validity"), + (UniCase("buearucratic"), "bureaucratic"), + (UniCase("disctinction"), "distinction"), + (UniCase("venezuella"), "venezuela"), + (UniCase("mediciney"), "mediciny"), + (UniCase("shenangians"), "shenanigans"), + (UniCase("continualy"), "continually"), + (UniCase("misforture"), "misfortune"), + (UniCase("periodes"), "periods"), + (UniCase("impaitent"), "impatient"), + (UniCase("skepticons"), "skeptics"), + (UniCase("dialling"), "dialing"), + (UniCase("terminaison"), "termination"), + (UniCase("cheifs"), "chiefs"), + (UniCase("differnetly"), "differently"), + (UniCase("dekstops"), "desktops"), + (UniCase("prostituees"), "prostitutes"), + (UniCase("standars"), "standards"), + (UniCase("acclimitization"), "acclimatization"), + (UniCase("hypocriscy"), "hypocrisy"), + (UniCase("ionises"), "ionizes"), + (UniCase("autonimous"), "autonomous"), + (UniCase("tesitcle"), "testicle"), + (UniCase("perfromance"), "performance"), + (UniCase("distincitons"), "distinctions"), + (UniCase("worshippping"), "worshipping"), + (UniCase("fundamnetalists"), "fundamentalists"), + (UniCase("chemicaly"), "chemically"), + (UniCase("strikely"), "strikingly"), + (UniCase("aqcuaintance"), "acquaintance"), + (UniCase("emphazised"), "emphasized"), + (UniCase("sympathising"), "sympathizing"), + (UniCase("nullifiy"), "nullify"), + (UniCase("nationalistisch"), "nationalists"), + (UniCase("contradtion"), "contraction"), + (UniCase("prostiture"), "prostitute"), + (UniCase("rollercoaters"), "rollercoaster"), + (UniCase("inkompetence"), "incompetence"), + (UniCase("barlkey"), "barkley"), + (UniCase("multipling"), "multiplying"), + (UniCase("mechanismus"), "mechanisms"), + (UniCase("carbohyrdate"), "carbohydrates"), + (UniCase("vyer"), "very"), + (UniCase("helpfull"), "helpful"), + (UniCase("prepair"), "prepare"), + (UniCase("ideosyncratic"), "idiosyncratic"), + (UniCase("tranlastion"), "translations"), + (UniCase("ejaculatie"), "ejaculate"), + (UniCase("signifigant"), "significant"), + (UniCase("sceptres"), "scepters"), + (UniCase("homewrold"), "homeworld"), + (UniCase("concsiously"), "consciously"), + (UniCase("commericially"), "commercially"), + (UniCase("idiosynchracies"), "idiosyncrasies"), + (UniCase("sovereignity"), "sovereignty"), + (UniCase("progressus"), "progresses"), + (UniCase("baulk"), "balk"), + (UniCase("amphedamines"), "amphetamines"), + (UniCase("disclamer"), "disclaimer"), + (UniCase("democratise"), "democratize"), + (UniCase("legitimises"), "legitimizes"), + (UniCase("apshalt"), "asphalt"), + (UniCase("palidans"), "paladins"), + (UniCase("penatlies"), "penalties"), + (UniCase("butterfy"), "butterfly"), + (UniCase("verificaiton"), "verification"), + (UniCase("forresst"), "forrest"), + (UniCase("nationalite"), "nationalist"), + (UniCase("overwhelemed"), "overwhelmed"), + (UniCase("approstraphe"), "apostrophe"), + (UniCase("migrans"), "migrants"), + (UniCase("lithuanina"), "lithuania"), + (UniCase("paychopathic"), "psychopathic"), + (UniCase("condenm"), "condemn"), + (UniCase("equippment"), "equipment"), + (UniCase("entropay"), "entropy"), + (UniCase("similiarites"), "similarities"), + (UniCase("inevetible"), "inevitable"), + (UniCase("gratificaiton"), "gratification"), + (UniCase("reasonablely"), "reasonably"), + (UniCase("predetermiend"), "predetermined"), + (UniCase("sence"), "sense"), + (UniCase("proponentes"), "proponents"), + (UniCase("neurologial"), "neurological"), + (UniCase("commercialising"), "commercializing"), + (UniCase("onlsaught"), "onslaught"), + (UniCase("comision"), "commission"), + (UniCase("irrevelant"), "irrelevant"), + (UniCase("confersation"), "conservation"), + (UniCase("contradictiong"), "contradicting"), + (UniCase("sacrefices"), "sacrifices"), + (UniCase("fundamentalisten"), "fundamentalists"), + (UniCase("seahawkers"), "seahawks"), + (UniCase("calicum"), "calcium"), + (UniCase("valkyre"), "valkyrie"), + (UniCase("supplemets"), "supplements"), + (UniCase("intestions"), "intestines"), + (UniCase("supression"), "suppression"), + (UniCase("overweigth"), "overweight"), + (UniCase("aestheticlly"), "aesthetically"), + (UniCase("linguistis"), "linguistics"), + (UniCase("adolescance"), "adolescence"), + (UniCase("saturacion"), "saturation"), + (UniCase("muscicians"), "musicians"), + (UniCase("assassinas"), "assassins"), + (UniCase("ukranian"), "ukrainian"), + (UniCase("availabiliy"), "availability"), + (UniCase("wisnton"), "winston"), + (UniCase("bceuase"), "becuase"), + (UniCase("abortificant"), "abortifacient"), + (UniCase("ultimatley"), "ultimately"), + (UniCase("mircophone"), "microphone"), + (UniCase("fabrikation"), "fabrication"), + (UniCase("equilbirium"), "equilibrium"), + (UniCase("kilometres"), "kilometers"), + (UniCase("protagnoist"), "protagonist"), + (UniCase("defianetly"), "definately"), + (UniCase("vurnerability"), "vulnerability"), + (UniCase("bonsues"), "bonuses"), + (UniCase("degarde"), "degrade"), + (UniCase("offensivelly"), "offensively"), + (UniCase("margines"), "margins"), + (UniCase("pahtfinder"), "pathfinder"), + (UniCase("specifices"), "specifics"), + (UniCase("backfiled"), "backfield"), + (UniCase("schizophreniiic"), "schizophrenic"), + (UniCase("restaurent"), "restaurant"), + (UniCase("applicible"), "applicable"), + (UniCase("stirrig"), "stirring"), + (UniCase("synchornously"), "synchronously"), + (UniCase("prosthethic"), "prosthetic"), + (UniCase("inconsistenties"), "inconsistencies"), + (UniCase("freedomes"), "freedoms"), + (UniCase("currence"), "currencies"), + (UniCase("ininteresting"), "uninteresting"), + (UniCase("futurestic"), "futuristic"), + (UniCase("barbaris"), "barbarians"), + (UniCase("aresnal"), "arsenal"), + (UniCase("condemantion"), "condemnation"), + (UniCase("complainte"), "complained"), + (UniCase("typicaly"), "typically"), + (UniCase("greenore"), "greener"), + (UniCase("consequenes"), "consequence"), + (UniCase("acheive"), "achieve"), + (UniCase("medicacion"), "medication"), + (UniCase("activateing"), "activating"), + (UniCase("simplificating"), "simplification"), + (UniCase("councellor"), "councillor"), + (UniCase("wereabouts"), "whereabouts"), + (UniCase("ligthing"), "lighting"), + (UniCase("investigatiors"), "investigations"), + (UniCase("tragicaly"), "tragically"), + (UniCase("collapseing"), "collapsing"), + (UniCase("paraprhased"), "paraphrase"), + (UniCase("midfeilders"), "midfielders"), + (UniCase("curiser"), "cruiser"), + (UniCase("aeroplane"), "airplane"), + (UniCase("eminated"), "emanated"), + (UniCase("regularise"), "regularize"), + (UniCase("recognises"), "recognizes"), + (UniCase("fantasise"), "fantasize"), + (UniCase("deifnately"), "definately"), + (UniCase("contensious"), "contentious"), + (UniCase("observerats"), "observers"), + (UniCase("beaslty"), "beastly"), + (UniCase("medicaly"), "medically"), + (UniCase("amphetimine"), "amphetamine"), + (UniCase("killins"), "killings"), + (UniCase("estoeric"), "esoteric"), + (UniCase("bulletbroof"), "bulletproof"), + (UniCase("recalim"), "reclaim"), + (UniCase("posion"), "poison"), + (UniCase("confideny"), "confidently"), + (UniCase("vastecomy"), "vasectomy"), + (UniCase("esoterisch"), "esoteric"), + (UniCase("reteriver"), "retriever"), + (UniCase("proprotionally"), "proportionally"), + (UniCase("cubilce"), "cubicle"), + (UniCase("chromasomes"), "chromosomes"), + (UniCase("steriotypical"), "stereotypical"), + (UniCase("conclution"), "conclusion"), + (UniCase("weridos"), "weirdos"), + (UniCase("delevopment"), "development"), + (UniCase("separatisme"), "separates"), + (UniCase("extrememly"), "extremely"), + (UniCase("travere"), "traverse"), + (UniCase("coincidnce"), "coincide"), + (UniCase("dislikse"), "dislikes"), + (UniCase("perpetualy"), "perpetually"), + (UniCase("disciplen"), "disciplines"), + (UniCase("shilouette"), "silhouette"), + (UniCase("precedeed"), "preceded"), + (UniCase("rationel"), "rationale"), + (UniCase("vaccins"), "vaccines"), + (UniCase("invaraibly"), "invariably"), + (UniCase("outsidr"), "outsider"), + (UniCase("playthroguh"), "playthroughs"), + (UniCase("mainstrem"), "mainstream"), + (UniCase("applicaple"), "applicable"), + (UniCase("obisdian"), "obsidian"), + (UniCase("symphatizers"), "sympathizers"), + (UniCase("recusrion"), "recursion"), + (UniCase("efficiancy"), "efficiency"), + (UniCase("democrazies"), "democracies"), + (UniCase("shopkeeepers"), "shopkeepers"), + (UniCase("sucesion"), "succession"), + (UniCase("libelling"), "libeling"), + (UniCase("cruasder"), "crusader"), + (UniCase("switchign"), "switching"), + (UniCase("screenshoots"), "screenshot"), + (UniCase("resuces"), "rescues"), + (UniCase("programmars"), "programmers"), + (UniCase("confeses"), "confess"), + (UniCase("committs"), "commits"), + (UniCase("intrisincally"), "intrinsically"), + (UniCase("judgementle"), "judgemental"), + (UniCase("recomending"), "recommending"), + (UniCase("preqeuls"), "prequels"), + (UniCase("poluted"), "polluted"), + (UniCase("determinaton"), "determination"), + (UniCase("reposity"), "repository"), + (UniCase("agian"), "again"), + (UniCase("raptores"), "raptors"), + (UniCase("onborad"), "onboard"), + (UniCase("misrepresenation"), "misrepresentation"), + (UniCase("responsable"), "responsible"), + (UniCase("clitorios"), "clitoris"), + (UniCase("descriptoin"), "descriptions"), + (UniCase("regurally"), "regularly"), + (UniCase("organismes"), "organisms"), + (UniCase("earthqukes"), "earthquakes"), + (UniCase("braista"), "barista"), + (UniCase("metiphorical"), "metaphorical"), + (UniCase("underbog"), "undergo"), + (UniCase("positionly"), "positional"), + (UniCase("milligrammes"), "milligrams"), + (UniCase("scracthing"), "scratching"), + (UniCase("analysed"), "analyzed"), + (UniCase("volunteed"), "volunteered"), + (UniCase("supplaments"), "supplements"), + (UniCase("charactersitic"), "characteristics"), + (UniCase("depedency"), "dependency"), + (UniCase("structual"), "structural"), + (UniCase("ukarine"), "ukraine"), + (UniCase("palyoffs"), "playoffs"), + (UniCase("generalises"), "generalizes"), + (UniCase("lineupes"), "lineups"), + (UniCase("extraordinaryly"), "extraordinarily"), + (UniCase("anniversery"), "anniversary"), + (UniCase("triumpth"), "triumph"), + (UniCase("charakters"), "characters"), + (UniCase("unheathly"), "unhealthy"), + (UniCase("appetiser"), "appetizer"), + (UniCase("adequatley"), "adequately"), + (UniCase("unrepsonsive"), "unresponsive"), + (UniCase("montanna"), "montana"), + (UniCase("conenctration"), "concentrations"), + (UniCase("quantite"), "quantities"), + (UniCase("carnege"), "carnage"), + (UniCase("illess"), "illness"), + (UniCase("permanant"), "permanent"), + (UniCase("gladiatr"), "gladiator"), + (UniCase("participatns"), "participant"), + (UniCase("possesse"), "possessive"), + (UniCase("anthropolgy"), "anthropology"), + (UniCase("nitpciking"), "nitpicking"), + (UniCase("multicultralism"), "multiculturalism"), + (UniCase("soveriegnty"), "sovereignty"), + (UniCase("invididual"), "individual"), + (UniCase("maneveur"), "maneuver"), + (UniCase("anecodtes"), "anecdotes"), + (UniCase("bloster"), "bolster"), + (UniCase("understandbly"), "understandably"), + (UniCase("sorceror"), "sorcerer"), + (UniCase("interstellor"), "interstellar"), + (UniCase("skecthes"), "sketches"), + (UniCase("schziophrenia"), "schizophrenia"), + (UniCase("charimastic"), "charismatic"), + (UniCase("deputises"), "deputizes"), + (UniCase("cinematagraphy"), "cinematography"), + (UniCase("expensve"), "expense"), + (UniCase("exsitance"), "existance"), + (UniCase("migitation"), "mitigation"), + (UniCase("calssification"), "classification"), + (UniCase("conversatin"), "conversations"), + (UniCase("louisiania"), "louisiana"), + (UniCase("cooperacion"), "cooperation"), + (UniCase("salaires"), "salaries"), + (UniCase("downvotting"), "downvoting"), + (UniCase("recommed"), "recommend"), + (UniCase("bluebarries"), "blueberries"), + (UniCase("repalcements"), "replacements"), + (UniCase("expirementing"), "experimenting"), + (UniCase("barabric"), "barbaric"), + (UniCase("astrounat"), "astronaut"), + (UniCase("councellors"), "councillors"), + (UniCase("overpaied"), "overpaid"), + (UniCase("figuratevely"), "figuratively"), + (UniCase("demonstate"), "demonstrate"), + (UniCase("generaly"), "generally"), + (UniCase("desensitises"), "desensitizes"), + (UniCase("widesread"), "widespread"), + (UniCase("occulation"), "occupation"), + (UniCase("detmatologist"), "dermatologist"), + (UniCase("demonstrants"), "demonstrates"), + (UniCase("yeasr"), "years"), + (UniCase("censurship"), "censorship"), + (UniCase("embarrssing"), "embarassing"), + (UniCase("definaetly"), "definately"), + (UniCase("experiening"), "experiencing"), + (UniCase("governmanet"), "governmental"), + (UniCase("eptiome"), "epitome"), + (UniCase("moderatin"), "moderation"), + (UniCase("intruductory"), "introductory"), + (UniCase("globalise"), "globalize"), + (UniCase("inclince"), "incline"), + (UniCase("victimised"), "victimized"), + (UniCase("bejiing"), "beijing"), + (UniCase("outragoues"), "outrageous"), + (UniCase("noticabely"), "noticeably"), + (UniCase("archaelogists"), "archaeologists"), + (UniCase("civilizatin"), "civilizations"), + (UniCase("cyrptic"), "cryptic"), + (UniCase("placemet"), "placements"), + (UniCase("outsoure"), "outsourced"), + (UniCase("diagonstics"), "diagnostic"), + (UniCase("guantonamo"), "guantanamo"), + (UniCase("describtions"), "descriptions"), + (UniCase("blapshemy"), "blasphemy"), + (UniCase("hypotehtical"), "hypothetical"), + (UniCase("seperatist"), "separatist"), + (UniCase("forefit"), "forfeit"), + (UniCase("thopmson"), "thompson"), + (UniCase("neigbouring"), "neighbouring"), + (UniCase("pyschopath"), "psychopath"), + (UniCase("israelies"), "israelis"), + (UniCase("annhiliation"), "annihilation"), + (UniCase("fulttershy"), "fluttershy"), + (UniCase("descirbe"), "describe"), + (UniCase("illistrations"), "illustrations"), + (UniCase("commissionner"), "commissioner"), + (UniCase("arugably"), "arguably"), + (UniCase("alegience"), "allegiance"), + (UniCase("overblocking"), "overclocking"), + (UniCase("philedalphia"), "philadelphia"), + (UniCase("materialise"), "materialize"), + (UniCase("alcohalics"), "alcoholics"), + (UniCase("insufficent"), "insufficient"), + (UniCase("huntmsan"), "huntsman"), + (UniCase("ancedotally"), "anecdotally"), + (UniCase("puragtory"), "purgatory"), + (UniCase("helicotpers"), "helicopters"), + (UniCase("expiremented"), "experimented"), + (UniCase("assistans"), "assistants"), + (UniCase("libertarianismo"), "libertarians"), + (UniCase("funides"), "fundies"), + (UniCase("seperation"), "separation"), + (UniCase("universse"), "universes"), + (UniCase("euthanesia"), "euthanasia"), + (UniCase("alphabeast"), "alphabet"), + (UniCase("levle"), "level"), + (UniCase("someons"), "someones"), + (UniCase("journalistc"), "journalistic"), + (UniCase("babysite"), "babysitter"), + (UniCase("hundres"), "hundreds"), + (UniCase("scandianvia"), "scandinavian"), + (UniCase("insuniating"), "insinuating"), + (UniCase("nutrituous"), "nutritious"), + (UniCase("suggesst"), "suggests"), + (UniCase("initalisations"), "initialisations"), + (UniCase("commandmends"), "commandments"), + (UniCase("perpetuas"), "perpetuates"), + (UniCase("purposedly"), "purposely"), + (UniCase("unpoened"), "unopened"), + (UniCase("commuinications"), "communications"), + (UniCase("withdrawels"), "withdrawals"), + (UniCase("distirbance"), "disturbance"), + (UniCase("radaint"), "radiant"), + (UniCase("optimisitc"), "optimistic"), + (UniCase("lavendr"), "lavender"), + (UniCase("downvoteas"), "downvoters"), + (UniCase("vengance"), "vengeance"), + (UniCase("stakler"), "stalker"), + (UniCase("implimentations"), "implementations"), + (UniCase("corinthans"), "corinthians"), + (UniCase("simplifyed"), "simplified"), + (UniCase("motivationals"), "motivations"), + (UniCase("concequences"), "consequences"), + (UniCase("appetisers"), "appetizers"), + (UniCase("prometheous"), "prometheus"), + (UniCase("partialy"), "partially"), + (UniCase("labriynth"), "labyrinth"), + (UniCase("armistace"), "armistice"), + (UniCase("transfromation"), "transformation"), + (UniCase("completin"), "completion"), + (UniCase("disasterous"), "disastrous"), + (UniCase("realibility"), "reliability"), + (UniCase("hambergers"), "hamburgers"), + (UniCase("staidums"), "stadiums"), + (UniCase("casualries"), "casualties"), + (UniCase("etherael"), "ethereal"), + (UniCase("carnigie"), "carnegie"), + (UniCase("consultating"), "consultation"), + (UniCase("estabishes"), "establishes"), + (UniCase("inherint"), "inherit"), + (UniCase("nautils"), "nautilus"), + (UniCase("genatilia"), "genitalia"), + (UniCase("operacional"), "operational"), + (UniCase("homosexulaity"), "homosexuality"), + (UniCase("oversemplification"), "oversimplification"), + (UniCase("benevolant"), "benevolent"), + (UniCase("ignorat"), "ignorant"), + (UniCase("preimer"), "premier"), + (UniCase("ingriedents"), "ingredient"), + (UniCase("masturbatie"), "masturbated"), + (UniCase("curriculem"), "curriculum"), + (UniCase("dissapointd"), "dissapointed"), + (UniCase("manufacuter"), "manufacture"), + (UniCase("agressivley"), "agressive"), + (UniCase("thoughs"), "thoughts"), + (UniCase("emmediately"), "immediately"), + (UniCase("troublehsoot"), "troubleshoot"), + (UniCase("torpeados"), "torpedoes"), + (UniCase("nonsencial"), "nonsensical"), + (UniCase("nuerons"), "neurons"), + (UniCase("firghtening"), "frightening"), + (UniCase("virutal"), "virtual"), + (UniCase("millionaries"), "millionaires"), + (UniCase("misdeamenors"), "misdemeanor"), + (UniCase("friendlis"), "friendlies"), + (UniCase("pedalling"), "pedaling"), + (UniCase("colonisation"), "colonization"), + (UniCase("criminalise"), "criminalize"), + (UniCase("everyonehas"), "everyones"), + (UniCase("famoulsy"), "famously"), + (UniCase("friendle"), "friendlies"), + (UniCase("wesbite"), "website"), + (UniCase("completito"), "completion"), + (UniCase("redundency"), "redundancy"), + (UniCase("ariports"), "airports"), + (UniCase("enveloppe"), "envelope"), + (UniCase("executioness"), "executions"), + (UniCase("referiang"), "referring"), + (UniCase("apocaliptic"), "apocalyptic"), + (UniCase("diplomacia"), "diplomatic"), + (UniCase("interpratations"), "interpretations"), + (UniCase("dependenices"), "dependencies"), + (UniCase("synchronising"), "synchronizing"), + (UniCase("annoucnes"), "announces"), + (UniCase("redneckese"), "rednecks"), + (UniCase("indpendently"), "independently"), + (UniCase("abodmen"), "abdomen"), + (UniCase("repostus"), "reposts"), + (UniCase("contemporany"), "contemporary"), + (UniCase("malclom"), "malcolm"), + (UniCase("unravelling"), "unraveling"), + (UniCase("homosexaul"), "homosexual"), + (UniCase("mccarthey"), "mccarthy"), + (UniCase("schizophernia"), "schizophrenia"), + (UniCase("territorries"), "territories"), + (UniCase("strangeshit"), "strangest"), + (UniCase("underesitmate"), "underestimated"), + (UniCase("anaylze"), "analyze"), + (UniCase("insustainable"), "unsustainable"), + (UniCase("technicien"), "technician"), + (UniCase("sesnors"), "sensors"), + (UniCase("nucelus"), "nucleus"), + (UniCase("controvercial"), "controversial"), + (UniCase("develpoments"), "developments"), + (UniCase("intuitevly"), "intuitively"), + (UniCase("utilizating"), "utilization"), + (UniCase("themslves"), "themselves"), + (UniCase("shennaigans"), "shenanigans"), + (UniCase("imporves"), "improves"), + (UniCase("tenderised"), "tenderized"), + (UniCase("buearucrats"), "bureaucrats"), + (UniCase("performantes"), "performances"), + (UniCase("philisophers"), "philosophers"), + (UniCase("commandent"), "commandment"), + (UniCase("vocabularity"), "vocabulary"), + (UniCase("durabiltiy"), "durability"), + (UniCase("regulacion"), "regulation"), + (UniCase("armagedeon"), "armageddon"), + (UniCase("distinguising"), "distinguishing"), + (UniCase("admited"), "admitted"), + (UniCase("insonmia"), "insomnia"), + (UniCase("arguemet"), "arguement"), + (UniCase("specailize"), "specializes"), + (UniCase("delearships"), "dealerships"), + (UniCase("refroms"), "reforms"), + (UniCase("awknowledging"), "acknowledging"), + (UniCase("worhtless"), "worthless"), + (UniCase("benidect"), "benedict"), + (UniCase("buddhim"), "buddhism"), + (UniCase("sascatchewan"), "saskatchewan"), + (UniCase("stigmatising"), "stigmatizing"), + (UniCase("goverment"), "government"), + (UniCase("continant"), "continental"), + (UniCase("strenghen"), "strengthen"), + (UniCase("chasiers"), "cashiers"), + (UniCase("fullscreeen"), "fullscreen"), + (UniCase("nationalizm"), "nationalism"), + (UniCase("anaesthetised"), "anesthetized"), + (UniCase("involuntarely"), "involuntary"), + (UniCase("evovling"), "evolving"), + (UniCase("congitive"), "cognitive"), + (UniCase("slighty"), "slightly"), + (UniCase("convicto"), "conviction"), + (UniCase("composiiton"), "compositions"), + (UniCase("philosophia"), "philosophical"), + (UniCase("irreversibel"), "irreversible"), + (UniCase("construint"), "constraint"), + (UniCase("unintentionnal"), "unintentional"), + (UniCase("restraing"), "restraining"), + (UniCase("immersie"), "immerse"), + (UniCase("calulated"), "calculated"), + (UniCase("illigitemate"), "illegitimate"), + (UniCase("capitilized"), "capitalized"), + (UniCase("inadvertantly"), "inadvertently"), + (UniCase("antagonstic"), "antagonist"), + (UniCase("falshing"), "flashing"), + (UniCase("multiplicativo"), "multiplication"), + (UniCase("lunaticus"), "lunatics"), + (UniCase("republicanos"), "republicans"), + (UniCase("incompetant"), "incompetent"), + (UniCase("agonising"), "agonizing"), + (UniCase("slavage"), "salvage"), + (UniCase("sturctures"), "structures"), + (UniCase("manoeuvre"), "maneuver"), + (UniCase("inbetween"), "between"), + (UniCase("projecto"), "projection"), + (UniCase("handrwiting"), "handwriting"), + (UniCase("millionairre"), "millionaire"), + (UniCase("accompined"), "accompanied"), + (UniCase("staticts"), "statist"), + (UniCase("organisten"), "organise"), + (UniCase("clarifiy"), "clarify"), + (UniCase("eminate"), "emanate"), + (UniCase("hydregon"), "hydrogen"), + (UniCase("misinterpt"), "misinterpret"), + (UniCase("bradfrod"), "bradford"), + (UniCase("ridiculousy"), "ridiculously"), + (UniCase("evelation"), "elevation"), + (UniCase("embarras"), "embarrass"), + (UniCase("grapefriut"), "grapefruit"), + (UniCase("portrary"), "portray"), + (UniCase("bouyant"), "buoyant"), + (UniCase("deregualtion"), "deregulation"), + (UniCase("consciouslly"), "consciously"), + (UniCase("equalising"), "equalizing"), + (UniCase("hypotheticaly"), "hypothetically"), + (UniCase("persisit"), "persist"), + (UniCase("inocence"), "innocence"), + (UniCase("teliportation"), "teleportation"), + (UniCase("engeneer"), "engineer"), + (UniCase("smealting"), "smelting"), + (UniCase("wriet"), "write"), + (UniCase("vigliante"), "vigilante"), + (UniCase("navigatie"), "navigate"), + (UniCase("surrouding"), "surrounding"), + (UniCase("socilaists"), "socialists"), + (UniCase("continuning"), "continuing"), + (UniCase("contribuitor"), "contributor"), + (UniCase("diminuitive"), "diminutive"), + (UniCase("slefishness"), "selfishness"), + (UniCase("survivebility"), "survivability"), + (UniCase("concnetration"), "concentrations"), + (UniCase("acquantiance"), "acquaintances"), + (UniCase("hierachy"), "hierarchy"), + (UniCase("proccedings"), "proceedings"), + (UniCase("assmebled"), "assembled"), + (UniCase("concrets"), "concerts"), + (UniCase("catholicsm"), "catholicism"), + (UniCase("shampionship"), "championship"), + (UniCase("reconenct"), "reconnect"), + (UniCase("heathern"), "heathen"), + (UniCase("psychiatrics"), "psychiatrist"), + (UniCase("myraid"), "myriad"), + (UniCase("phyisology"), "physiology"), + (UniCase("sensationalised"), "sensationalized"), + (UniCase("automotion"), "automation"), + (UniCase("expolde"), "explode"), + (UniCase("realyl"), "really"), + (UniCase("unbrakeable"), "unbreakable"), + (UniCase("consumires"), "consumerism"), + (UniCase("restaraunteurs"), "restaurateurs"), + (UniCase("substituters"), "substitutes"), + (UniCase("acconplishment"), "accomplishment"), + (UniCase("responsibily"), "responsibility"), + (UniCase("consumirem"), "consumerism"), + (UniCase("prejudicies"), "prejudice"), + (UniCase("emmitting"), "emitting"), + (UniCase("deathamtch"), "deathmatch"), + (UniCase("symphoney"), "symphony"), + (UniCase("camouflauge"), "camouflage"), + (UniCase("gauntlettes"), "gauntlets"), + (UniCase("constituates"), "constitutes"), + (UniCase("appreciae"), "appreciates"), + (UniCase("longevitiy"), "longevity"), + (UniCase("literarry"), "literary"), + (UniCase("renegerate"), "regenerate"), + (UniCase("adminsitrators"), "administrators"), + (UniCase("hypertrophey"), "hypertrophy"), + (UniCase("massagens"), "massages"), + (UniCase("minoroties"), "minorities"), + (UniCase("participas"), "participants"), + (UniCase("collegue"), "colleague"), + (UniCase("foreseaable"), "foreseeable"), + (UniCase("possessers"), "possesses"), + (UniCase("maximixing"), "maximizing"), + (UniCase("attirbutes"), "attributes"), + (UniCase("guitares"), "guitars"), + (UniCase("logisticas"), "logistics"), + (UniCase("organered"), "orangered"), + (UniCase("dessigned"), "designed"), + (UniCase("undergratuate"), "undergraduate"), + (UniCase("atlantc"), "atlantic"), + (UniCase("bloorborne"), "bloodborne"), + (UniCase("dificulty"), "difficulty"), + (UniCase("accideny"), "accidently"), + (UniCase("maniuplating"), "manipulating"), + (UniCase("tallets"), "tallest"), + (UniCase("splitner"), "splinter"), + (UniCase("arsneal"), "arsenal"), + (UniCase("moulding"), "molding"), + (UniCase("charachter"), "character"), + (UniCase("influneced"), "influenced"), + (UniCase("cockroahes"), "cockroaches"), + (UniCase("inspectin"), "inspection"), + (UniCase("superfulous"), "superfluous"), + (UniCase("satsifying"), "satisfying"), + (UniCase("suppost"), "supports"), + (UniCase("autocorrent"), "autocorrect"), + (UniCase("atrifacts"), "artifacts"), + (UniCase("transfersom"), "transforms"), + (UniCase("gratuituos"), "gratuitous"), + (UniCase("becuaes"), "becuase"), + (UniCase("imaginating"), "imagination"), + (UniCase("opitcal"), "optical"), + (UniCase("shoudl"), "should"), + (UniCase("organisation"), "organization"), + (UniCase("perphas"), "perhaps"), + (UniCase("depencencies"), "dependencies"), + (UniCase("validade"), "validated"), + (UniCase("cudgelled"), "cudgeled"), + (UniCase("immerisve"), "immersive"), + (UniCase("amatuer"), "amateur"), + (UniCase("distinquishing"), "distinguishing"), + (UniCase("facilitiate"), "facilitate"), + (UniCase("maintaince"), "maintained"), + (UniCase("installeert"), "installer"), + (UniCase("ominscient"), "omniscient"), + (UniCase("nutricious"), "nutritious"), + (UniCase("investiagte"), "investigate"), + (UniCase("ringotne"), "ringtone"), + (UniCase("unprotexted"), "unprotected"), + (UniCase("obssesive"), "obsessive"), + (UniCase("expliot"), "exploit"), + (UniCase("disintereted"), "disinterested"), + (UniCase("temafight"), "teamfight"), + (UniCase("destructivo"), "destruction"), + (UniCase("traingle"), "triangle"), + (UniCase("electroinc"), "electron"), + (UniCase("imperically"), "empirically"), + (UniCase("govenrment"), "government"), + (UniCase("thrities"), "thirties"), + (UniCase("tendincies"), "tendencies"), + (UniCase("babysiting"), "babysitting"), + (UniCase("parliamant"), "parliament"), + (UniCase("sacrafices"), "sacrifices"), + (UniCase("internationnal"), "international"), + (UniCase("generatons"), "generators"), + (UniCase("ecologia"), "ecological"), + (UniCase("familairize"), "familiarize"), + (UniCase("streamd"), "streamed"), + (UniCase("marilyin"), "marilyn"), + (UniCase("appropreation"), "appropriation"), + (UniCase("reliabe"), "reliable"), + (UniCase("degraderad"), "degraded"), + (UniCase("penciles"), "pencils"), + (UniCase("athleticsim"), "athleticism"), + (UniCase("attmepting"), "attempting"), + (UniCase("boradway"), "broadway"), + (UniCase("inconcequential"), "inconsequential"), + (UniCase("unsucesful"), "unsuccessful"), + (UniCase("mcgergor"), "mcgregor"), + (UniCase("recommandes"), "recommends"), + (UniCase("hystericallly"), "hysterically"), + (UniCase("pornograhy"), "pornography"), + (UniCase("individualy"), "individually"), + (UniCase("disciplinairy"), "disciplinary"), + (UniCase("deside"), "decide"), + (UniCase("movepseed"), "movespeed"), + (UniCase("prohibitting"), "prohibiting"), + (UniCase("legitamite"), "legitimate"), + (UniCase("creatie"), "creatine"), + (UniCase("predictons"), "predictions"), + (UniCase("coulmns"), "columns"), + (UniCase("hwile"), "while"), + (UniCase("specialiced"), "specialized"), + (UniCase("brigaged"), "brigade"), + (UniCase("brussles"), "brussels"), + (UniCase("traveld"), "traveled"), + (UniCase("roahces"), "roaches"), + (UniCase("choatic"), "chaotic"), + (UniCase("versiones"), "versions"), + (UniCase("indetification"), "identification"), + (UniCase("concervatism"), "conservatism"), + (UniCase("temporised"), "temporized"), + (UniCase("colloquail"), "colloquial"), + (UniCase("fetishers"), "fetishes"), + (UniCase("radiers"), "raiders"), + (UniCase("paychologists"), "psychologists"), + (UniCase("copenhagan"), "copenhagen"), + (UniCase("inpsector"), "inspector"), + (UniCase("necessarly"), "necessary"), + (UniCase("accidentlaly"), "accidently"), + (UniCase("compeltes"), "completes"), + (UniCase("tempearture"), "temperatures"), + (UniCase("ukriane"), "ukraine"), + (UniCase("analystes"), "analysts"), + (UniCase("renderes"), "renders"), + (UniCase("enchancement"), "enhancement"), + (UniCase("homogeneize"), "homogenize"), + (UniCase("cahotic"), "chaotic"), + (UniCase("qunatum"), "quantum"), + (UniCase("asside"), "aside"), + (UniCase("dinosar"), "dinosaur"), + (UniCase("dividendos"), "dividends"), + (UniCase("clarinettist"), "clarinetist"), + (UniCase("miniaturising"), "miniaturizing"), + (UniCase("extenion"), "extension"), + (UniCase("assertin"), "assertions"), + (UniCase("buttrey"), "buttery"), + (UniCase("discoverd"), "discovered"), + (UniCase("intensley"), "intensely"), + (UniCase("appreciatie"), "appreciative"), + (UniCase("anarchisim"), "anarchism"), + (UniCase("sandwishes"), "sandwiches"), + (UniCase("synchronisation"), "synchronization"), + (UniCase("moleststion"), "molestation"), + (UniCase("cockraoches"), "cockroaches"), + (UniCase("immaturaty"), "immaturity"), + (UniCase("refrehser"), "refresher"), + (UniCase("disingenious"), "disingenuous"), + (UniCase("bastars"), "bastards"), + (UniCase("tehcies"), "techies"), + (UniCase("sexualzied"), "sexualized"), + (UniCase("sarcastisch"), "sarcastic"), + (UniCase("corsshair"), "crosshair"), + (UniCase("satisfacory"), "satisfactory"), + (UniCase("persain"), "persian"), + (UniCase("altruistisch"), "altruistic"), + (UniCase("syntehsis"), "synthesis"), + (UniCase("spontaneuosly"), "spontaneously"), + (UniCase("essentuals"), "essentials"), + (UniCase("thetering"), "tethering"), + (UniCase("olbigatory"), "obligatory"), + (UniCase("substracts"), "subtracts"), + (UniCase("zoinist"), "zionist"), + (UniCase("peopel"), "people"), + (UniCase("segragated"), "segregated"), + (UniCase("narciscist"), "narcissist"), + (UniCase("forgivens"), "forgiveness"), + (UniCase("sideboad"), "sideboard"), + (UniCase("liberales"), "liberals"), + (UniCase("sliently"), "silently"), + (UniCase("neckbeardos"), "neckbeards"), + (UniCase("properitary"), "proprietary"), + (UniCase("micortransactions"), "microtransactions"), + (UniCase("themselfs"), "themselves"), + (UniCase("deprivaton"), "deprivation"), + (UniCase("backgroud"), "background"), + (UniCase("formulados"), "formulas"), + (UniCase("initalisers"), "initialisers"), + (UniCase("marginilized"), "marginalized"), + (UniCase("susbtantive"), "substantive"), + (UniCase("neighborhod"), "neighborhood"), + (UniCase("opposits"), "opposites"), + (UniCase("subsidise"), "subsidize"), + (UniCase("pennsylvainia"), "pennsylvania"), + (UniCase("californiia"), "californian"), + (UniCase("caraciture"), "caricature"), + (UniCase("graphcially"), "graphically"), + (UniCase("amking"), "making"), + (UniCase("commisioner"), "commissioner"), + (UniCase("optimaal"), "optimal"), + (UniCase("imaganitive"), "imaginative"), + (UniCase("deficiancies"), "deficiencies"), + (UniCase("ridiculued"), "ridicule"), + (UniCase("surrepetitiously"), "surreptitiously"), + (UniCase("friednzone"), "friendzoned"), + (UniCase("systemetically"), "systematically"), + (UniCase("socratees"), "socrates"), + (UniCase("anaylst"), "analyst"), + (UniCase("listend"), "listened"), + (UniCase("avaiable"), "available"), + (UniCase("strawbarry"), "strawberry"), + (UniCase("documentaire"), "documentaries"), + (UniCase("proximty"), "proximity"), + (UniCase("incorperating"), "incorporating"), + (UniCase("recommande"), "recommend"), + (UniCase("internalised"), "internalized"), + (UniCase("unworthly"), "unworthy"), + (UniCase("needlessy"), "needlessly"), + (UniCase("convertirte"), "converter"), + (UniCase("illegalest"), "illegals"), + (UniCase("littlepinger"), "littlefinger"), + (UniCase("relativiy"), "relativity"), + (UniCase("vicotrian"), "victorian"), + (UniCase("expanisve"), "expansive"), + (UniCase("conplimented"), "complimented"), + (UniCase("competenze"), "competence"), + (UniCase("montrel"), "montreal"), + (UniCase("radicalises"), "radicalizes"), + (UniCase("fahrenhiet"), "fahrenheit"), + (UniCase("creativey"), "creatively"), + (UniCase("principielt"), "principle"), + (UniCase("reedemed"), "redeemed"), + (UniCase("checkpointusa"), "checkpoints"), + (UniCase("directroy"), "directory"), + (UniCase("productos"), "products"), + (UniCase("ploymer"), "polymer"), + (UniCase("finalised"), "finalized"), + (UniCase("dysfonctional"), "dysfunctional"), + (UniCase("fictionaries"), "dictionaries"), + (UniCase("constanty"), "constantly"), + (UniCase("counterfait"), "counterfeit"), + (UniCase("plaestinian"), "palestinian"), + (UniCase("comediants"), "comedians"), + (UniCase("reconnoitred"), "reconnoitered"), + (UniCase("guarnatees"), "guarantees"), + (UniCase("aburptly"), "abruptly"), + (UniCase("specialz"), "specialize"), + (UniCase("defensie"), "defensive"), + (UniCase("irreversibile"), "irreversible"), + (UniCase("motehrboard"), "motherboard"), + (UniCase("publihser"), "publisher"), + (UniCase("illegsl"), "illegals"), + (UniCase("inaguration"), "inauguration"), + (UniCase("infinie"), "infinite"), + (UniCase("terroristes"), "terrorists"), + (UniCase("demorcracy"), "democracy"), + (UniCase("intorducing"), "introducing"), + (UniCase("saveing"), "saving"), + (UniCase("nagivating"), "navigating"), + (UniCase("staurday"), "saturday"), + (UniCase("legoins"), "legions"), + (UniCase("civilises"), "civilizes"), + (UniCase("illustrant"), "illustrate"), + (UniCase("welathier"), "wealthier"), + (UniCase("mysogyny"), "misogyny"), + (UniCase("existince"), "existence"), + (UniCase("metaphoricaly"), "metaphorically"), + (UniCase("acommodate"), "accommodate"), + (UniCase("imlpementation"), "implementations"), + (UniCase("adress"), "address"), + (UniCase("ostracising"), "ostracizing"), + (UniCase("destroyes"), "destroys"), + (UniCase("homineum"), "hominem"), + (UniCase("heigher"), "higher"), + (UniCase("avaition"), "aviation"), + (UniCase("sophicated"), "sophisticated"), + (UniCase("cosily"), "cozily"), + (UniCase("undoubtebly"), "undoubtedly"), + (UniCase("canadianese"), "canadians"), + (UniCase("origniality"), "originality"), + (UniCase("everyoneis"), "everyones"), + (UniCase("electritian"), "electrician"), + (UniCase("refering"), "referring"), + (UniCase("teamfigths"), "teamfights"), + (UniCase("athletiscm"), "athleticism"), + (UniCase("prestigiosa"), "prestigious"), + (UniCase("distrobution"), "distribution"), + (UniCase("tournamnets"), "tournaments"), + (UniCase("stregnthening"), "strengthening"), + (UniCase("politiciens"), "politicians"), + (UniCase("controdiction"), "contradiction"), + (UniCase("prohpecy"), "prophecy"), + (UniCase("freindly"), "friendly"), + (UniCase("quantitty"), "quantity"), + (UniCase("phycisist"), "physicist"), + (UniCase("circumsision"), "circumcision"), + (UniCase("intellectualis"), "intellectuals"), + (UniCase("chocolatos"), "chocolates"), + (UniCase("knowldegable"), "knowledgable"), + (UniCase("inaccessable"), "inaccessible"), + (UniCase("convervation"), "conservation"), + (UniCase("junglig"), "jungling"), + (UniCase("capatilize"), "capitalize"), + (UniCase("composit"), "compost"), + (UniCase("alege"), "allege"), + (UniCase("isntances"), "instances"), + (UniCase("completelly"), "completely"), + (UniCase("consideret"), "considerate"), + (UniCase("pomegranite"), "pomegranate"), + (UniCase("matheticians"), "mathematicians"), + (UniCase("coutnered"), "countered"), + (UniCase("insurgeny"), "insurgency"), + (UniCase("colonge"), "cologne"), + (UniCase("qaulity"), "quality"), + (UniCase("operationel"), "operational"), + (UniCase("weightlifing"), "weightlifting"), + (UniCase("basiclay"), "basicly"), + (UniCase("consilation"), "consolation"), + (UniCase("shenanagins"), "shenanigans"), + (UniCase("symobls"), "symbols"), + (UniCase("proclam"), "proclaim"), + (UniCase("misspellling"), "misspelling"), + (UniCase("profissional"), "professional"), + (UniCase("pshycosis"), "psychosis"), + (UniCase("dictatorhip"), "dictatorship"), + (UniCase("enthusiatic"), "enthusiastic"), + (UniCase("connecticunts"), "connecticut"), + (UniCase("tornadoe"), "tornado"), + (UniCase("caclulus"), "calculus"), + (UniCase("inspiracion"), "inspiration"), + (UniCase("accidnetly"), "accidently"), + (UniCase("moroever"), "moreover"), + (UniCase("mozillia"), "mozilla"), + (UniCase("conductiong"), "conducting"), + (UniCase("inheriet"), "inherit"), + (UniCase("powerfull"), "powerful"), + (UniCase("sporanos"), "sopranos"), + (UniCase("lieutenent"), "lieutenant"), + (UniCase("personalitits"), "personalities"), + (UniCase("vitamis"), "vitamins"), + (UniCase("inconsistenly"), "inconsistency"), + (UniCase("lepoard"), "leopard"), + (UniCase("presumptuos"), "presumptuous"), + (UniCase("imparied"), "impaired"), + (UniCase("fundamentalister"), "fundamentalists"), + (UniCase("caputres"), "captures"), + (UniCase("indepedence"), "independence"), + (UniCase("willk"), "will"), + (UniCase("discussiong"), "discussing"), + (UniCase("copenhaagen"), "copenhagen"), + (UniCase("catergorize"), "categorize"), + (UniCase("anitdepressant"), "antidepressants"), + (UniCase("fractalus"), "fractals"), + (UniCase("perephirals"), "peripherals"), + (UniCase("analzying"), "analyzing"), + (UniCase("excerise"), "exercise"), + (UniCase("allergisch"), "allergic"), + (UniCase("overpopulaton"), "overpopulation"), + (UniCase("ingreediants"), "ingredients"), + (UniCase("hybridised"), "hybridized"), + (UniCase("lockacreen"), "lockscreen"), + (UniCase("skateboaring"), "skateboarding"), + (UniCase("extremelly"), "extremely"), + (UniCase("camofluage"), "camouflage"), + (UniCase("protrayed"), "portrayed"), + (UniCase("wesbites"), "websites"), + (UniCase("possissive"), "possessive"), + (UniCase("misoginist"), "misogynist"), + (UniCase("sterotypes"), "stereotypes"), + (UniCase("performaces"), "performances"), + (UniCase("austrailian"), "australian"), + (UniCase("indocternated"), "indoctrinated"), + (UniCase("symphatizes"), "sympathize"), + (UniCase("assulated"), "assaulted"), + (UniCase("friendsi"), "friendlies"), + (UniCase("disproportionatley"), "disproportionately"), + (UniCase("euphorical"), "euphoria"), + (UniCase("excedded"), "exceeded"), + (UniCase("turksih"), "turkish"), + (UniCase("converastion"), "conversations"), + (UniCase("orgainzation"), "organizations"), + (UniCase("tindergarten"), "kindergarten"), + (UniCase("govnerment"), "government"), + (UniCase("disconnectes"), "disconnects"), + (UniCase("meaningess"), "meanings"), + (UniCase("purhcased"), "purchased"), + (UniCase("labourer"), "laborer"), + (UniCase("conceviable"), "conceivable"), + (UniCase("dominateurs"), "dominates"), + (UniCase("inconsequental"), "inconsequential"), + (UniCase("exaggerrate"), "exaggerate"), + (UniCase("giltches"), "glitches"), + (UniCase("keyboars"), "keyboards"), + (UniCase("extraordinairly"), "extraordinarily"), + (UniCase("billionairs"), "billionaires"), + (UniCase("pinpoit"), "pinpoint"), + (UniCase("palestenians"), "palestinians"), + (UniCase("apocalypitic"), "apocalyptic"), + (UniCase("magazins"), "magazines"), + (UniCase("unfamilier"), "unfamiliar"), + (UniCase("smackdwon"), "smackdown"), + (UniCase("watchemn"), "watchmen"), + (UniCase("inefficent"), "inefficient"), + (UniCase("civilizaitons"), "civilizations"), + (UniCase("livescream"), "livestream"), + (UniCase("guilia"), "giulia"), + (UniCase("pakistanezi"), "pakistani"), + (UniCase("dicussed"), "discussed"), + (UniCase("towords"), "towards"), + (UniCase("vitrues"), "virtues"), + (UniCase("overextimating"), "overestimating"), + (UniCase("discolour"), "discolor"), + (UniCase("firendly"), "friendly"), + (UniCase("monoploy"), "monopoly"), + (UniCase("vacestomy"), "vasectomy"), + (UniCase("complexs"), "complexes"), + (UniCase("insinuationg"), "insinuating"), + (UniCase("humanit"), "humanist"), + (UniCase("counterpath"), "counterpart"), + (UniCase("definitivelly"), "definitively"), + (UniCase("restuarant"), "restaurant"), + (UniCase("indistinguishible"), "indistinguishable"), + (UniCase("equivilent"), "equivalent"), + (UniCase("strageties"), "strategies"), + (UniCase("photographics"), "photographs"), + (UniCase("exponentialy"), "exponentially"), + (UniCase("reciprocite"), "reciprocate"), + (UniCase("camperos"), "campers"), + (UniCase("substanser"), "substances"), + (UniCase("presumendo"), "presumed"), + (UniCase("forgivance"), "forgiven"), + (UniCase("counteredit"), "counterfeit"), + (UniCase("pioneeer"), "pioneer"), + (UniCase("ploughing"), "plowing"), + (UniCase("submariens"), "submarines"), + (UniCase("gratutious"), "gratuitous"), + (UniCase("efficienty"), "efficiently"), + (UniCase("limitaitons"), "limitation"), + (UniCase("innocentius"), "innocents"), + (UniCase("pedestrianise"), "pedestrianize"), + (UniCase("uncannny"), "uncanny"), + (UniCase("interbread"), "interbreed"), + (UniCase("earthqaukes"), "earthquakes"), + (UniCase("introvered"), "introverted"), + (UniCase("proprietry"), "proprietary"), + (UniCase("transations"), "transitions"), + (UniCase("witheld"), "withheld"), + (UniCase("inferiour"), "inferior"), + (UniCase("chekcer"), "checker"), + (UniCase("veitnam"), "vietnam"), + (UniCase("descriibes"), "describes"), + (UniCase("distincive"), "distinctive"), + (UniCase("exploracion"), "exploration"), + (UniCase("insignifiant"), "insignificant"), + (UniCase("destinatin"), "destinations"), + (UniCase("europenas"), "europeans"), + (UniCase("provine"), "province"), + (UniCase("persistente"), "persistence"), + (UniCase("motorcicle"), "motorcycle"), + (UniCase("categorises"), "categorizes"), + (UniCase("attendence"), "attendance"), + (UniCase("platfromers"), "platformer"), + (UniCase("soundtrak"), "soundtrack"), + (UniCase("crucifiction"), "crucifixion"), + (UniCase("communsim"), "communism"), + (UniCase("sciencists"), "scientists"), + (UniCase("diminisheds"), "diminishes"), + (UniCase("chlroine"), "chlorine"), + (UniCase("chronocles"), "chronicles"), + (UniCase("integreres"), "interferes"), + (UniCase("windshiled"), "windshield"), + (UniCase("vreity"), "variety"), + (UniCase("peroidically"), "periodically"), + (UniCase("soemthing"), "something"), + (UniCase("athletecism"), "athleticism"), + (UniCase("closeing"), "closing"), + (UniCase("conclusies"), "conclusive"), + (UniCase("incompitable"), "incompatible"), + (UniCase("eastwoord"), "eastwood"), + (UniCase("pyarmid"), "pyramid"), + (UniCase("unregluated"), "unregulated"), + (UniCase("kingdomers"), "kingdoms"), + (UniCase("challegner"), "challenger"), + (UniCase("contraticted"), "contradicted"), + (UniCase("invensions"), "inventions"), + (UniCase("horisontally"), "horizontally"), + (UniCase("ancinets"), "ancients"), + (UniCase("carpetner"), "carpenter"), + (UniCase("masterpeices"), "masterpiece"), + (UniCase("alltime"), "all-time"), + (UniCase("syarcuse"), "syracuse"), + (UniCase("coutnerfeit"), "counterfeit"), + (UniCase("unrivalled"), "unrivaled"), + (UniCase("demoralises"), "demoralizes"), + (UniCase("savouries"), "savories"), + (UniCase("shileded"), "shielded"), + (UniCase("ephipany"), "epiphany"), + (UniCase("dispencaries"), "dispensaries"), + (UniCase("scandas"), "scandals"), + (UniCase("flexibiliy"), "flexibility"), + (UniCase("presecution"), "persecution"), + (UniCase("vitroil"), "vitriol"), + (UniCase("relaitonship"), "relationships"), + (UniCase("insitutions"), "institutions"), + (UniCase("definititely"), "definitively"), + (UniCase("calcualtion"), "calculations"), + (UniCase("remaing"), "remaining"), + (UniCase("irrationatly"), "irrationally"), + (UniCase("varaints"), "variants"), + (UniCase("encyclopeadia"), "encyclopedia"), + (UniCase("touchapd"), "touchpad"), + (UniCase("organsied"), "organised"), + (UniCase("interprate"), "interpret"), + (UniCase("metamorphysis"), "metamorphosis"), + (UniCase("communters"), "commenters"), + (UniCase("bloggeur"), "blogger"), + (UniCase("misdemenaor"), "misdemeanor"), + (UniCase("immobilie"), "immobile"), + (UniCase("analysie"), "analyse"), + (UniCase("cercumstance"), "circumstance"), + (UniCase("chronosome"), "chromosome"), + (UniCase("complicatted"), "complicate"), + (UniCase("strenghtening"), "strengthening"), + (UniCase("favourites"), "favorites"), + (UniCase("pessimitic"), "pessimistic"), + (UniCase("explicatia"), "explicit"), + (UniCase("unviersities"), "universities"), + (UniCase("desingation"), "designation"), + (UniCase("outnumberd"), "outnumbered"), + (UniCase("optimizating"), "optimization"), + (UniCase("husbandos"), "husbands"), + (UniCase("vegansim"), "veganism"), + (UniCase("confidense"), "confidence"), + (UniCase("roleply"), "roleplay"), + (UniCase("paralleles"), "parallels"), + (UniCase("corssfire"), "crossfire"), + (UniCase("scandenavia"), "scandinavia"), + (UniCase("faeces"), "feces"), + (UniCase("shardholders"), "shareholders"), + (UniCase("archimedian"), "archimedean"), + (UniCase("squirrelling"), "squirreling"), + (UniCase("hatian"), "haitian"), + (UniCase("desinations"), "destinations"), + (UniCase("dissmisive"), "dismissive"), + (UniCase("problamatic"), "problematic"), + (UniCase("absorbes"), "absorbs"), + (UniCase("relationshp"), "relationships"), + (UniCase("ineffictive"), "ineffective"), + (UniCase("flavores"), "flavors"), + (UniCase("receptoras"), "receptors"), + (UniCase("recordare"), "recorder"), + (UniCase("experements"), "experiments"), + (UniCase("senitmental"), "sentimental"), + (UniCase("ominpotent"), "omnipotent"), + (UniCase("errupted"), "erupted"), + (UniCase("electrial"), "electrical"), + (UniCase("orcales"), "oracles"), + (UniCase("referances"), "references"), + (UniCase("archaeologists"), "archeologists"), + (UniCase("fictionalised"), "fictionalized"), + (UniCase("pyramis"), "pyramids"), + (UniCase("implicity"), "implicitly"), + (UniCase("secretos"), "secrets"), + (UniCase("fideltiy"), "fidelity"), + (UniCase("perhiperals"), "peripherals"), + (UniCase("inmigrants"), "immigrants"), + (UniCase("regualtions"), "regulations"), + (UniCase("temperamant"), "temperament"), + (UniCase("mulsims"), "muslims"), + (UniCase("jounral"), "journal"), + (UniCase("horizontaal"), "horizontal"), + (UniCase("jusitfy"), "justify"), + (UniCase("relcutant"), "reluctant"), + (UniCase("analouge"), "analogue"), + (UniCase("cilmbers"), "climbers"), + (UniCase("stereotypers"), "stereotypes"), + (UniCase("prejiduced"), "prejudiced"), + (UniCase("sandstom"), "sandstorm"), + (UniCase("explict"), "explicit"), + (UniCase("earthquack"), "earthquake"), + (UniCase("concencration"), "concentration"), + (UniCase("provinciaal"), "provincial"), + (UniCase("dependensies"), "dependencies"), + (UniCase("momento"), "memento"), + (UniCase("generatios"), "generators"), + (UniCase("qaulification"), "qualification"), + (UniCase("eletricity"), "electricity"), + (UniCase("interferisse"), "interferes"), + (UniCase("commites"), "commits"), + (UniCase("simluated"), "simulated"), + (UniCase("possibily"), "possibility"), + (UniCase("relatiopnship"), "relationship"), + (UniCase("cheeseburgler"), "cheeseburger"), + (UniCase("customizabe"), "customizable"), + (UniCase("consensuel"), "consensual"), + (UniCase("catastrophize"), "catastrophe"), + (UniCase("checkponts"), "checkpoints"), + (UniCase("motherbord"), "motherboard"), + (UniCase("transformees"), "transforms"), + (UniCase("mysapce"), "myspace"), + (UniCase("perrogative"), "prerogative"), + (UniCase("downlaodable"), "downloadable"), + (UniCase("lieutennant"), "lieutenant"), + (UniCase("manufactureres"), "manufacturers"), + (UniCase("califronia"), "california"), + (UniCase("syrains"), "syrians"), + (UniCase("aquiring"), "acquiring"), + (UniCase("spermatozoan"), "spermatozoon"), + (UniCase("undergard"), "undergrad"), + (UniCase("rediculous"), "ridiculous"), + (UniCase("haemorrhages"), "hemorrhages"), + (UniCase("formidible"), "formidable"), + (UniCase("clipbaord"), "clipboard"), + (UniCase("petroluem"), "petroleum"), + (UniCase("undoubtley"), "undoubtedly"), + (UniCase("missionaires"), "missionaries"), + (UniCase("chrsitians"), "christians"), + (UniCase("concatination"), "contamination"), + (UniCase("crystallised"), "crystallized"), + (UniCase("cannibalsm"), "cannibalism"), + (UniCase("lannsiters"), "lannisters"), + (UniCase("extrapolite"), "extrapolate"), + (UniCase("algorythims"), "algorithms"), + (UniCase("distributore"), "distribute"), + (UniCase("homineim"), "hominem"), + (UniCase("expeditivo"), "expedition"), + (UniCase("whsipers"), "whispers"), + (UniCase("christimas"), "christians"), + (UniCase("explicitely"), "explicitly"), + (UniCase("eatswood"), "eastwood"), + (UniCase("expections"), "exceptions"), + (UniCase("tablespon"), "tablespoon"), + (UniCase("ceasar"), "caesar"), + (UniCase("subscirber"), "subscribers"), + (UniCase("confesssion"), "confessions"), + (UniCase("humouring"), "humoring"), + (UniCase("watermalon"), "watermelon"), + (UniCase("sarcasitcally"), "sarcastically"), + (UniCase("cricles"), "circles"), + (UniCase("italains"), "italians"), + (UniCase("ktichen"), "kitchen"), + (UniCase("transphoic"), "transphobic"), + (UniCase("hotsopt"), "hotspot"), + (UniCase("partecipate"), "participate"), + (UniCase("sinlgeplayer"), "singleplayer"), + (UniCase("rhytmic"), "rhythmic"), + (UniCase("frontlinjen"), "frontline"), + (UniCase("libertarains"), "libertarians"), + (UniCase("settlemetns"), "settlements"), + (UniCase("motherboads"), "motherboards"), + (UniCase("supose"), "suppose"), + (UniCase("defleciton"), "deflection"), + (UniCase("fervour"), "fervor"), + (UniCase("cellural"), "cellular"), + (UniCase("parademics"), "paramedics"), + (UniCase("valentones"), "valentines"), + (UniCase("dismanteld"), "dismantled"), + (UniCase("soundtracs"), "soundtracks"), + (UniCase("adknowledged"), "acknowledged"), + (UniCase("southamption"), "southampton"), + (UniCase("tyhe"), "they"), + (UniCase("munnicipality"), "municipality"), + (UniCase("miliitas"), "militias"), + (UniCase("contanimate"), "contaminated"), + (UniCase("definicion"), "definition"), + (UniCase("considerablely"), "considerably"), + (UniCase("authroity"), "authority"), + (UniCase("correcters"), "correctors"), + (UniCase("europians"), "europeans"), + (UniCase("undertacker"), "undertaker"), + (UniCase("sitmuli"), "stimuli"), + (UniCase("uncencored"), "uncensored"), + (UniCase("abilties"), "abilities"), + (UniCase("informacion"), "information"), + (UniCase("impreative"), "imperative"), + (UniCase("octohedra"), "octahedra"), + (UniCase("manaully"), "manually"), + (UniCase("championchips"), "championship"), + (UniCase("chalenging"), "challenging"), + (UniCase("herathstone"), "hearthstone"), + (UniCase("capabiltiy"), "capability"), + (UniCase("squardon"), "squadron"), + (UniCase("paragrahps"), "paragraphs"), + (UniCase("pususading"), "persuading"), + (UniCase("deregulatin"), "deregulation"), + (UniCase("disconnets"), "disconnects"), + (UniCase("professiinal"), "professionalism"), + (UniCase("progerssion"), "progressions"), + (UniCase("cornmitted"), "committed"), + (UniCase("prometheas"), "prometheus"), + (UniCase("normaly"), "normally"), + (UniCase("pharamcists"), "pharmacist"), + (UniCase("teaspooon"), "teaspoon"), + (UniCase("contracter"), "contractor"), + (UniCase("contitnent"), "contingent"), + (UniCase("suspendes"), "suspense"), + (UniCase("orchistrated"), "orchestrated"), + (UniCase("athelticism"), "athleticism"), + (UniCase("bridaging"), "brigading"), + (UniCase("pscyhology"), "psychology"), + (UniCase("nationaliy"), "nationality"), + (UniCase("sebsatian"), "sebastian"), + (UniCase("pedalled"), "pedaled"), + (UniCase("caridgan"), "cardigan"), + (UniCase("derivate"), "derivative"), + (UniCase("externaly"), "externally"), + (UniCase("fucntions"), "functions"), + (UniCase("inferrence"), "inference"), + (UniCase("suspention"), "suspension"), + (UniCase("responed"), "respond"), + (UniCase("powerhours"), "powerhouse"), + (UniCase("tropcial"), "tropical"), + (UniCase("saterday"), "saturday"), + (UniCase("transforums"), "transforms"), + (UniCase("collaboratie"), "collaborate"), + (UniCase("surroundigs"), "surrounds"), + (UniCase("literae"), "literate"), + (UniCase("indepedantly"), "independently"), + (UniCase("possiblility"), "possibility"), + (UniCase("restrainting"), "restraining"), + (UniCase("prepaird"), "prepaid"), + (UniCase("juggernaugt"), "juggernaut"), + (UniCase("complicite"), "complicate"), + (UniCase("autonamous"), "autonomous"), + (UniCase("rationalising"), "rationalizing"), + (UniCase("sunglinger"), "gunslinger"), + (UniCase("insensative"), "insensitive"), + (UniCase("grovelling"), "groveling"), + (UniCase("disrepsecting"), "disrespecting"), + (UniCase("lmits"), "limits"), + (UniCase("placeholer"), "placeholder"), + (UniCase("ellipitcals"), "elliptical"), + (UniCase("disguisted"), "disguise"), + (UniCase("atempting"), "attempting"), + (UniCase("responcible"), "responsible"), + (UniCase("compesition"), "composition"), + (UniCase("repostig"), "reposting"), + (UniCase("repbulican"), "republican"), + (UniCase("informas"), "informs"), + (UniCase("centipedle"), "centipede"), + (UniCase("maidson"), "madison"), + (UniCase("graphicaly"), "graphically"), + (UniCase("androiders"), "androids"), + (UniCase("brewerys"), "brewers"), + (UniCase("originsl"), "originals"), + (UniCase("lifepsan"), "lifespan"), + (UniCase("marijuannas"), "marijuana"), + (UniCase("industriella"), "industrial"), + (UniCase("cylcone"), "cyclone"), + (UniCase("acknowlede"), "acknowledge"), + (UniCase("compulsivley"), "compulsive"), + (UniCase("contextful"), "contextual"), + (UniCase("overpirced"), "overpriced"), + (UniCase("destoryer"), "destroyer"), + (UniCase("assembeld"), "assembled"), + (UniCase("pennsylvannia"), "pennsylvania"), + (UniCase("techinques"), "techniques"), + (UniCase("infrastrutture"), "infrastructure"), + (UniCase("nercomancer"), "necromancer"), + (UniCase("outpreform"), "outperform"), + (UniCase("degradating"), "degradation"), + (UniCase("electromagentic"), "electromagnetic"), + (UniCase("righteoussness"), "righteousness"), + (UniCase("amortisations"), "amortizations"), + (UniCase("levleing"), "leveling"), + (UniCase("especailly"), "especially"), + (UniCase("interaktive"), "interactive"), + (UniCase("maintinence"), "maintenance"), + (UniCase("artifcats"), "artifacts"), + (UniCase("manipualting"), "manipulating"), + (UniCase("imtimidating"), "intimidating"), + (UniCase("wrteched"), "wretched"), + (UniCase("dismantel"), "dismantle"), + (UniCase("mutliplier"), "multiplier"), + (UniCase("prohibis"), "prohibits"), + (UniCase("gigbayte"), "gigabyte"), + (UniCase("cerebrawl"), "cerebral"), + (UniCase("virament"), "vraiment"), + (UniCase("oximoron"), "oxymoron"), + (UniCase("agaisnt"), "against"), + (UniCase("australiens"), "australians"), + (UniCase("swivelling"), "swiveling"), + (UniCase("mircowaves"), "microwaves"), + (UniCase("extravegant"), "extravagant"), + (UniCase("restrictios"), "restricts"), + (UniCase("rewatchig"), "rewatching"), + (UniCase("comaprisons"), "comparisons"), + (UniCase("pshycopathic"), "psychopathic"), + (UniCase("repeatible"), "repeatable"), + (UniCase("dinasours"), "dinosaurs"), + (UniCase("talbian"), "taliban"), + (UniCase("zeebra"), "zebra"), + (UniCase("asnwered"), "answered"), + (UniCase("causalty"), "casualty"), + (UniCase("partians"), "partisan"), + (UniCase("intrepreting"), "interpreting"), + (UniCase("africanas"), "africans"), + (UniCase("inconveniet"), "inconvenient"), + (UniCase("autonomity"), "autonomy"), + (UniCase("islmaists"), "islamists"), + (UniCase("metophorically"), "metaphorically"), + (UniCase("champiosnhip"), "championships"), + (UniCase("gankign"), "ganking"), + (UniCase("naploeon"), "napoleon"), + (UniCase("jurisfiction"), "jurisdiction"), + (UniCase("understsnd"), "understands"), + (UniCase("omited"), "omitted"), + (UniCase("specilaized"), "specialize"), + (UniCase("activley"), "actively"), + (UniCase("constast"), "constants"), + (UniCase("masturbatin"), "masturbation"), + (UniCase("champange"), "champagne"), + (UniCase("unprecendented"), "unprecedented"), + (UniCase("dimaonds"), "diamonds"), + (UniCase("intillectuals"), "intellectuals"), + (UniCase("evreyones"), "everyones"), + (UniCase("californain"), "californian"), + (UniCase("assimiliate"), "assimilate"), + (UniCase("bithced"), "bitched"), + (UniCase("stratagies"), "strategies"), + (UniCase("kickstarer"), "kickstarter"), + (UniCase("troups"), "troupes"), + (UniCase("pedestrianised"), "pedestrianized"), + (UniCase("predomenantly"), "predominantly"), + (UniCase("movment"), "movement"), + (UniCase("commandemnts"), "commandment"), + (UniCase("pulverisation"), "pulverization"), + (UniCase("paide"), "paid"), + (UniCase("convertie"), "convertible"), + (UniCase("concluse"), "conclusive"), + (UniCase("serialisation"), "serialization"), + (UniCase("overclockign"), "overclocking"), + (UniCase("seperately"), "separately"), + (UniCase("terrirories"), "territories"), + (UniCase("masogynistic"), "misogynistic"), + (UniCase("terrestial"), "terrestrial"), + (UniCase("alchol"), "alcohol"), + (UniCase("glitchs"), "glitches"), + (UniCase("cincinnnati"), "cincinnati"), + (UniCase("inhertied"), "inherited"), + (UniCase("externalising"), "externalizing"), + (UniCase("overwelming"), "overwhelming"), + (UniCase("compositie"), "composite"), + (UniCase("grammaticly"), "grammatical"), + (UniCase("adquiring"), "acquiring"), + (UniCase("vengaence"), "vengeance"), + (UniCase("coincidential"), "coincidental"), + (UniCase("surpeme"), "supreme"), + (UniCase("declarees"), "declares"), + (UniCase("lightnting"), "lightening"), + (UniCase("submachne"), "submachine"), + (UniCase("enrol"), "enroll"), + (UniCase("conculsions"), "conclusions"), + (UniCase("dimentions"), "dimensions"), + (UniCase("comparement"), "compartment"), + (UniCase("thankfullly"), "thankfully"), + (UniCase("arrary"), "array"), + (UniCase("quaruntine"), "quarantine"), + (UniCase("beastiality"), "bestiality"), + (UniCase("dynamitage"), "dynamite"), + (UniCase("enterprenuer"), "entrepreneur"), + (UniCase("dissapearance"), "disappearance"), + (UniCase("commongly"), "commonly"), + (UniCase("hesistate"), "hesitate"), + (UniCase("comftorable"), "comfortable"), + (UniCase("geographycally"), "geographically"), + (UniCase("directinla"), "directional"), + (UniCase("chiselling"), "chiseling"), + (UniCase("traveles"), "travels"), + (UniCase("managable"), "manageable"), + (UniCase("basicliy"), "basicly"), + (UniCase("copengahen"), "copenhagen"), + (UniCase("financialy"), "financially"), + (UniCase("flattire"), "flatter"), + (UniCase("physcologically"), "psychologically"), + (UniCase("organisaiton"), "organisation"), + (UniCase("contructing"), "contracting"), + (UniCase("fulfullment"), "fulfillment"), + (UniCase("delightlful"), "delightful"), + (UniCase("wedensday"), "wednesday"), + (UniCase("hardend"), "hardened"), + (UniCase("yourselfes"), "yourselves"), + (UniCase("vasectomey"), "vasectomy"), + (UniCase("unavailabe"), "unavailable"), + (UniCase("liberaties"), "liberate"), + (UniCase("wiavers"), "waivers"), + (UniCase("disengenuous"), "disingenuous"), + (UniCase("interactie"), "interactive"), + (UniCase("seahwaks"), "seahawks"), + (UniCase("varing"), "varying"), + (UniCase("transfromer"), "transformers"), + (UniCase("adeliade"), "adelaide"), + (UniCase("scandalise"), "scandalize"), + (UniCase("creeperest"), "creepers"), + (UniCase("logisitcal"), "logistical"), + (UniCase("saltpetre"), "saltpeter"), + (UniCase("languague"), "language"), + (UniCase("journalistisk"), "journalists"), + (UniCase("salughter"), "slaughter"), + (UniCase("analitical"), "analytical"), + (UniCase("suppy"), "supply"), + (UniCase("superstision"), "superstition"), + (UniCase("anynomous"), "anonymous"), + (UniCase("forgeiner"), "foreigner"), + (UniCase("continut"), "continuity"), + (UniCase("undermineres"), "undermines"), + (UniCase("meditatie"), "meditate"), + (UniCase("announched"), "announce"), + (UniCase("intereacts"), "interfaces"), + (UniCase("diagonse"), "diagnose"), + (UniCase("trochlight"), "torchlight"), + (UniCase("bisexaul"), "bisexual"), + (UniCase("contenents"), "continents"), + (UniCase("atmoshperic"), "atmospheric"), + (UniCase("galvanised"), "galvanized"), + (UniCase("copenaghen"), "copenhagen"), + (UniCase("miracurously"), "miraculous"), + (UniCase("combanations"), "combinations"), + (UniCase("revitalised"), "revitalized"), + (UniCase("descandants"), "descendants"), + (UniCase("nutritents"), "nutrients"), + (UniCase("northerend"), "northern"), + (UniCase("occasionaly"), "occasionally"), + (UniCase("tupparware"), "tupperware"), + (UniCase("predicitons"), "predictions"), + (UniCase("porportion"), "proportion"), + (UniCase("beaucop"), "beaucoup"), + (UniCase("accomplishents"), "accomplishes"), + (UniCase("outrageoulsy"), "outrageously"), + (UniCase("perfomrance"), "performances"), + (UniCase("begininngs"), "beginnings"), + (UniCase("govenment"), "government"), + (UniCase("evolveds"), "evolves"), + (UniCase("discoveryd"), "discovered"), + (UniCase("routeros"), "routers"), + (UniCase("finalising"), "finalizing"), + (UniCase("phillipine"), "philippine"), + (UniCase("clickbat"), "clickbait"), + (UniCase("dublications"), "publications"), + (UniCase("spirtiuality"), "spirituality"), + (UniCase("uncouncious"), "unconscious"), + (UniCase("specificaly"), "specifically"), + (UniCase("minoins"), "minions"), + (UniCase("collectivise"), "collectivize"), + (UniCase("bubbels"), "bubbles"), + (UniCase("divisionals"), "divisions"), + (UniCase("fraternises"), "fraternizes"), + (UniCase("davantage"), "advantage"), + (UniCase("contriversial"), "controversial"), + (UniCase("retaliers"), "retailers"), + (UniCase("promiscuos"), "promiscuous"), + (UniCase("bastardous"), "bastards"), + (UniCase("motorcylce"), "motorcycle"), + (UniCase("plagiariasm"), "plagiarism"), + (UniCase("untill"), "until"), + (UniCase("comediac"), "comedic"), + (UniCase("computerises"), "computerizes"), + (UniCase("extracto"), "extraction"), + (UniCase("expells"), "expels"), + (UniCase("sincerley"), "sincerely"), + (UniCase("austrila"), "austria"), + (UniCase("destraction"), "destruction"), + (UniCase("prodcution"), "production"), + (UniCase("resistencias"), "resistances"), + (UniCase("charismastic"), "charismatic"), + (UniCase("minneapolites"), "minneapolis"), + (UniCase("liberterian"), "libertarian"), + (UniCase("impropable"), "improbable"), + (UniCase("cahracters"), "characters"), + (UniCase("depressief"), "depressive"), + (UniCase("misoginysts"), "misogynist"), + (UniCase("recepits"), "receipts"), + (UniCase("traveres"), "traverse"), + (UniCase("shouldnot"), "shouldnt"), + (UniCase("previes"), "previews"), + (UniCase("criticos"), "critics"), + (UniCase("passionale"), "passionately"), + (UniCase("enlcosed"), "enclosed"), + (UniCase("definet"), "definite"), + (UniCase("contracing"), "contracting"), + (UniCase("institutionale"), "institutionalized"), + (UniCase("parasits"), "parasites"), + (UniCase("consciense"), "conscience"), + (UniCase("tyrannising"), "tyrannizing"), + (UniCase("westerse"), "westerners"), + (UniCase("kuridsh"), "kurdish"), + (UniCase("franchieses"), "franchises"), + (UniCase("personalise"), "personalize"), + (UniCase("subtiltes"), "subtitles"), + (UniCase("origianlly"), "originally"), + (UniCase("overbearring"), "overbearing"), + (UniCase("childresn"), "childrens"), + (UniCase("robberys"), "robbers"), + (UniCase("consectutive"), "consecutive"), + (UniCase("tranzistor"), "transistor"), + (UniCase("girlfrients"), "girlfriends"), + (UniCase("dealershits"), "dealerships"), + (UniCase("juadaism"), "judaism"), + (UniCase("multyplayer"), "multiplayer"), + (UniCase("hotsport"), "hotspot"), + (UniCase("regeneratin"), "regeneration"), + (UniCase("accommadating"), "accommodating"), + (UniCase("inkompatible"), "incompatible"), + (UniCase("perstige"), "prestige"), + (UniCase("westbrok"), "westbrook"), + (UniCase("disucssing"), "discussing"), + (UniCase("unsurprizing"), "unsurprising"), + (UniCase("abymsal"), "abysmal"), + (UniCase("distintcly"), "distinctly"), + (UniCase("gratuitious"), "gratuitous"), + (UniCase("spontaneosly"), "spontaneously"), + (UniCase("besitality"), "bestiality"), + (UniCase("ethincities"), "ethnicities"), + (UniCase("neruons"), "neurons"), + (UniCase("translatron"), "translation"), + (UniCase("indigeneous"), "indigenous"), + (UniCase("sucesfully"), "successfully"), + (UniCase("organziation"), "organization"), + (UniCase("paladinlst"), "paladins"), + (UniCase("conservitave"), "conservatives"), + (UniCase("extraodrinarily"), "extraordinarily"), + (UniCase("hosptial"), "hospital"), + (UniCase("comparse"), "compares"), + (UniCase("agnostisicm"), "agnosticism"), + (UniCase("liesure"), "leisure"), + (UniCase("cooldows"), "cooldowns"), + (UniCase("multiplays"), "multiply"), + (UniCase("substante"), "substantive"), + (UniCase("inexperiencable"), "inexperience"), + (UniCase("sensationality"), "sensationalist"), + (UniCase("consideribly"), "considerably"), + (UniCase("evaluatiing"), "evaluating"), + (UniCase("superiorest"), "superiors"), + (UniCase("disrecpecting"), "disrespecting"), + (UniCase("croporation"), "corporation"), + (UniCase("devide"), "divide"), + (UniCase("mortarts"), "mortars"), + (UniCase("modificacion"), "modification"), + (UniCase("dinosaurus"), "dinosaurs"), + (UniCase("stautes"), "statues"), + (UniCase("productin"), "productions"), + (UniCase("legnedaries"), "legendaries"), + (UniCase("excorciating"), "excruciating"), + (UniCase("deodorising"), "deodorizing"), + (UniCase("antagonises"), "antagonizes"), + (UniCase("legnthy"), "lengthy"), + (UniCase("liveprool"), "liverpool"), + (UniCase("euphora"), "euphoria"), + (UniCase("socialini"), "socializing"), + (UniCase("camperas"), "campers"), + (UniCase("dramatising"), "dramatizing"), + (UniCase("proselytised"), "proselytized"), + (UniCase("homogenising"), "homogenizing"), + (UniCase("rehabilitacion"), "rehabilitation"), + (UniCase("depciting"), "depicting"), + (UniCase("verablly"), "verbally"), + (UniCase("disconnectus"), "disconnects"), + (UniCase("constituem"), "constitute"), + (UniCase("hvea"), "have"), + (UniCase("subjectivety"), "subjectively"), + (UniCase("fimilies"), "families"), + (UniCase("decoratin"), "decorations"), + (UniCase("desinger"), "designer"), + (UniCase("oppresso"), "oppression"), + (UniCase("australiaan"), "australians"), + (UniCase("incrementas"), "increments"), + (UniCase("actauly"), "actualy"), + (UniCase("blashpemy"), "blasphemy"), + (UniCase("militat"), "militant"), + (UniCase("ingocnito"), "incognito"), + (UniCase("appropriatly"), "appropriately"), + (UniCase("zelaots"), "zealots"), + (UniCase("agin"), "again"), + (UniCase("novermber"), "november"), + (UniCase("agreemnt"), "agreement"), + (UniCase("capitlaist"), "capitalist"), + (UniCase("baulks"), "balks"), + (UniCase("frustradet"), "frustrates"), + (UniCase("randomus"), "randoms"), + (UniCase("noncombatents"), "noncombatants"), + (UniCase("implimentation"), "implementation"), + (UniCase("juggernath"), "juggernaut"), + (UniCase("reisntall"), "reinstall"), + (UniCase("lesiure"), "leisure"), + (UniCase("thn"), "then"), + (UniCase("discogrpahy"), "discography"), + (UniCase("legitemacy"), "legitimacy"), + (UniCase("skillshits"), "skillshots"), + (UniCase("advsiors"), "advisors"), + (UniCase("regresas"), "regress"), + (UniCase("acknowlegdement"), "acknowledgement"), + (UniCase("disrespecful"), "disrespectful"), + (UniCase("espression"), "espresso"), + (UniCase("mobiliy"), "mobility"), + (UniCase("unsuprizingly"), "unsurprisingly"), + (UniCase("deomcratic"), "democratic"), + (UniCase("realitvely"), "relatively"), + (UniCase("therepists"), "therapists"), + (UniCase("unplayeble"), "unplayable"), + (UniCase("descendenta"), "descendants"), + (UniCase("sendetary"), "sedentary"), + (UniCase("concepta"), "conceptual"), + (UniCase("discalimer"), "disclaimer"), + (UniCase("ingorance"), "ignorance"), + (UniCase("proceding"), "proceeding"), + (UniCase("transylvannia"), "transylvania"), + (UniCase("coorperations"), "corporations"), + (UniCase("eurpean"), "european"), + (UniCase("thourogh"), "thorough"), + (UniCase("hieroglph"), "hieroglyph"), + (UniCase("miscommunicaiton"), "miscommunication"), + (UniCase("approxiamtely"), "approximately"), + (UniCase("aboslute"), "absolute"), + (UniCase("contempate"), "contemplate"), + (UniCase("mathematitians"), "mathematicians"), + (UniCase("guitards"), "guitars"), + (UniCase("chromisomes"), "chromosomes"), + (UniCase("conduict"), "conduit"), + (UniCase("impossbily"), "impossibly"), + (UniCase("suspendeds"), "suspense"), + (UniCase("reactiony"), "reactionary"), + (UniCase("transplate"), "transplant"), + (UniCase("reconisder"), "reconsider"), + (UniCase("vigeur"), "vigueur"), + (UniCase("innvoate"), "innovate"), + (UniCase("ungodley"), "ungodly"), + (UniCase("transferes"), "transfers"), + (UniCase("somehtin"), "somethin"), + (UniCase("pennsyvlania"), "pennsylvania"), + (UniCase("htey"), "they"), + (UniCase("somethigns"), "somethings"), + (UniCase("figurativelly"), "figuratively"), + (UniCase("distraktion"), "distraction"), + (UniCase("transfromed"), "transformed"), + (UniCase("substential"), "substantial"), + (UniCase("heterosexal"), "heterosexual"), + (UniCase("receptionst"), "receptionist"), + (UniCase("triator"), "traitor"), + (UniCase("abosrbing"), "absorbing"), + (UniCase("horriblly"), "horribly"), + (UniCase("camoflage"), "camouflage"), + (UniCase("unbeatbale"), "unbeatable"), + (UniCase("multipalyer"), "multiplayer"), + (UniCase("repuglican"), "republican"), + (UniCase("artefact"), "artifact"), + (UniCase("orgnaised"), "organised"), + (UniCase("phenomonon"), "phenomenon"), + (UniCase("recreativo"), "recreation"), + (UniCase("fruitsations"), "frustrations"), + (UniCase("mexcian"), "mexican"), + (UniCase("revelaitons"), "revelations"), + (UniCase("awesomey"), "awesomely"), + (UniCase("dimensionsal"), "dimensional"), + (UniCase("consentrate"), "concentrate"), + (UniCase("interveiwing"), "interviewing"), + (UniCase("catistrophic"), "catastrophic"), + (UniCase("historietas"), "histories"), + (UniCase("plansewalker"), "planeswalker"), + (UniCase("patronisingly"), "patronizingly"), + (UniCase("videogaems"), "videogames"), + (UniCase("progressieve"), "progressive"), + (UniCase("wonderlad"), "wonderland"), + (UniCase("hitboxs"), "hitboxes"), + (UniCase("resourse"), "resources"), + (UniCase("singulariy"), "singularity"), + (UniCase("momentarely"), "momentarily"), + (UniCase("narcisscism"), "narcissism"), + (UniCase("hyphotesis"), "hypothesis"), + (UniCase("destractions"), "distractions"), + (UniCase("standardisation"), "standardization"), + (UniCase("prostitite"), "prostitute"), + (UniCase("transitionable"), "transitional"), + (UniCase("tournemants"), "tournaments"), + (UniCase("despides"), "despised"), + (UniCase("personalitites"), "personalities"), + (UniCase("goign"), "going"), + (UniCase("individualty"), "individuality"), + (UniCase("bureaucratische"), "bureaucratic"), + (UniCase("expoldes"), "explodes"), + (UniCase("militarising"), "militarizing"), + (UniCase("macaronni"), "macaroni"), + (UniCase("stregnth"), "strength"), + (UniCase("understsand"), "understands"), + (UniCase("contributie"), "contribute"), + (UniCase("diversed"), "diverse"), + (UniCase("transitionned"), "transitioned"), + (UniCase("expodition"), "exposition"), + (UniCase("editores"), "editors"), + (UniCase("logisticly"), "logistical"), + (UniCase("hardwoord"), "hardwood"), + (UniCase("sasketchewan"), "saskatchewan"), + (UniCase("settins"), "settings"), + (UniCase("stranget"), "strangest"), + (UniCase("corralation"), "correlation"), + (UniCase("ecomonic"), "economic"), + (UniCase("recogize"), "recognize"), + (UniCase("representerad"), "represented"), + (UniCase("vietnameese"), "vietnamese"), + (UniCase("pericings"), "piercings"), + (UniCase("combatans"), "combatants"), + (UniCase("maybellibe"), "maybelline"), + (UniCase("sociologia"), "sociological"), + (UniCase("overemphasise"), "overemphasize"), + (UniCase("miscelaneous"), "miscellaneous"), + (UniCase("deodorised"), "deodorized"), + (UniCase("misundersatnding"), "misunderstandings"), + (UniCase("exerpt"), "excerpt"), + (UniCase("conceide"), "conceived"), + (UniCase("unemplyoment"), "unemployment"), + (UniCase("equivelant"), "equivalent"), + (UniCase("insignificunt"), "insignificant"), + (UniCase("possestions"), "possessions"), + (UniCase("atittude"), "attitude"), + (UniCase("philadelhpia"), "philadelphia"), + (UniCase("glithcy"), "glitchy"), + (UniCase("avalance"), "avalanche"), + (UniCase("microcender"), "microcenter"), + (UniCase("registrato"), "registration"), + (UniCase("reviere"), "reviewer"), + (UniCase("gracefull"), "graceful"), + (UniCase("electromangetic"), "electromagnetic"), + (UniCase("jsut"), "just"), + (UniCase("abilitiy"), "ability"), + (UniCase("reisntalling"), "reinstalling"), + (UniCase("immensley"), "immensely"), + (UniCase("abonimation"), "abomination"), + (UniCase("collectie"), "collective"), + (UniCase("trasnforming"), "transforming"), + (UniCase("metropilis"), "metropolis"), + (UniCase("celverly"), "cleverly"), + (UniCase("sketchysex"), "sketches"), + (UniCase("allinace"), "alliance"), + (UniCase("helicopers"), "helicopters"), + (UniCase("definitley"), "definitely"), + (UniCase("maintioned"), "mentioned"), + (UniCase("everytiem"), "everytime"), + (UniCase("caracterized"), "characterized"), + (UniCase("unintentionaly"), "unintentionally"), + (UniCase("helluvva"), "helluva"), + (UniCase("dominaters"), "dominates"), + (UniCase("participent"), "participant"), + (UniCase("uncomfortabley"), "uncomfortably"), + (UniCase("transtator"), "translator"), + (UniCase("pennyslvania"), "pennsylvania"), + (UniCase("disapointing"), "disappointing"), + (UniCase("appetisingly"), "appetizingly"), + (UniCase("regrigerator"), "refrigerator"), + (UniCase("achive"), "achieve"), + (UniCase("modifieres"), "modifiers"), + (UniCase("engagment"), "engagement"), + (UniCase("adventue"), "adventures"), + (UniCase("startlxde"), "startled"), + (UniCase("universites"), "universities"), + (UniCase("miscarriege"), "miscarriage"), + (UniCase("roundabount"), "roundabout"), + (UniCase("audactiy"), "audacity"), + (UniCase("albiet"), "albeit"), + (UniCase("spanwed"), "spawned"), + (UniCase("favoruite"), "favourite"), + (UniCase("disatrous"), "disastrous"), + (UniCase("shakespare"), "shakespeare"), + (UniCase("valetta"), "valletta"), + (UniCase("conquerer"), "conqueror"), + (UniCase("mutliverse"), "multiverse"), + (UniCase("listenes"), "listens"), + (UniCase("protestes"), "protests"), + (UniCase("abstinince"), "abstinence"), + (UniCase("circunstance"), "circumstance"), + (UniCase("consistance"), "consistency"), + (UniCase("veitnamese"), "vietnamese"), + (UniCase("unexpextedly"), "unexpectedly"), + (UniCase("astronautlis"), "astronauts"), + (UniCase("landscae"), "landscapes"), + (UniCase("depresse"), "depressive"), + (UniCase("boyfriens"), "boyfriends"), + (UniCase("depcition"), "depiction"), + (UniCase("shwashank"), "shawshank"), + (UniCase("sryians"), "syrians"), + (UniCase("suasages"), "sausages"), + (UniCase("yoesmite"), "yosemite"), + (UniCase("crhistmas"), "christmas"), + (UniCase("braverly"), "bravery"), + (UniCase("swnasea"), "swansea"), + (UniCase("autherization"), "authorization"), + (UniCase("inconcistency"), "inconsistency"), + (UniCase("sketchey"), "sketchy"), + (UniCase("balconey"), "balcony"), + (UniCase("popularised"), "popularized"), + (UniCase("villify"), "vilify"), + (UniCase("flexibily"), "flexibility"), + (UniCase("inexperiance"), "inexperience"), + (UniCase("repressivo"), "repression"), + (UniCase("competitevly"), "competitively"), + (UniCase("salughtered"), "slaughtered"), + (UniCase("exagerrates"), "exaggerates"), + (UniCase("brittish"), "british"), + (UniCase("controles"), "controls"), + (UniCase("enclousre"), "enclosure"), + (UniCase("scholarley"), "scholarly"), + (UniCase("deadlifters"), "deadlifts"), + (UniCase("derviative"), "derivative"), + (UniCase("indicats"), "indicators"), + (UniCase("abudcted"), "abducted"), + (UniCase("compnay"), "company"), + (UniCase("tighetning"), "tightening"), + (UniCase("proportinal"), "proportional"), + (UniCase("distractes"), "distracts"), + (UniCase("honours"), "honors"), + (UniCase("magnetised"), "magnetized"), + (UniCase("incrementers"), "increments"), + (UniCase("refleciton"), "reflections"), + (UniCase("indistuingishable"), "indistinguishable"), + (UniCase("circumstanes"), "circumstance"), + (UniCase("startsup"), "startups"), + (UniCase("purpetuating"), "perpetuating"), + (UniCase("transgendred"), "transgendered"), + (UniCase("meanins"), "meanings"), + (UniCase("interferring"), "interfering"), + (UniCase("adventurs"), "adventures"), + (UniCase("frinedzoned"), "friendzoned"), + (UniCase("buriser"), "bruiser"), + (UniCase("exlcudes"), "excludes"), + (UniCase("responsibliy"), "responsibly"), + (UniCase("deinitalize"), "deinitialize"), + (UniCase("inappropriae"), "inappropriately"), + (UniCase("degarded"), "degraded"), + (UniCase("propultion"), "propulsion"), + (UniCase("invulenrable"), "invulnerable"), + (UniCase("micrometres"), "micrometers"), + (UniCase("recliam"), "reclaim"), + (UniCase("destructo"), "destruction"), + (UniCase("penguinos"), "penguins"), + (UniCase("haemorrhoids"), "hemorrhoids"), + (UniCase("sarcasam"), "sarcasm"), + (UniCase("hospitales"), "hospitals"), + (UniCase("constituion"), "constitution"), + (UniCase("preposterus"), "preposterous"), + (UniCase("atributes"), "attributes"), + (UniCase("lockscreeen"), "lockscreen"), + (UniCase("certificaat"), "certificate"), + (UniCase("palystyle"), "playstyle"), + (UniCase("firefigter"), "firefighter"), + (UniCase("memorises"), "memorizes"), + (UniCase("familiare"), "familiarize"), + (UniCase("bloodbore"), "bloodborne"), + (UniCase("depositis"), "deposits"), + (UniCase("chromesome"), "chromosome"), + (UniCase("maraduer"), "marauder"), + (UniCase("constititional"), "constitutional"), + (UniCase("brunettte"), "brunette"), + (UniCase("supervisers"), "supervisors"), + (UniCase("provocotive"), "provocative"), + (UniCase("sustainabily"), "sustainability"), + (UniCase("referandum"), "referendum"), + (UniCase("ostensably"), "ostensibly"), + (UniCase("eachotehr"), "eachother"), + (UniCase("journolists"), "journalists"), + (UniCase("intellectualy"), "intellectually"), + (UniCase("unnessecary"), "unnecessary"), + (UniCase("supresses"), "suppresses"), + (UniCase("konservatives"), "conservatives"), + (UniCase("truamatized"), "traumatized"), + (UniCase("ariflow"), "airflow"), + (UniCase("tribunaal"), "tribunal"), + (UniCase("overshaddowed"), "overshadowed"), + (UniCase("anglicising"), "anglicizing"), + (UniCase("counterfiets"), "counterfeit"), + (UniCase("proficiant"), "proficient"), + (UniCase("architechturally"), "architecturally"), + (UniCase("thoeretically"), "theoretically"), + (UniCase("pathalogical"), "pathological"), + (UniCase("sticthed"), "stitched"), + (UniCase("candiate"), "candidate"), + (UniCase("collitions"), "collisions"), + (UniCase("collaborare"), "collaborate"), + (UniCase("prosocution"), "prosecution"), + (UniCase("photoshooped"), "photoshopped"), + (UniCase("impartirla"), "impartial"), + (UniCase("prasies"), "praises"), + (UniCase("inisghts"), "insights"), + (UniCase("aboslutely"), "absolutely"), + (UniCase("commuincation"), "communications"), + (UniCase("fantaic"), "fanatic"), + (UniCase("ofcoruse"), "ofcourse"), + (UniCase("detrimential"), "detrimental"), + (UniCase("fortunantly"), "fortunately"), + (UniCase("cabines"), "cabinets"), + (UniCase("sensationail"), "sensational"), + (UniCase("comparemos"), "compares"), + (UniCase("htikn"), "think"), + (UniCase("offspirng"), "offspring"), + (UniCase("magizine"), "magazine"), + (UniCase("valentein"), "valentine"), + (UniCase("contemporay"), "contemporary"), + (UniCase("evengalical"), "evangelical"), + (UniCase("emabrgo"), "embargo"), + (UniCase("lighthosue"), "lighthouse"), + (UniCase("relentlessely"), "relentlessly"), + (UniCase("discrimante"), "discriminate"), + (UniCase("comparisions"), "comparisons"), + (UniCase("commentery"), "commentary"), + (UniCase("plasticas"), "plastics"), + (UniCase("homogenises"), "homogenizes"), + (UniCase("testicels"), "testicles"), + (UniCase("unneccessary"), "unnecessary"), + (UniCase("succeeed"), "succeed"), + (UniCase("residentual"), "residential"), + (UniCase("preventivo"), "prevention"), + (UniCase("nativey"), "natively"), + (UniCase("guerrillera"), "guerrilla"), + (UniCase("handwritng"), "handwriting"), + (UniCase("somethis"), "somethings"), + (UniCase("trasnplant"), "transplant"), + (UniCase("intergity"), "integrity"), + (UniCase("annouced"), "announced"), + (UniCase("authoritiers"), "authorities"), + (UniCase("destinaiton"), "destinations"), + (UniCase("apocalypic"), "apocalyptic"), + (UniCase("interpretato"), "interpretation"), + (UniCase("dumbbels"), "dumbbells"), + (UniCase("ibuprofein"), "ibuprofen"), + (UniCase("grenaders"), "grenades"), + (UniCase("paranomral"), "paranormal"), + (UniCase("scarmbling"), "scrambling"), + (UniCase("claimes"), "claims"), + (UniCase("synchronise"), "synchronize"), + (UniCase("apologes"), "apologise"), + (UniCase("backhacking"), "backpacking"), + (UniCase("abominaton"), "abomination"), + (UniCase("documentaires"), "documentaries"), + (UniCase("magainzes"), "magazines"), + (UniCase("advanteges"), "advantages"), + (UniCase("coridal"), "cordial"), + (UniCase("resistanse"), "resistances"), + (UniCase("bibilcal"), "biblical"), + (UniCase("dehydraded"), "dehydrated"), + (UniCase("relegetion"), "relegation"), + (UniCase("lasanga"), "lasagna"), + (UniCase("recgonised"), "recognised"), + (UniCase("discountined"), "discontinued"), + (UniCase("propechy"), "prophecy"), + (UniCase("figuartively"), "figuratively"), + (UniCase("repuslive"), "repulsive"), + (UniCase("interpretarea"), "interpreter"), + (UniCase("solemnises"), "solemnizes"), + (UniCase("unsubscirbe"), "unsubscribe"), + (UniCase("humerous"), "humorous"), + (UniCase("egotisticle"), "egotistical"), + (UniCase("manufacterer"), "manufacturer"), + (UniCase("compuslory"), "compulsory"), + (UniCase("monteral"), "montreal"), + (UniCase("nostrills"), "nostrils"), + (UniCase("matrial"), "martial"), + (UniCase("enthusiam"), "enthusiasm"), + (UniCase("organisere"), "organizers"), + (UniCase("sacrifising"), "sacrificing"), + (UniCase("disregaring"), "disregarding"), + (UniCase("fossilise"), "fossilize"), + (UniCase("modualr"), "modular"), + (UniCase("dribbel"), "dribble"), + (UniCase("frutcose"), "fructose"), + (UniCase("extremeley"), "extremely"), + (UniCase("downlaod"), "download"), + (UniCase("heigthened"), "heightened"), + (UniCase("chandlure"), "chandler"), + (UniCase("undermiming"), "undermining"), + (UniCase("scropion"), "scorpion"), + (UniCase("butthoe"), "butthole"), + (UniCase("corperation"), "corporation"), + (UniCase("consumate"), "consummate"), + (UniCase("feisable"), "feasible"), + (UniCase("forecfully"), "forcefully"), + (UniCase("mississipis"), "mississippi"), + (UniCase("judgementsl"), "judgemental"), + (UniCase("reccomend"), "recommend"), + (UniCase("considerabe"), "considerate"), + (UniCase("begginer"), "beginner"), + (UniCase("bengalas"), "bengals"), + (UniCase("cutscenses"), "cutscene"), + (UniCase("conanical"), "canonical"), + (UniCase("colleage"), "colleagues"), + (UniCase("permisisons"), "permissions"), + (UniCase("inspectons"), "inspections"), + (UniCase("collest"), "collects"), + (UniCase("canonising"), "canonizing"), + (UniCase("formalised"), "formalized"), + (UniCase("fringeworthy"), "cringeworthy"), + (UniCase("technicallity"), "technically"), + (UniCase("neturon"), "neutron"), + (UniCase("reproducive"), "reproductive"), + (UniCase("interstae"), "interstate"), + (UniCase("catalogue"), "catalog"), + (UniCase("scarmble"), "scramble"), + (UniCase("motivationnal"), "motivational"), + (UniCase("maragret"), "margaret"), + (UniCase("desillusioned"), "disillusioned"), + (UniCase("permier"), "premier"), + (UniCase("fundamentas"), "fundamentals"), + (UniCase("heroicas"), "heroics"), + (UniCase("forsekan"), "forsaken"), + (UniCase("utilise"), "utilize"), + (UniCase("govermetn"), "goverment"), + (UniCase("theri"), "their"), + (UniCase("circumcisied"), "circumcised"), + (UniCase("compulsery"), "compulsory"), + (UniCase("subredditors"), "subreddits"), + (UniCase("autoritharian"), "authoritarian"), + (UniCase("confrims"), "confirms"), + (UniCase("dyspohria"), "dysphoria"), + (UniCase("imprefections"), "imperfections"), + (UniCase("simultanious"), "simultaneous"), + (UniCase("proprety"), "property"), + (UniCase("propriatery"), "proprietary"), + (UniCase("fortuante"), "fortunate"), + (UniCase("ellitpical"), "elliptical"), + (UniCase("precurser"), "precursor"), + (UniCase("suppresions"), "suppression"), + (UniCase("hellifre"), "hellfire"), + (UniCase("greandes"), "grenades"), + (UniCase("pruchases"), "purchases"), + (UniCase("modifires"), "modifiers"), + (UniCase("monetizare"), "monetize"), + (UniCase("braodcast"), "broadcast"), + (UniCase("nautral"), "natural"), + (UniCase("mathemetical"), "mathematical"), + (UniCase("scandinavica"), "scandinavian"), + (UniCase("maximini"), "maximizing"), + (UniCase("repressin"), "repression"), + (UniCase("assimialted"), "assimilate"), + (UniCase("philospohy"), "philosophy"), + (UniCase("konfirmation"), "confirmation"), + (UniCase("resurecting"), "resurrecting"), + (UniCase("solatary"), "solitary"), + (UniCase("organizors"), "organizers"), + (UniCase("motherbaords"), "motherboards"), + (UniCase("apologisms"), "apologists"), + (UniCase("grammarically"), "grammatically"), + (UniCase("xenophibic"), "xenophobic"), + (UniCase("disrepresentation"), "misrepresentation"), + (UniCase("travellodge"), "travelled"), + (UniCase("circunstances"), "circumstances"), + (UniCase("nominatin"), "nomination"), + (UniCase("fictionalise"), "fictionalize"), + (UniCase("interace"), "interacted"), + (UniCase("aqaurium"), "aquarium"), + (UniCase("inevitabily"), "inevitably"), + (UniCase("mandarijn"), "mandarin"), + (UniCase("fibres"), "fibers"), + (UniCase("speculaties"), "speculative"), + (UniCase("definitivly"), "definitively"), + (UniCase("influenting"), "influencing"), + (UniCase("prostethics"), "prosthetic"), + (UniCase("dehumanisation"), "dehumanization"), + (UniCase("dyspotian"), "dystopian"), + (UniCase("blaspehmy"), "blasphemy"), + (UniCase("emphisizes"), "emphasizes"), + (UniCase("doublelfit"), "doublelift"), + (UniCase("annoynace"), "annoyance"), + (UniCase("electromagnectic"), "electromagnetic"), + (UniCase("parliement"), "parliament"), + (UniCase("provinicial"), "provincial"), + (UniCase("relient"), "reliant"), + (UniCase("accomondate"), "accommodate"), + (UniCase("underrater"), "undertaker"), + (UniCase("htere"), "there"), + (UniCase("concervatives"), "conservatives"), + (UniCase("metropoliton"), "metropolitan"), + (UniCase("algorithim"), "algorithm"), + (UniCase("harrasments"), "harassments"), + (UniCase("econimical"), "economical"), + (UniCase("acknolwedgement"), "acknowledgement"), + (UniCase("complience"), "compliance"), + (UniCase("speecheasy"), "speeches"), + (UniCase("tablepsoons"), "tablespoons"), + (UniCase("flucutations"), "fluctuations"), + (UniCase("invairably"), "invariably"), + (UniCase("symapthetic"), "sympathetic"), + (UniCase("dimensionals"), "dimensions"), + (UniCase("unknowingy"), "unknowingly"), + (UniCase("firends"), "friends"), + (UniCase("tensiones"), "tensions"), + (UniCase("exersice"), "exercise"), + (UniCase("nigthmare"), "nightmare"), + (UniCase("embarasssing"), "embarassing"), + (UniCase("tounge"), "tongue"), + (UniCase("degenererat"), "degenerate"), + (UniCase("guardain"), "guardian"), + (UniCase("affirmitive"), "affirmative"), + (UniCase("motorcyles"), "motorcycles"), + (UniCase("deodorises"), "deodorizes"), + (UniCase("presention"), "presenting"), + (UniCase("wonderfuly"), "wonderfully"), + (UniCase("intolerent"), "intolerant"), + (UniCase("terorrist"), "terrorist"), + (UniCase("bigorty"), "bigotry"), + (UniCase("organsiations"), "organisations"), + (UniCase("attracties"), "attracts"), + (UniCase("scooterers"), "scooters"), + (UniCase("envrionments"), "environments"), + (UniCase("plehtora"), "plethora"), + (UniCase("prediciton"), "prediction"), + (UniCase("valentians"), "valentines"), + (UniCase("dispensarios"), "dispensaries"), + (UniCase("androides"), "androids"), + (UniCase("commentare"), "commenter"), + (UniCase("anniversairy"), "anniversary"), + (UniCase("epaulettes"), "epaulets"), + (UniCase("poverful"), "powerful"), + (UniCase("transportor"), "transporter"), + (UniCase("deisgners"), "designers"), + (UniCase("consisteny"), "consistency"), + (UniCase("inflatie"), "inflate"), + (UniCase("catalcysm"), "cataclysm"), + (UniCase("apocolapse"), "apocalypse"), + (UniCase("perpendiculaire"), "perpendicular"), + (UniCase("transperency"), "transparency"), + (UniCase("velantine"), "valentine"), + (UniCase("ellipticle"), "elliptical"), + (UniCase("techncially"), "technically"), + (UniCase("harrassing"), "harassing"), + (UniCase("playstye"), "playstyle"), + (UniCase("unsuccesfully"), "unsuccessfully"), + (UniCase("christin"), "christian"), + (UniCase("unbannd"), "unbanned"), + (UniCase("transistior"), "transistor"), + (UniCase("mediciad"), "medicaid"), + (UniCase("adpaters"), "adapters"), + (UniCase("transofrmed"), "transformed"), + (UniCase("positionned"), "positioned"), + (UniCase("projectlie"), "projectiles"), + (UniCase("enthusiant"), "enthusiast"), + (UniCase("earthquakers"), "earthquakes"), + (UniCase("florecen"), "florence"), + (UniCase("versoin"), "version"), + (UniCase("prediccion"), "prediction"), + (UniCase("umbrellla"), "umbrella"), + (UniCase("bootlaoder"), "bootloader"), + (UniCase("constituant"), "constituent"), + (UniCase("abandond"), "abandoned"), + (UniCase("conclusiones"), "conclusions"), + (UniCase("excludeds"), "excludes"), + (UniCase("perheaps"), "perhaps"), + (UniCase("meoldies"), "melodies"), + (UniCase("completi"), "complexity"), + (UniCase("noticably"), "noticeably"), + (UniCase("explotied"), "exploited"), + (UniCase("denominador"), "denominator"), + (UniCase("appreciationg"), "appreciating"), + (UniCase("viscreal"), "visceral"), + (UniCase("exlposion"), "explosion"), + (UniCase("initaling"), "initialing"), + (UniCase("transfarring"), "transferring"), + (UniCase("worshipping"), "worshiping"), + (UniCase("intermediare"), "intermediate"), + (UniCase("applicabile"), "applicable"), + (UniCase("paediatricians"), "pediatricians"), + (UniCase("initalization"), "initialization"), + (UniCase("chasr"), "chaser"), + (UniCase("mastrubated"), "masturbated"), + (UniCase("confidenty"), "confidently"), + (UniCase("cauterises"), "cauterizes"), + (UniCase("progessed"), "progressed"), + (UniCase("perpertators"), "perpetrators"), + (UniCase("squirrells"), "squirrels"), + (UniCase("reinstallng"), "reinstalling"), + (UniCase("plataeu"), "plateau"), + (UniCase("vapours"), "vapors"), + (UniCase("cliffbanger"), "cliffhanger"), + (UniCase("photogrpahers"), "photographers"), + (UniCase("baptises"), "baptizes"), + (UniCase("economising"), "economizing"), + (UniCase("aggreement"), "agreement"), + (UniCase("southren"), "southern"), + (UniCase("achieveble"), "achievable"), + (UniCase("overclockd"), "overclocked"), + (UniCase("asign"), "assign"), + (UniCase("jugnling"), "jungling"), + (UniCase("specificatons"), "specifications"), + (UniCase("transfromers"), "transformers"), + (UniCase("thoruim"), "thorium"), + (UniCase("polishees"), "polishes"), + (UniCase("sanctionning"), "sanctioning"), + (UniCase("placeheld"), "placeholder"), + (UniCase("wranlger"), "wrangler"), + (UniCase("championchip"), "championship"), + (UniCase("ancedotal"), "anecdotal"), + (UniCase("swansoon"), "swanson"), + (UniCase("internettes"), "internets"), + (UniCase("statistisk"), "statistics"), + (UniCase("adolsecent"), "adolescent"), + (UniCase("compeditors"), "competitors"), + (UniCase("indefinitelly"), "indefinitely"), + (UniCase("denominaron"), "denominator"), + (UniCase("epiphanny"), "epiphany"), + (UniCase("geogrpahy"), "geography"), + (UniCase("informtion"), "information"), + (UniCase("qtuie"), "quite"), + (UniCase("partiots"), "patriots"), + (UniCase("displayes"), "displays"), + (UniCase("connatations"), "connotations"), + (UniCase("privatisations"), "privatizations"), + (UniCase("responsabile"), "responsible"), + (UniCase("reacing"), "reaching"), + (UniCase("cricumference"), "circumference"), + (UniCase("communiss"), "communists"), + (UniCase("inconsiderant"), "inconsiderate"), + (UniCase("investegating"), "investigating"), + (UniCase("harmonisation"), "harmonization"), + (UniCase("improvision"), "improvisation"), + (UniCase("comparetively"), "comparatively"), + (UniCase("disproportiantely"), "disproportionately"), + (UniCase("slaverly"), "slavery"), + (UniCase("misfourtunes"), "misfortunes"), + (UniCase("poportional"), "proportional"), + (UniCase("subscriptin"), "subscriptions"), + (UniCase("negotiative"), "negotiate"), + (UniCase("transgengered"), "transgendered"), + (UniCase("witnissing"), "witnessing"), + (UniCase("averageed"), "averaged"), + (UniCase("productie"), "productive"), + (UniCase("doubleleft"), "doublelift"), + (UniCase("psychopathische"), "psychopathic"), + (UniCase("emberrassment"), "embarrassment"), + (UniCase("prinicples"), "principles"), + (UniCase("otehr"), "other"), + (UniCase("templers"), "temples"), + (UniCase("defintily"), "definitly"), + (UniCase("antivuris"), "antivirus"), + (UniCase("materialisation"), "materialization"), + (UniCase("dinosaus"), "dinosaurs"), + (UniCase("premilinary"), "preliminary"), + (UniCase("icelandinc"), "icelandic"), + (UniCase("battlefont"), "battlefront"), + (UniCase("comemmorates"), "commemorates"), + (UniCase("requeriments"), "requirements"), + (UniCase("girlling"), "grilling"), + (UniCase("torunaments"), "tournaments"), + (UniCase("antidepressents"), "antidepressants"), + (UniCase("florene"), "florence"), + (UniCase("resistend"), "resisted"), + (UniCase("mexicanus"), "mexicans"), + (UniCase("fasicsts"), "fascists"), + (UniCase("substituded"), "substituted"), + (UniCase("invesitgations"), "investigations"), + (UniCase("pscyhiatrists"), "psychiatrists"), + (UniCase("celcius"), "celsius"), + (UniCase("habeus"), "habeas"), + (UniCase("survivours"), "survivor"), + (UniCase("gauntelts"), "gauntlets"), + (UniCase("fertilising"), "fertilizing"), + (UniCase("speciallize"), "specialize"), + (UniCase("favourties"), "favourites"), + (UniCase("neckbead"), "neckbeard"), + (UniCase("disputerad"), "disputed"), + (UniCase("extrapoloate"), "extrapolate"), + (UniCase("emapthetic"), "empathetic"), + (UniCase("consumated"), "consummated"), + (UniCase("destorying"), "destroying"), + (UniCase("assemby"), "assembly"), + (UniCase("potrait"), "portrait"), + (UniCase("thermomether"), "thermometer"), + (UniCase("corrispond"), "correspond"), + (UniCase("golakeeper"), "goalkeeper"), + (UniCase("specializaton"), "specialization"), + (UniCase("newcaslte"), "newcastle"), + (UniCase("constructie"), "constructive"), + (UniCase("parntership"), "partnership"), + (UniCase("explods"), "explodes"), + (UniCase("compelting"), "completing"), + (UniCase("decensitized"), "desensitized"), + (UniCase("persuing"), "pursuing"), + (UniCase("overkapping"), "overlapping"), + (UniCase("derogetory"), "derogatory"), + (UniCase("undergorund"), "underground"), + (UniCase("sweerheart"), "sweetheart"), + (UniCase("ackumulation"), "accumulation"), + (UniCase("depcits"), "depicts"), + (UniCase("contritutions"), "contributions"), + (UniCase("correktness"), "correctness"), + (UniCase("descripters"), "descriptors"), + (UniCase("wawrick"), "warwick"), + (UniCase("avaliability"), "availability"), + (UniCase("invalidare"), "invalidate"), + (UniCase("trasnformer"), "transformer"), + (UniCase("yaerly"), "yearly"), + (UniCase("atributed"), "attributed"), + (UniCase("interpretter"), "interpreter"), + (UniCase("seing"), "seeing"), + (UniCase("orchestraed"), "orchestrated"), + (UniCase("crutchers"), "crutches"), + (UniCase("alchoholic"), "alcoholic"), + (UniCase("predujice"), "prejudice"), + (UniCase("untrianed"), "untrained"), + (UniCase("assemblie"), "assemble"), + (UniCase("sacarmento"), "sacramento"), + (UniCase("whitleist"), "whitelist"), + (UniCase("comisions"), "commissions"), + (UniCase("airlfow"), "airflow"), + (UniCase("billborads"), "billboards"), + (UniCase("metaphoricly"), "metaphorical"), + (UniCase("activationg"), "activating"), + (UniCase("pacificts"), "pacifist"), + (UniCase("superficiel"), "superficial"), + (UniCase("ultamite"), "ultimate"), + (UniCase("undescore"), "underscore"), + (UniCase("supersticious"), "superstitious"), + (UniCase("inchoerent"), "incoherent"), + (UniCase("scientfic"), "scientific"), + (UniCase("ecomonics"), "economics"), + (UniCase("adderss"), "address"), + (UniCase("perfecxion"), "perfection"), + (UniCase("disciplince"), "disciplines"), + (UniCase("calssified"), "classified"), + (UniCase("uninitalised"), "uninitialised"), + (UniCase("uncomited"), "uncommitted"), + (UniCase("atribute"), "attribute"), + (UniCase("orgasmos"), "orgasms"), + (UniCase("yoghourts"), "yogurts"), + (UniCase("filcker"), "flicker"), + (UniCase("sobreity"), "sobriety"), + (UniCase("downtoking"), "downvoting"), + (UniCase("incriments"), "increments"), + (UniCase("chuckels"), "chuckles"), + (UniCase("midfieldes"), "midfielders"), + (UniCase("educacional"), "educational"), + (UniCase("custumizable"), "customizable"), + (UniCase("susbtantial"), "substantial"), + (UniCase("classicus"), "classics"), + (UniCase("lincolin"), "lincoln"), + (UniCase("scateboarding"), "skateboarding"), + (UniCase("installmant"), "installment"), + (UniCase("exectuion"), "execution"), + (UniCase("programable"), "programmable"), + (UniCase("trainwrek"), "trainwreck"), + (UniCase("proceeed"), "proceed"), + (UniCase("plabeswalker"), "planeswalker"), + (UniCase("contine"), "continue"), + (UniCase("muncipality"), "municipality"), + (UniCase("degoratory"), "derogatory"), + (UniCase("ehtnicities"), "ethnicities"), + (UniCase("unconsicously"), "unconsciously"), + (UniCase("replased"), "relapsed"), + (UniCase("multinationella"), "multinational"), + (UniCase("spindrel"), "spindle"), + (UniCase("privaleges"), "privileges"), + (UniCase("procrastinatin"), "procrastination"), + (UniCase("dischard"), "discharged"), + (UniCase("satellie"), "satellites"), + (UniCase("patterno"), "patterson"), + (UniCase("inintelligent"), "unintelligent"), + (UniCase("circumstnaces"), "circumstance"), + (UniCase("charactersitics"), "characteristics"), + (UniCase("reserrection"), "resurrection"), + (UniCase("tanturms"), "tantrums"), + (UniCase("inappropriet"), "inappropriately"), + (UniCase("sentencian"), "sentencing"), + (UniCase("chocoalte"), "chocolate"), + (UniCase("snorkelling"), "snorkeling"), + (UniCase("articluate"), "articulate"), + (UniCase("interferre"), "interfere"), + (UniCase("unsubstansiated"), "unsubstantiated"), + (UniCase("restorting"), "restarting"), + (UniCase("shaprness"), "sharpness"), + (UniCase("demograhpic"), "demographic"), + (UniCase("skecthy"), "sketchy"), + (UniCase("cranberrry"), "cranberry"), + (UniCase("greatfully"), "gratefully"), + (UniCase("wierd"), "weird"), + (UniCase("jamaina"), "jamaican"), + (UniCase("prostitues"), "prostitutes"), + (UniCase("picthforks"), "pitchforks"), + (UniCase("apperances"), "appearances"), + (UniCase("communicae"), "communicated"), + (UniCase("orangerd"), "orangered"), + (UniCase("responsibilitys"), "responsibilities"), + (UniCase("differente"), "difference"), + (UniCase("affectionatley"), "affectionate"), + (UniCase("philisophies"), "philosophies"), + (UniCase("goregous"), "gorgeous"), + (UniCase("cheetoos"), "cheetos"), + (UniCase("councidentally"), "coincidentally"), + (UniCase("compsers"), "compress"), + (UniCase("queires"), "queries"), + (UniCase("expendeture"), "expenditure"), + (UniCase("everset"), "everest"), + (UniCase("circlebs"), "circles"), + (UniCase("asteriod"), "asteroid"), + (UniCase("picthed"), "pitched"), + (UniCase("cerimony"), "ceremony"), + (UniCase("gropu"), "group"), + (UniCase("legendarios"), "legendaries"), + (UniCase("opponenets"), "opponent"), + (UniCase("surrenderred"), "surrendered"), + (UniCase("proposito"), "proposition"), + (UniCase("regenere"), "regenerate"), + (UniCase("regulatios"), "regulators"), + (UniCase("trianing"), "training"), + (UniCase("prestigeous"), "prestigious"), + (UniCase("reciepents"), "recipients"), + (UniCase("infideltiy"), "infidelity"), + (UniCase("underwager"), "underwater"), + (UniCase("confins"), "confines"), + (UniCase("koordination"), "coordination"), + (UniCase("laughablely"), "laughably"), + (UniCase("marlbes"), "marbles"), + (UniCase("essesital"), "essential"), + (UniCase("matieralism"), "materialism"), + (UniCase("expotition"), "exposition"), + (UniCase("marjority"), "majority"), + (UniCase("epicentres"), "epicenters"), + (UniCase("tsunmai"), "tsunami"), + (UniCase("breakthrouh"), "breakthrough"), + (UniCase("nullfiy"), "nullify"), + (UniCase("mainstreem"), "mainstream"), + (UniCase("manfuacturers"), "manufactures"), + (UniCase("suspicisons"), "suspicions"), + (UniCase("wiaters"), "waiters"), + (UniCase("inctroduced"), "introduced"), + (UniCase("dysfuncion"), "dysfunction"), + (UniCase("superstisious"), "superstitious"), + (UniCase("adreniline"), "adrenaline"), + (UniCase("denationalising"), "denationalizing"), + (UniCase("narcissistc"), "narcissistic"), + (UniCase("dismanteled"), "dismantled"), + (UniCase("choesive"), "cohesive"), + (UniCase("parliamenty"), "parliamentary"), + (UniCase("definaitly"), "definately"), + (UniCase("entirey"), "entirety"), + (UniCase("determanism"), "determinism"), + (UniCase("vulernability"), "vulnerability"), + (UniCase("statisticaly"), "statistically"), + (UniCase("multiverese"), "multiverse"), + (UniCase("skpetic"), "skeptic"), + (UniCase("shatterling"), "shattering"), + (UniCase("neutralises"), "neutralizes"), + (UniCase("unsuccesful"), "unsuccessful"), + (UniCase("motivet"), "motivate"), + (UniCase("comtemporary"), "contemporary"), + (UniCase("unbeleivable"), "unbelievable"), + (UniCase("gallaxies"), "galaxies"), + (UniCase("solutide"), "solitude"), + (UniCase("inquirey"), "inquiry"), + (UniCase("inflamation"), "inflammation"), + (UniCase("lesbianus"), "lesbians"), + (UniCase("indiviudally"), "individually"), + (UniCase("unrecognised"), "unrecognized"), + (UniCase("connectins"), "connects"), + (UniCase("respectivly"), "respectively"), + (UniCase("tallents"), "tallest"), + (UniCase("ostricized"), "ostracized"), + (UniCase("outpreforms"), "outperform"), + (UniCase("designato"), "designation"), + (UniCase("punsihes"), "punishes"), + (UniCase("deffensively"), "defensively"), + (UniCase("deprevation"), "deprivation"), + (UniCase("neigbour"), "neighbour"), + (UniCase("colourless"), "colorless"), + (UniCase("birmimgham"), "birmingham"), + (UniCase("blisteres"), "blisters"), + (UniCase("nauesous"), "nauseous"), + (UniCase("journalisim"), "journalism"), + (UniCase("magents"), "magnets"), + (UniCase("toubles"), "troubles"), + (UniCase("catapillars"), "caterpillars"), + (UniCase("imbalenced"), "imbalanced"), + (UniCase("professionalsim"), "professionalism"), + (UniCase("initialise"), "initialize"), + (UniCase("presentacion"), "presentation"), + (UniCase("mathematican"), "mathematician"), + (UniCase("negotiatiors"), "negotiations"), + (UniCase("accuarcy"), "accuracy"), + (UniCase("befirend"), "befriend"), + (UniCase("continenal"), "continental"), + (UniCase("performanse"), "performances"), + (UniCase("composistion"), "compositions"), + (UniCase("disscusion"), "discussion"), + (UniCase("archetecturally"), "architecturally"), + (UniCase("classifiy"), "classify"), + (UniCase("starlted"), "startled"), + (UniCase("medicaitons"), "medications"), + (UniCase("preivews"), "previews"), + (UniCase("overclok"), "overclock"), + (UniCase("warrent"), "warrant"), + (UniCase("unionisation"), "unionization"), + (UniCase("sympethize"), "sympathize"), + (UniCase("haemoglobin"), "hemoglobin"), + (UniCase("developmenet"), "developments"), + (UniCase("huminoid"), "humanoid"), + (UniCase("neutralised"), "neutralized"), + (UniCase("dammage"), "damage"), + (UniCase("cilivians"), "civilians"), + (UniCase("reqiuem"), "requiem"), + (UniCase("dissapoimted"), "dissapointed"), + (UniCase("sacrasm"), "sarcasm"), + (UniCase("valentiens"), "valentines"), + (UniCase("heartsthone"), "hearthstone"), + (UniCase("fulfil"), "fulfill"), + (UniCase("undebiably"), "undeniably"), + (UniCase("expriation"), "expiration"), + (UniCase("interections"), "interactions"), + (UniCase("uplfiting"), "uplifting"), + (UniCase("creationsm"), "creationism"), + (UniCase("socialy"), "socially"), + (UniCase("intangiable"), "intangible"), + (UniCase("organizacion"), "organization"), + (UniCase("arugable"), "arguable"), + (UniCase("ukraineans"), "ukrainians"), + (UniCase("disenchanged"), "disenchanted"), + (UniCase("strawbeery"), "strawberry"), + (UniCase("strangel"), "strangle"), + (UniCase("critisicms"), "criticisms"), + (UniCase("expandes"), "expands"), + (UniCase("drammatically"), "grammatically"), + (UniCase("referinng"), "refering"), + (UniCase("contraceptivos"), "contraceptives"), + (UniCase("shenanigains"), "shenanigans"), + (UniCase("trasnformation"), "transformation"), + (UniCase("stucture"), "structure"), + (UniCase("manifestons"), "manifests"), + (UniCase("napoelon"), "napoleon"), + (UniCase("somethigng"), "somethin"), + (UniCase("priveliged"), "privileged"), + (UniCase("recations"), "creations"), + (UniCase("varaible"), "variable"), + (UniCase("transylvanai"), "transylvania"), + (UniCase("estoniya"), "estonia"), + (UniCase("behavour"), "behavior"), + (UniCase("transcrips"), "transcripts"), + (UniCase("scandinaivan"), "scandinavia"), + (UniCase("powerpot"), "powerpoint"), + (UniCase("scartch"), "scratch"), + (UniCase("shoudlers"), "shoulders"), + (UniCase("restirctions"), "restrictions"), + (UniCase("scandinavien"), "scandinavian"), + (UniCase("prejudis"), "prejudices"), + (UniCase("parapharsing"), "paraphrasing"), + (UniCase("cannibalsim"), "cannibalism"), + (UniCase("prerequisties"), "prerequisite"), + (UniCase("unbeareble"), "unbearable"), + (UniCase("purpusefully"), "purposefully"), + (UniCase("shortenting"), "shortening"), + (UniCase("relegato"), "relegation"), + (UniCase("campaing"), "campaign"), + (UniCase("destruktive"), "destructive"), + (UniCase("averageadi"), "averaged"), + (UniCase("rivalrly"), "rivalry"), + (UniCase("optimisim"), "optimism"), + (UniCase("representives"), "representatives"), + (UniCase("migrianes"), "migraines"), + (UniCase("admiraal"), "admiral"), + (UniCase("internationaly"), "internationally"), + (UniCase("merchanters"), "merchants"), + (UniCase("processesor"), "processors"), + (UniCase("fracter"), "fracture"), + (UniCase("italicising"), "italicizing"), + (UniCase("encourageing"), "encouraging"), + (UniCase("initiativs"), "initiatives"), + (UniCase("assimulate"), "assimilate"), + (UniCase("uncounciously"), "unconsciously"), + (UniCase("overlaping"), "overlapping"), + (UniCase("cataloge"), "catalogue"), + (UniCase("academicas"), "academics"), + (UniCase("pyschosis"), "psychosis"), + (UniCase("identificaton"), "identification"), + (UniCase("encyclapedia"), "encyclopedia"), + (UniCase("manipulaton"), "manipulation"), + (UniCase("scheudling"), "scheduling"), + (UniCase("headest"), "headset"), + (UniCase("distribuye"), "distribute"), + (UniCase("mecahnics"), "mechanics"), + (UniCase("distinktion"), "distinction"), + (UniCase("disciplers"), "disciples"), + (UniCase("unnecessairly"), "unnecessarily"), + (UniCase("overreaktion"), "overreaction"), + (UniCase("dissapearing"), "disappearing"), + (UniCase("administrez"), "administer"), + (UniCase("liteicon"), "litecoin"), + (UniCase("predecesser"), "predecessor"), + (UniCase("acceleratie"), "accelerate"), + (UniCase("gradiation"), "graduation"), + (UniCase("amortised"), "amortized"), + (UniCase("independentisme"), "independents"), + (UniCase("meixcans"), "mexicans"), + (UniCase("stereotipical"), "stereotypical"), + (UniCase("demenor"), "demeanor"), + (UniCase("hallusinations"), "hallucinations"), + (UniCase("provinical"), "provincial"), + (UniCase("disclipinary"), "disciplinary"), + (UniCase("amaterus"), "amateurs"), + (UniCase("aggregatore"), "aggregate"), + (UniCase("stornghold"), "stronghold"), + (UniCase("theoratical"), "theoretical"), + (UniCase("applicaitons"), "applications"), + (UniCase("incerceration"), "incarceration"), + (UniCase("denominacion"), "denomination"), + (UniCase("misogynisic"), "misogynistic"), + (UniCase("kenyesian"), "keynesian"), + (UniCase("documenatries"), "documentaries"), + (UniCase("isntrumental"), "instrumental"), + (UniCase("nihilim"), "nihilism"), + (UniCase("tentacuel"), "tentacle"), + (UniCase("riaders"), "raiders"), + (UniCase("punsiher"), "punisher"), + (UniCase("primarliy"), "primarily"), + (UniCase("fortelling"), "foretelling"), + (UniCase("pronoucning"), "pronouncing"), + (UniCase("ceremoniis"), "ceremonies"), + (UniCase("tasliman"), "talisman"), + (UniCase("hatchig"), "hatching"), + (UniCase("washignton"), "washington"), + (UniCase("specimine"), "specimen"), + (UniCase("exploitatie"), "exploitative"), + (UniCase("illustarted"), "illustrated"), + (UniCase("panellist"), "panelist"), + (UniCase("condescencion"), "condescension"), + (UniCase("victimes"), "victims"), + (UniCase("subjektive"), "subjective"), + (UniCase("independetly"), "independently"), + (UniCase("handcufs"), "handcuffs"), + (UniCase("sacramenno"), "sacramento"), + (UniCase("laready"), "already"), + (UniCase("billionarie"), "billionaire"), + (UniCase("configuratin"), "configurations"), + (UniCase("singulaire"), "singular"), + (UniCase("vaccinet"), "vaccinated"), + (UniCase("inquisiter"), "inquisitor"), + (UniCase("competiveness"), "competitiveness"), + (UniCase("susceptiable"), "susceptible"), + (UniCase("exclucivity"), "exclusivity"), + (UniCase("dumbfouded"), "dumbfounded"), + (UniCase("consoldiated"), "consolidated"), + (UniCase("flutteryshy"), "fluttershy"), + (UniCase("qualtitative"), "quantitative"), + (UniCase("creepgin"), "creeping"), + (UniCase("physcedelics"), "psychedelics"), + (UniCase("forcefullly"), "forcefully"), + (UniCase("theromstat"), "thermostat"), + (UniCase("survivabily"), "survivability"), + (UniCase("malayisan"), "malaysian"), + (UniCase("exoskelaton"), "exoskeleton"), + (UniCase("nightime"), "nighttime"), + (UniCase("imporvements"), "improvements"), + (UniCase("anoerxia"), "anorexia"), + (UniCase("testiclees"), "testicles"), + (UniCase("universale"), "universe"), + (UniCase("explorarea"), "explorer"), + (UniCase("frustrantes"), "frustrates"), + (UniCase("picthes"), "pitches"), + (UniCase("rebulit"), "rebuilt"), + (UniCase("alowing"), "allowing"), + (UniCase("cubcile"), "cubicle"), + (UniCase("conversin"), "conversions"), + (UniCase("vengenace"), "vengeance"), + (UniCase("mispelled"), "misspelled"), + (UniCase("backgorund"), "background"), + (UniCase("fromation"), "formation"), + (UniCase("teapsoon"), "teaspoon"), + (UniCase("emited"), "emitted"), + (UniCase("braoden"), "broaden"), + (UniCase("penisnula"), "peninsula"), + (UniCase("enthuisast"), "enthusiasts"), + (UniCase("cringewrothy"), "cringeworthy"), + (UniCase("bargainning"), "bargaining"), + (UniCase("coralina"), "carolina"), + (UniCase("unpredictible"), "unpredictable"), + (UniCase("embasssy"), "embassy"), + (UniCase("continient"), "contingent"), + (UniCase("strawbeary"), "strawberry"), + (UniCase("cheerleards"), "cheerleaders"), + (UniCase("pleothra"), "plethora"), + (UniCase("friendzonie"), "friendzoned"), + (UniCase("transation"), "transition"), + (UniCase("plasitcs"), "plastics"), + (UniCase("exclusivily"), "exclusivity"), + (UniCase("interection"), "interaction"), + (UniCase("grieifng"), "griefing"), + (UniCase("concibes"), "concise"), + (UniCase("crocodiller"), "crocodile"), + (UniCase("agricultrual"), "agricultural"), + (UniCase("diarrheoa"), "diarrhea"), + (UniCase("aquisition"), "acquisition"), + (UniCase("automotice"), "automotive"), + (UniCase("sypmathy"), "sympathy"), + (UniCase("creationsim"), "creationism"), + (UniCase("behaivor"), "behavior"), + (UniCase("excitiment"), "excitement"), + (UniCase("overcapping"), "overlapping"), + (UniCase("misogynyst"), "misogynist"), + (UniCase("socieites"), "societies"), + (UniCase("braziliians"), "brazilians"), + (UniCase("stampade"), "stamped"), + (UniCase("strucutral"), "structural"), + (UniCase("ganes"), "games"), + (UniCase("snippent"), "snippet"), + (UniCase("terriroty"), "territory"), + (UniCase("functionlity"), "functionality"), + (UniCase("origonated"), "originated"), + (UniCase("barrles"), "barrels"), + (UniCase("arcylic"), "acrylic"), + (UniCase("cousnelors"), "counselors"), + (UniCase("meditereanean"), "mediterranean"), + (UniCase("intircate"), "intricate"), + (UniCase("nationalistc"), "nationalistic"), + (UniCase("acknoweldges"), "acknowledges"), + (UniCase("desktopbsd"), "desktops"), + (UniCase("orchesta"), "orchestra"), + (UniCase("trackes"), "trackers"), + (UniCase("criticiing"), "criticising"), + (UniCase("philtres"), "filters"), + (UniCase("informerad"), "informed"), + (UniCase("inforgivable"), "unforgivable"), + (UniCase("rigtheousness"), "righteousness"), + (UniCase("spirutuality"), "spirituality"), + (UniCase("closeley"), "closely"), + (UniCase("restricitons"), "restrictions"), + (UniCase("renmant"), "remnant"), + (UniCase("prasied"), "praised"), + (UniCase("prodictions"), "productions"), + (UniCase("torando"), "tornado"), + (UniCase("bicthes"), "bitches"), + (UniCase("expecially"), "especially"), + (UniCase("foriegners"), "foreigners"), + (UniCase("empathised"), "empathized"), + (UniCase("gynaecological"), "gynecological"), + (UniCase("uncesnored"), "uncensored"), + (UniCase("psycholigical"), "psychological"), + (UniCase("ehternet"), "ethernet"), + (UniCase("embarassing"), "embarrassing"), + (UniCase("blueberrries"), "blueberries"), + (UniCase("civilziation"), "civilizations"), + (UniCase("marbels"), "marbles"), + (UniCase("dispraportionately"), "disproportionately"), + (UniCase("denationalisation"), "denationalization"), + (UniCase("reinitalised"), "reinitialised"), + (UniCase("backpacing"), "backpacking"), + (UniCase("extraordinairy"), "extraordinary"), + (UniCase("principly"), "principally"), + (UniCase("represensible"), "reprehensible"), + (UniCase("centrers"), "centres"), + (UniCase("compositied"), "composite"), + (UniCase("underminig"), "undermining"), + (UniCase("provacotive"), "provocative"), + (UniCase("rivlary"), "rivalry"), + (UniCase("longitme"), "longtime"), + (UniCase("virignity"), "virginity"), + (UniCase("audioboook"), "audiobook"), + (UniCase("exagerate"), "exaggerate"), + (UniCase("tepmorarily"), "temporarily"), + (UniCase("shieldd"), "shielded"), + (UniCase("exaggaration"), "exaggeration"), + (UniCase("privilages"), "privileges"), + (UniCase("ostraziced"), "ostracized"), + (UniCase("actualky"), "actualy"), + (UniCase("knowledagble"), "knowledgable"), + (UniCase("trialling"), "trialing"), + (UniCase("incuding"), "including"), + (UniCase("sotryline"), "storyline"), + (UniCase("acyrlic"), "acrylic"), + (UniCase("illustrare"), "illustrate"), + (UniCase("jugglenaut"), "juggernaut"), + (UniCase("intented"), "intended"), + (UniCase("acculumate"), "accumulate"), + (UniCase("viloently"), "violently"), + (UniCase("productino"), "productions"), + (UniCase("regiones"), "regions"), + (UniCase("horisontal"), "horizontal"), + (UniCase("contraversial"), "controversial"), + (UniCase("definataly"), "definately"), + (UniCase("immobilien"), "immobile"), + (UniCase("enterrpise"), "enterprises"), + (UniCase("outnumbed"), "outnumbered"), + (UniCase("approprate"), "appropriate"), + (UniCase("fermentating"), "fermentation"), + (UniCase("targetd"), "targeted"), + (UniCase("equailty"), "equality"), + (UniCase("sanotrum"), "santorum"), + (UniCase("disription"), "disruption"), + (UniCase("autoattk"), "autoattack"), + (UniCase("obession"), "obsession"), + (UniCase("professiomal"), "professionalism"), + (UniCase("aledge"), "allege"), + (UniCase("unsucessfully"), "unsuccessfully"), + (UniCase("eveyr"), "every"), + (UniCase("missen"), "mizzen"), + (UniCase("unkonwn"), "unknown"), + (UniCase("thouroghly"), "thoroughly"), + (UniCase("attachemnts"), "attachments"), + (UniCase("distrobuted"), "distributed"), + (UniCase("transmisssion"), "transmissions"), + (UniCase("intertwyned"), "intertwined"), + (UniCase("adminstrate"), "administrate"), + (UniCase("etiquete"), "etiquette"), + (UniCase("patenterad"), "patented"), + (UniCase("simplictic"), "simplistic"), + (UniCase("volitality"), "volatility"), + (UniCase("foreseeble"), "foreseeable"), + (UniCase("shitfer"), "shifter"), + (UniCase("satifsy"), "satisfy"), + (UniCase("repearedly"), "repealed"), + (UniCase("visercal"), "visceral"), + (UniCase("cativating"), "activating"), + (UniCase("clamour"), "clamor"), + (UniCase("principlaity"), "principality"), + (UniCase("capturd"), "captured"), + (UniCase("impressin"), "impressions"), + (UniCase("responsibe"), "responsive"), + (UniCase("exclamacion"), "exclamation"), + (UniCase("unrestircted"), "unrestricted"), + (UniCase("searchign"), "searching"), + (UniCase("socalism"), "socialism"), + (UniCase("contestents"), "contestants"), + (UniCase("prostitutke"), "prostitutes"), + (UniCase("hallucinaitons"), "hallucination"), + (UniCase("narciscism"), "narcissism"), + (UniCase("disclipines"), "disciplines"), + (UniCase("programmare"), "programmer"), + (UniCase("attackerasu"), "attackers"), + (UniCase("implusive"), "impulsive"), + (UniCase("sturcture"), "structure"), + (UniCase("fanatsic"), "fanatics"), + (UniCase("positionnal"), "positional"), + (UniCase("opponet"), "opponent"), + (UniCase("resonabelt"), "resonate"), + (UniCase("disrecpect"), "disrespect"), + (UniCase("quitely"), "quietly"), + (UniCase("achiveable"), "achievable"), + (UniCase("notificaiton"), "notification"), + (UniCase("webapge"), "webpage"), + (UniCase("brekaout"), "breakout"), + (UniCase("devovle"), "devolve"), + (UniCase("presenst"), "presets"), + (UniCase("reynols"), "reynolds"), + (UniCase("utiltiarian"), "utilitarian"), + (UniCase("assimilare"), "assimilate"), + (UniCase("redemeed"), "redeemed"), + (UniCase("fanfaction"), "fanfiction"), + (UniCase("conseguence"), "consequence"), + (UniCase("realisable"), "realizable"), + (UniCase("southapmton"), "southampton"), + (UniCase("enahnces"), "enhances"), + (UniCase("cannibalising"), "cannibalizing"), + (UniCase("cannonical"), "canonical"), + (UniCase("agriculteur"), "agriculture"), + (UniCase("polisse"), "polishes"), + (UniCase("skeptecism"), "skepticism"), + (UniCase("illumimati"), "illuminati"), + (UniCase("floruish"), "flourish"), + (UniCase("apporaches"), "approaches"), + (UniCase("medicinske"), "medicine"), + (UniCase("dipections"), "depictions"), + (UniCase("thirldy"), "thirdly"), + (UniCase("intrisnic"), "intrinsic"), + (UniCase("permanantely"), "permanently"), + (UniCase("deficiencias"), "deficiencies"), + (UniCase("largley"), "largely"), + (UniCase("analyseles"), "analyses"), + (UniCase("torndao"), "tornado"), + (UniCase("acroynms"), "acronyms"), + (UniCase("contracto"), "contraction"), + (UniCase("transpot"), "transport"), + (UniCase("linguisitcs"), "linguistics"), + (UniCase("internetis"), "internets"), + (UniCase("homosexualty"), "homosexuality"), + (UniCase("indroductory"), "introductory"), + (UniCase("capitalisim"), "capitalism"), + (UniCase("oribtal"), "orbital"), + (UniCase("stimulents"), "stimulants"), + (UniCase("privelleges"), "privileges"), + (UniCase("poeples"), "peoples"), + (UniCase("deisgns"), "designs"), + (UniCase("exectuables"), "executable"), + (UniCase("brusies"), "bruises"), + (UniCase("sould"), "could"), + (UniCase("uninstallling"), "uninstalling"), + (UniCase("repeadedly"), "repeatedly"), + (UniCase("legalises"), "legalizes"), + (UniCase("tailsman"), "talisman"), + (UniCase("restauration"), "restoration"), + (UniCase("stragetically"), "strategically"), + (UniCase("instructie"), "instructed"), + (UniCase("merchandice"), "merchandise"), + (UniCase("srirachia"), "sriracha"), + (UniCase("consciouness"), "consciousness"), + (UniCase("skatebrand"), "skateboard"), + (UniCase("emphesized"), "emphasized"), + (UniCase("nusiance"), "nuisance"), + (UniCase("phychologically"), "psychologically"), + (UniCase("contians"), "contains"), + (UniCase("curcumstance"), "circumstance"), + (UniCase("descendend"), "descended"), + (UniCase("recogniton"), "recognition"), + (UniCase("ecilpse"), "eclipse"), + (UniCase("articifially"), "artificially"), + (UniCase("juvenilles"), "juvenile"), + (UniCase("demonstrativo"), "demonstration"), + (UniCase("briusers"), "bruisers"), + (UniCase("portestants"), "protestants"), + (UniCase("incentivos"), "incentives"), + (UniCase("transfarmers"), "transformers"), + (UniCase("intoxicaton"), "intoxication"), + (UniCase("stregnths"), "strengths"), + (UniCase("balitmore"), "baltimore"), + (UniCase("anectodally"), "anecdotally"), + (UniCase("inappropirate"), "inappropriate"), + (UniCase("presidunce"), "presidency"), + (UniCase("circunference"), "circumference"), + (UniCase("copywrite"), "copyright"), + (UniCase("definitieve"), "definitive"), + (UniCase("personhoood"), "personhood"), + (UniCase("brotherhoood"), "brotherhood"), + (UniCase("micrometre"), "micrometer"), + (UniCase("ethose"), "those"), + (UniCase("indicaste"), "indicates"), + (UniCase("frightend"), "frightened"), + (UniCase("administraters"), "administrators"), + (UniCase("blackbeary"), "blackberry"), + (UniCase("transhpobic"), "transphobic"), + (UniCase("disiplined"), "disciplined"), + (UniCase("dangerouly"), "dangerously"), + (UniCase("undoctrinated"), "indoctrinated"), + (UniCase("natievly"), "natively"), + (UniCase("despide"), "despised"), + (UniCase("periwinke"), "periwinkle"), + (UniCase("manafacturing"), "manufacturing"), + (UniCase("occurrances"), "occurrences"), + (UniCase("progressivelly"), "progressively"), + (UniCase("amphetamies"), "amphetamines"), + (UniCase("obstruccion"), "obstruction"), + (UniCase("mantained"), "maintained"), + (UniCase("vulcanised"), "vulcanized"), + (UniCase("systemc"), "systemic"), + (UniCase("renegae"), "renegade"), + (UniCase("dissappointed"), "disappointed"), + (UniCase("differenciation"), "differentiation"), + (UniCase("sytlish"), "stylish"), + (UniCase("ellignton"), "ellington"), + (UniCase("victumized"), "victimized"), + (UniCase("signifigantly"), "significantly"), + (UniCase("beginninng"), "beginnings"), + (UniCase("montains"), "mountains"), + (UniCase("busines"), "business"), + (UniCase("airbourne"), "airborne"), + (UniCase("knockbak"), "knockback"), + (UniCase("fightings"), "fighting"), + (UniCase("encrytped"), "encrypted"), + (UniCase("befried"), "befriend"), + (UniCase("scandanavia"), "scandinavia"), + (UniCase("responsibilty"), "responsibility"), + (UniCase("mathematisch"), "mathematics"), + (UniCase("predictivo"), "prediction"), + (UniCase("intellectul"), "intellectuals"), + (UniCase("fingertits"), "fingertips"), + (UniCase("frustratin"), "frustration"), + (UniCase("sympethizers"), "sympathizers"), + (UniCase("problematisch"), "problematic"), + (UniCase("instutitions"), "institutions"), + (UniCase("victoriosa"), "victorious"), + (UniCase("illegitime"), "illegitimate"), + (UniCase("torhclight"), "torchlight"), + (UniCase("unsubscriped"), "unsubscribed"), + (UniCase("envelopped"), "envelope"), + (UniCase("comparision"), "comparison"), + (UniCase("chocies"), "choices"), + (UniCase("meltodwn"), "meltdown"), + (UniCase("deyhdration"), "dehydration"), + (UniCase("blueberies"), "blueberries"), + (UniCase("millenial"), "millennial"), + (UniCase("sociopati"), "sociopathic"), + (UniCase("offsited"), "offside"), + (UniCase("cuztomizable"), "customizable"), + (UniCase("successivo"), "succession"), + (UniCase("pragamtic"), "pragmatic"), + (UniCase("spleling"), "spelling"), + (UniCase("analgoue"), "analogue"), + (UniCase("steriel"), "sterile"), + (UniCase("nothingess"), "nothingness"), + (UniCase("circomference"), "circumference"), + (UniCase("sharpining"), "sharpening"), + (UniCase("sproels"), "sproles"), + (UniCase("guerrilas"), "guerrillas"), + (UniCase("defendrs"), "defends"), + (UniCase("activit"), "activist"), + (UniCase("instantanous"), "instantaneous"), + (UniCase("confrontato"), "confrontation"), + (UniCase("demolicion"), "demolition"), + (UniCase("strategisk"), "strategies"), + (UniCase("malfuncion"), "malfunction"), + (UniCase("cannnot"), "cannot"), + (UniCase("cannbial"), "cannibal"), + (UniCase("snippetts"), "snippets"), + (UniCase("originalty"), "originality"), + (UniCase("exploition"), "exploiting"), + (UniCase("reccommending"), "recommending"), + (UniCase("neighbourhod"), "neighbourhood"), + (UniCase("mentallity"), "mentally"), + (UniCase("unimportent"), "unimportant"), + (UniCase("consitutional"), "constitutional"), + (UniCase("fibre"), "fiber"), + (UniCase("tronado"), "tornado"), + (UniCase("trasnforms"), "transforms"), + (UniCase("ubiqituous"), "ubiquitous"), + (UniCase("asthetically"), "aesthetically"), + (UniCase("authorithy"), "authority"), + (UniCase("diversiy"), "diversify"), + (UniCase("epilgoue"), "epilogue"), + (UniCase("subsequant"), "subsequent"), + (UniCase("primaires"), "primaries"), + (UniCase("cheerleadra"), "cheerleader"), + (UniCase("engrames"), "engrams"), + (UniCase("therapetic"), "therapeutic"), + (UniCase("mechanicaly"), "mechanically"), + (UniCase("depictes"), "depicts"), + (UniCase("repubics"), "republics"), + (UniCase("ommitted"), "omitted"), + (UniCase("millienaire"), "millionaire"), + (UniCase("subscryber"), "subscriber"), + (UniCase("intriquing"), "intriguing"), + (UniCase("replecated"), "replicated"), + (UniCase("repersentation"), "representation"), + (UniCase("ploygon"), "polygon"), + (UniCase("illustraion"), "illustration"), + (UniCase("surprize"), "surprise"), + (UniCase("heighted"), "heightened"), + (UniCase("occurence"), "occurrence"), + (UniCase("isalnders"), "islanders"), + (UniCase("temproarily"), "temporarily"), + (UniCase("abdomine"), "abdomen"), + (UniCase("sharpenss"), "sharpness"), + (UniCase("apartmet"), "apartments"), + (UniCase("scarificing"), "sacrificing"), + (UniCase("geograhpical"), "geographical"), + (UniCase("porposes"), "proposes"), + (UniCase("compostiion"), "compositions"), + (UniCase("sypnosis"), "synopsis"), + (UniCase("gaurentees"), "guarantees"), + (UniCase("conversationable"), "conversational"), + (UniCase("symmerty"), "symmetry"), + (UniCase("definate"), "definite"), + (UniCase("abstracto"), "abstraction"), + (UniCase("continuety"), "continuity"), + (UniCase("tyrany"), "tyranny"), + (UniCase("nontheless"), "nonetheless"), + (UniCase("athletisicm"), "athleticism"), + (UniCase("calcualting"), "calculating"), + (UniCase("generalnie"), "generalize"), + (UniCase("apocalyspe"), "apocalypse"), + (UniCase("gratituous"), "gratuitous"), + (UniCase("verfiying"), "verifying"), + (UniCase("rectangel"), "rectangle"), + (UniCase("propulsing"), "propulsion"), + (UniCase("democraticlly"), "democratically"), + (UniCase("requirment"), "requirement"), + (UniCase("inherantly"), "inherently"), + (UniCase("assoication"), "association"), + (UniCase("psychedleic"), "psychedelics"), + (UniCase("differencies"), "differences"), + (UniCase("minimised"), "minimized"), + (UniCase("torunament"), "tournament"), + (UniCase("decribed"), "described"), + (UniCase("margings"), "margins"), + (UniCase("hiptsers"), "hipsters"), + (UniCase("synidcate"), "syndicate"), + (UniCase("reigons"), "regions"), + (UniCase("rininging"), "ringing"), + (UniCase("annihilaton"), "annihilation"), + (UniCase("formidabelt"), "formidable"), + (UniCase("sentimentos"), "sentiments"), + (UniCase("grabage"), "garbage"), + (UniCase("recallection"), "recollection"), + (UniCase("dramatises"), "dramatizes"), + (UniCase("endevors"), "endeavors"), + (UniCase("counselled"), "counseled"), + (UniCase("continunity"), "continuity"), + (UniCase("presumputous"), "presumptuous"), + (UniCase("contributos"), "contributors"), + (UniCase("vaporised"), "vaporized"), + (UniCase("bayoent"), "bayonet"), + (UniCase("recognisance"), "recognizance"), + (UniCase("diferent"), "different"), + (UniCase("constituants"), "constituents"), + (UniCase("antogonistic"), "antagonistic"), + (UniCase("settigns"), "settings"), + (UniCase("berekley"), "berkeley"), + (UniCase("pepperino"), "pepperoni"), + (UniCase("coincidance"), "coincidence"), + (UniCase("electricy"), "electricity"), + (UniCase("treausre"), "treasure"), + (UniCase("derogatary"), "derogatory"), + (UniCase("inveitable"), "inevitable"), + (UniCase("phsyicist"), "physicist"), + (UniCase("provded"), "provided"), + (UniCase("startde"), "startled"), + (UniCase("dimensiones"), "dimensions"), + (UniCase("tenderising"), "tenderizing"), + (UniCase("suburburban"), "suburban"), + (UniCase("wellingston"), "wellington"), + (UniCase("soceities"), "societies"), + (UniCase("inevitablly"), "inevitably"), + (UniCase("lisenced"), "silenced"), + (UniCase("celebrationists"), "celebrations"), + (UniCase("brusselers"), "brussels"), + (UniCase("politicaly"), "politically"), + (UniCase("spawend"), "spawned"), + (UniCase("perposterous"), "preposterous"), + (UniCase("misogenistic"), "misogynistic"), + (UniCase("reminscient"), "reminiscent"), + (UniCase("comfrontational"), "confrontational"), + (UniCase("onyl"), "only"), + (UniCase("slaugthered"), "slaughtered"), + (UniCase("medicaiton"), "medication"), + (UniCase("differentl"), "differential"), + (UniCase("abreviation"), "abbreviation"), + (UniCase("mexcians"), "mexicans"), + (UniCase("predictin"), "prediction"), + (UniCase("pyschologist"), "psychologist"), + (UniCase("mathemagics"), "mathematics"), + (UniCase("irrelavent"), "irrelevant"), + (UniCase("gorgoeus"), "gorgeous"), + (UniCase("procedding"), "proceeding"), + (UniCase("parliamnetary"), "parliamentary"), + (UniCase("peridoically"), "periodically"), + (UniCase("appology"), "apology"), + (UniCase("inexperianced"), "inexperienced"), + (UniCase("deductie"), "deductible"), + (UniCase("dsyfunctional"), "dysfunctional"), + (UniCase("chronicales"), "chronicles"), + (UniCase("sidelinked"), "sideline"), + (UniCase("turnaroud"), "turnaround"), + (UniCase("hysteriska"), "hysteria"), + (UniCase("cooperatve"), "cooperative"), + (UniCase("restauraunt"), "restaurant"), + (UniCase("influensed"), "influences"), + (UniCase("imanent"), "eminent"), + (UniCase("diagnosted"), "diagnose"), + (UniCase("capitola"), "capital"), + (UniCase("regualte"), "regulate"), + (UniCase("intolerate"), "intolerant"), + (UniCase("proficit"), "proficient"), + (UniCase("competative"), "competitive"), + (UniCase("necessaties"), "necessities"), + (UniCase("chocalates"), "chocolates"), + (UniCase("agrumentative"), "argumentative"), + (UniCase("conferance"), "conference"), + (UniCase("surroud"), "surround"), + (UniCase("trialer"), "trailer"), + (UniCase("sergaent"), "sergeant"), + (UniCase("effectivley"), "effectively"), + (UniCase("affirmitve"), "affirmative"), + (UniCase("standbuy"), "standby"), + (UniCase("conditiner"), "conditioner"), + (UniCase("diffirentiate"), "differentiate"), + (UniCase("proceded"), "proceeded"), + (UniCase("porportional"), "proportional"), + (UniCase("ritlain"), "ritalin"), + (UniCase("gamifications"), "ramifications"), + (UniCase("autsitic"), "autistic"), + (UniCase("radioactief"), "radioactive"), + (UniCase("inquirie"), "inquire"), + (UniCase("affilliate"), "affiliate"), + (UniCase("dsyphoria"), "dysphoria"), + (UniCase("somethikng"), "somethin"), + (UniCase("compleatly"), "completely"), + (UniCase("transformarse"), "transformers"), + (UniCase("demolitian"), "demolition"), + (UniCase("woulndt"), "wouldnt"), + (UniCase("succesive"), "successive"), + (UniCase("dysfucntional"), "dysfunctional"), + (UniCase("patirots"), "patriots"), + (UniCase("confedercy"), "confederacy"), + (UniCase("perpitrated"), "perpetrated"), + (UniCase("overheared"), "overhead"), + (UniCase("equivallent"), "equivalent"), + (UniCase("philosophising"), "philosophizing"), + (UniCase("knowldgeable"), "knowledgable"), + (UniCase("accumulatin"), "accumulation"), + (UniCase("outperfroms"), "outperform"), + (UniCase("blanketts"), "blankets"), + (UniCase("develope"), "develop"), + (UniCase("exapnsions"), "expansions"), + (UniCase("indiaan"), "indiana"), + (UniCase("chocoaltes"), "chocolates"), + (UniCase("futhroc"), "futhark"), + (UniCase("incompotent"), "incompetent"), + (UniCase("enlgish"), "english"), + (UniCase("respection"), "respecting"), + (UniCase("restircts"), "restricts"), + (UniCase("wayword"), "wayward"), + (UniCase("impolde"), "implode"), + (UniCase("orientacion"), "orientation"), + (UniCase("desktiop"), "desktop"), + (UniCase("misogenist"), "misogynist"), + (UniCase("regenade"), "renegade"), + (UniCase("archaeolgy"), "archaeology"), + (UniCase("maneouvres"), "manoeuvres"), + (UniCase("malpractce"), "malpractice"), + (UniCase("portary"), "portray"), + (UniCase("falvored"), "flavored"), + (UniCase("gmaertag"), "gamertag"), + (UniCase("overlcock"), "overclock"), + (UniCase("starwberry"), "strawberry"), + (UniCase("stadius"), "stadiums"), + (UniCase("causailty"), "causality"), + (UniCase("lefitsts"), "leftists"), + (UniCase("presnetation"), "presentations"), + (UniCase("subtiel"), "subtitle"), + (UniCase("noninitalized"), "noninitialized"), + (UniCase("congregacion"), "congregation"), + (UniCase("withdrawan"), "withdrawn"), + (UniCase("adultey"), "adultery"), + (UniCase("faciliated"), "facilitated"), + (UniCase("definetally"), "definately"), + (UniCase("thgat"), "that"), + (UniCase("brotherwood"), "brotherhood"), + (UniCase("kicthens"), "kitchens"), + (UniCase("expendeble"), "expendable"), + (UniCase("intermedate"), "intermediate"), + (UniCase("cthuhlu"), "cthulhu"), + (UniCase("personell"), "personnel"), + (UniCase("vitailty"), "vitality"), + (UniCase("crossfiters"), "crossfire"), + (UniCase("propehts"), "prophets"), + (UniCase("alturistic"), "altruistic"), + (UniCase("oxidised"), "oxidized"), + (UniCase("prepetuating"), "perpetuating"), + (UniCase("primarilly"), "primarily"), + (UniCase("infered"), "inferred"), + (UniCase("confidentail"), "confidential"), + (UniCase("pumkpins"), "pumpkins"), + (UniCase("authorative"), "authoritative"), + (UniCase("premissible"), "permissible"), + (UniCase("documentarios"), "documentaries"), + (UniCase("sturggled"), "struggled"), + (UniCase("alpahbet"), "alphabet"), + (UniCase("commandmants"), "commandments"), + (UniCase("unsurprized"), "unsurprised"), + (UniCase("imperfactions"), "imperfections"), + (UniCase("acquiantance"), "acquaintances"), + (UniCase("trafficing"), "trafficking"), + (UniCase("submergered"), "submerged"), + (UniCase("protagonistas"), "protagonists"), + (UniCase("kombinations"), "combinations"), + (UniCase("fundamentalis"), "fundamentals"), + (UniCase("downloadeble"), "downloadable"), + (UniCase("throthling"), "throttling"), + (UniCase("suspicison"), "suspicions"), + (UniCase("boardcasts"), "broadcasts"), + (UniCase("mastereis"), "masteries"), + (UniCase("enchanthing"), "enchanting"), + (UniCase("mericful"), "merciful"), + (UniCase("comparabil"), "comparable"), + (UniCase("detriot"), "detroit"), + (UniCase("prepetually"), "perpetually"), + (UniCase("facisnated"), "fascinated"), + (UniCase("bodywieght"), "bodyweight"), + (UniCase("overheathing"), "overheating"), + (UniCase("needleslly"), "needlessly"), + (UniCase("foreinger"), "foreigner"), + (UniCase("taligating"), "tailgating"), + (UniCase("liekd"), "liked"), + (UniCase("organiclly"), "organically"), + (UniCase("caricaturile"), "caricature"), + (UniCase("unballance"), "unbalance"), + (UniCase("michgian"), "michigan"), + (UniCase("possiby"), "possibly"), + (UniCase("krytponite"), "kryptonite"), + (UniCase("dissppointed"), "dissapointed"), + (UniCase("eventially"), "eventually"), + (UniCase("dissappinted"), "dissapointed"), + (UniCase("absolutley"), "absolutely"), + (UniCase("burgunday"), "burgundy"), + (UniCase("dissapoitned"), "dissapointed"), + (UniCase("actualty"), "actualy"), + (UniCase("renewl"), "renewal"), + (UniCase("toursim"), "tourism"), + (UniCase("credentaisl"), "credentials"), + (UniCase("diarreah"), "diarrhea"), + (UniCase("remakrs"), "remarks"), + (UniCase("fowrards"), "forwards"), + (UniCase("domapine"), "dopamine"), + (UniCase("cartdridge"), "cartridge"), + (UniCase("interviewr"), "interviewer"), + (UniCase("websties"), "websites"), + (UniCase("metaphysisch"), "metaphysics"), + (UniCase("minimilist"), "minimalist"), + (UniCase("repitles"), "reptiles"), + (UniCase("isralei"), "israeli"), + (UniCase("clinicos"), "clinics"), + (UniCase("valnecia"), "valencia"), + (UniCase("temprary"), "temporary"), + (UniCase("miniaturised"), "miniaturized"), + (UniCase("jurisdiccion"), "jurisdiction"), + (UniCase("strecthing"), "stretching"), + (UniCase("predacessor"), "predecessor"), + (UniCase("backfied"), "backfield"), + (UniCase("transilvania"), "transylvania"), + (UniCase("associationthis"), "associations"), + (UniCase("transmorged"), "transformed"), + (UniCase("indefintiely"), "indefinitely"), + (UniCase("interfernce"), "interference"), + (UniCase("superhereos"), "superhero"), + (UniCase("currentlys"), "currents"), + (UniCase("dungeoness"), "dungeons"), + (UniCase("conservice"), "conserve"), + (UniCase("hertiage"), "heritage"), + (UniCase("complexers"), "complexes"), + (UniCase("transister"), "transistor"), + (UniCase("definantley"), "definately"), + (UniCase("extraordinarely"), "extraordinarily"), + (UniCase("defendeers"), "defender"), + (UniCase("futuristisch"), "futuristic"), + (UniCase("clickare"), "clicker"), + (UniCase("audeince"), "audience"), + (UniCase("particiaption"), "participation"), + (UniCase("invincable"), "invincible"), + (UniCase("nigthmares"), "nightmares"), + (UniCase("procrastibation"), "procrastination"), + (UniCase("succesfuly"), "successfully"), + (UniCase("squirlte"), "squirtle"), + (UniCase("starightened"), "straightened"), + (UniCase("festivas"), "festivals"), + (UniCase("exhasuted"), "exhausted"), + (UniCase("simspon"), "simpson"), + (UniCase("passivised"), "passivized"), + (UniCase("syntehtic"), "synthetic"), + (UniCase("imbalanaced"), "imbalanced"), + (UniCase("reproduktion"), "reproduction"), + (UniCase("adventureres"), "adventures"), + (UniCase("encompases"), "encompasses"), + (UniCase("peridinkle"), "periwinkle"), + (UniCase("tranclucent"), "translucent"), + (UniCase("unexplicably"), "inexplicably"), + (UniCase("familiarlize"), "familiarize"), + (UniCase("telaportation"), "teleportation"), + (UniCase("ministery"), "ministry"), + (UniCase("polical"), "political"), + (UniCase("hamburgesa"), "hamburgers"), + (UniCase("defintley"), "definetly"), + (UniCase("planeswlaker"), "planeswalker"), + (UniCase("organisatons"), "organisations"), + (UniCase("extortin"), "extortion"), + (UniCase("aboroginal"), "aboriginal"), + (UniCase("tiem"), "time"), + (UniCase("belittleing"), "belittling"), + (UniCase("compartmentalises"), "compartmentalizes"), + (UniCase("temparate"), "temperate"), + (UniCase("enchantmants"), "enchantments"), + (UniCase("infilitrated"), "infiltrated"), + (UniCase("superstiton"), "superstition"), + (UniCase("uncontrollabe"), "uncontrollable"), + (UniCase("autonation"), "automation"), + (UniCase("commense"), "commenters"), + (UniCase("documentories"), "documentaries"), + (UniCase("mangesium"), "magnesium"), + (UniCase("denominato"), "denomination"), + (UniCase("progresso"), "progression"), + (UniCase("manifistation"), "manifestation"), + (UniCase("queenland"), "queensland"), + (UniCase("immobilier"), "immobile"), + (UniCase("disobediance"), "disobedience"), + (UniCase("remotelly"), "remotely"), + (UniCase("delfection"), "deflection"), + (UniCase("shatterring"), "shattering"), + (UniCase("vriginity"), "virginity"), + (UniCase("currancies"), "currencies"), + (UniCase("editoras"), "editors"), + (UniCase("livestrem"), "livestream"), + (UniCase("despciable"), "despicable"), + (UniCase("definitivno"), "definition"), + (UniCase("architecht"), "architect"), + (UniCase("aerosapce"), "aerospace"), + (UniCase("caryons"), "crayons"), + (UniCase("northren"), "northern"), + (UniCase("enviorments"), "environments"), + (UniCase("acknowledgeing"), "acknowledging"), + (UniCase("unisntall"), "uninstall"), + (UniCase("diverstiy"), "diversity"), + (UniCase("infrigement"), "infringement"), + (UniCase("addresing"), "addressing"), + (UniCase("encyclopeadic"), "encyclopedia"), + (UniCase("whipser"), "whisper"), + (UniCase("coproration"), "corporation"), + (UniCase("discourgae"), "discourages"), + (UniCase("percentige"), "percentile"), + (UniCase("completeds"), "completes"), + (UniCase("ukranie"), "ukraine"), + (UniCase("essentails"), "essentials"), + (UniCase("unrealesed"), "unreleased"), + (UniCase("meterosexual"), "heterosexual"), + (UniCase("apperciated"), "appreciated"), + (UniCase("stretegically"), "strategically"), + (UniCase("advatanges"), "advantages"), + (UniCase("extradiction"), "extradition"), + (UniCase("outsoursed"), "outsourced"), + (UniCase("underwares"), "underwater"), + (UniCase("retribvtion"), "retribution"), + (UniCase("manufacteres"), "manufactures"), + (UniCase("apolagetic"), "apologetic"), + (UniCase("potical"), "optical"), + (UniCase("coordine"), "coordinate"), + (UniCase("excahnges"), "exchanges"), + (UniCase("hestiant"), "hesitant"), + (UniCase("detectarlo"), "detector"), + (UniCase("exercide"), "exercised"), + (UniCase("colonizators"), "colonizers"), + (UniCase("luanches"), "launches"), + (UniCase("ridiculue"), "ridicule"), + (UniCase("protagoinst"), "protagonists"), + (UniCase("prohibitus"), "prohibits"), + (UniCase("torpedeo"), "torpedo"), + (UniCase("aeropsace"), "aerospace"), + (UniCase("coratia"), "croatia"), + (UniCase("healthit"), "healthiest"), + (UniCase("mercenaires"), "mercenaries"), + (UniCase("sohpisticated"), "sophisticated"), + (UniCase("myhtical"), "mythical"), + (UniCase("amendmends"), "amendments"), + (UniCase("exclsuive"), "exclusive"), + (UniCase("unconventinal"), "unconventional"), + (UniCase("fiels"), "fields"), + (UniCase("conditionning"), "conditioning"), + (UniCase("comaptible"), "compatible"), + (UniCase("stitchs"), "stitches"), + (UniCase("intoleranse"), "intolerance"), + (UniCase("argessive"), "agressive"), + (UniCase("wih"), "with"), + (UniCase("almightly"), "almighty"), + (UniCase("originallity"), "originality"), + (UniCase("projectils"), "projectiles"), + (UniCase("informatie"), "informative"), + (UniCase("mastieres"), "masteries"), + (UniCase("termanology"), "terminology"), + (UniCase("judegmental"), "judgemental"), + (UniCase("episdoe"), "episode"), + (UniCase("registerdns"), "registers"), + (UniCase("baiscly"), "basicly"), + (UniCase("parites"), "parties"), + (UniCase("associatie"), "associated"), + (UniCase("volunteeers"), "volunteers"), + (UniCase("fertalizer"), "fertilizer"), + (UniCase("inconvienenced"), "inconvenience"), + (UniCase("powderd"), "powdered"), + (UniCase("amrchair"), "armchair"), + (UniCase("systematisation"), "systematization"), + (UniCase("taiwanee"), "taiwanese"), + (UniCase("atrosities"), "atrocities"), + (UniCase("concerte"), "concrete"), + (UniCase("indentical"), "identical"), + (UniCase("comminicated"), "communicated"), + (UniCase("comapnies"), "companies"), + (UniCase("colomba"), "colombia"), + (UniCase("koreanos"), "koreans"), + (UniCase("preoxide"), "peroxide"), + (UniCase("senzationalist"), "sensationalist"), + (UniCase("invaildate"), "invalidates"), + (UniCase("deifnetly"), "definetly"), + (UniCase("dependente"), "dependence"), + (UniCase("relaible"), "reliable"), + (UniCase("misunderstandng"), "misunderstandings"), + (UniCase("conbinations"), "combinations"), + (UniCase("theif"), "thief"), + (UniCase("preculde"), "preclude"), + (UniCase("frientships"), "friendships"), + (UniCase("unbrearable"), "unbreakable"), + (UniCase("jusridiction"), "jurisdiction"), + (UniCase("misdemeanours"), "misdemeanors"), + (UniCase("peirced"), "pierced"), + (UniCase("realsie"), "realise"), + (UniCase("skimrish"), "skirmish"), + (UniCase("remasterred"), "remastered"), + (UniCase("piolting"), "piloting"), + (UniCase("mobilises"), "mobilizes"), + (UniCase("helemts"), "helmets"), + (UniCase("athleticos"), "athletics"), + (UniCase("flavoures"), "flavours"), + (UniCase("treasurery"), "treasury"), + (UniCase("administren"), "administer"), + (UniCase("dysphroia"), "dysphoria"), + (UniCase("dopmaine"), "dopamine"), + (UniCase("conditinal"), "conditional"), + (UniCase("montaran"), "montana"), + (UniCase("organiste"), "organise"), + (UniCase("decoracion"), "decoration"), + (UniCase("burnign"), "burning"), + (UniCase("protectoin"), "protections"), + (UniCase("presentes"), "presents"), + (UniCase("fandation"), "foundation"), + (UniCase("protectice"), "protective"), + (UniCase("internilized"), "internalized"), + (UniCase("livestreem"), "livestream"), + (UniCase("blankes"), "blankets"), + (UniCase("competator"), "competitor"), + (UniCase("factorised"), "factorized"), + (UniCase("uplaods"), "uploads"), + (UniCase("obsturction"), "obstruction"), + (UniCase("thyorid"), "thyroid"), + (UniCase("vegeterians"), "vegetarians"), + (UniCase("collecte"), "collective"), + (UniCase("commerciales"), "commercials"), + (UniCase("analitycs"), "analytics"), + (UniCase("dispesnary"), "dispensary"), + (UniCase("dimentional"), "dimensional"), + (UniCase("charactere"), "characterize"), + (UniCase("demosntrably"), "demonstrably"), + (UniCase("susncreen"), "sunscreen"), + (UniCase("rennovating"), "renovating"), + (UniCase("momentarly"), "momentarily"), + (UniCase("regulaion"), "regulation"), + (UniCase("skatebaord"), "skateboard"), + (UniCase("disappearred"), "disappeared"), + (UniCase("comperatively"), "comparatively"), + (UniCase("pendatic"), "pedantic"), + (UniCase("documentery"), "documentary"), + (UniCase("atomzier"), "atomizer"), + (UniCase("anaemic"), "anemic"), + (UniCase("socioecenomic"), "socioeconomic"), + (UniCase("metropolians"), "metropolis"), + (UniCase("valkryie"), "valkyrie"), + (UniCase("denegrating"), "denigrating"), + (UniCase("fertily"), "fertility"), + (UniCase("immobilzes"), "immobile"), + (UniCase("mutliplied"), "multiplied"), + (UniCase("marineris"), "mariners"), + (UniCase("administratior"), "administrator"), + (UniCase("chromosoms"), "chromosomes"), + (UniCase("indipendently"), "independently"), + (UniCase("arugments"), "arguments"), + (UniCase("fermantation"), "fermentation"), + (UniCase("offcers"), "officers"), + (UniCase("permanet"), "permanent"), + (UniCase("unnecissarily"), "unnecessarily"), + (UniCase("implausibe"), "implausible"), + (UniCase("circularises"), "circularizes"), + (UniCase("contagioso"), "contagious"), + (UniCase("epitomise"), "epitomize"), + (UniCase("overhual"), "overhaul"), + (UniCase("briuses"), "bruises"), + (UniCase("insturction"), "instruction"), + (UniCase("intersetllar"), "interstellar"), + (UniCase("expliots"), "exploits"), + (UniCase("highshcool"), "highschool"), + (UniCase("krypronite"), "kryptonite"), + (UniCase("serviciable"), "serviceable"), + (UniCase("hunagry"), "hungary"), + (UniCase("aganist"), "against"), + (UniCase("arbritation"), "arbitration"), + (UniCase("hierarcical"), "hierarchical"), + (UniCase("wiull"), "will"), + (UniCase("volatiliy"), "volatility"), + (UniCase("protines"), "proteins"), + (UniCase("israeliens"), "israelis"), + (UniCase("republian"), "republican"), + (UniCase("aricraft"), "aircraft"), + (UniCase("medicineras"), "medicines"), + (UniCase("idesa"), "ideas"), + (UniCase("develepors"), "developers"), + (UniCase("prostitucion"), "prostitution"), + (UniCase("ineffektive"), "ineffective"), + (UniCase("formidabile"), "formidable"), + (UniCase("guerrila"), "guerrilla"), + (UniCase("sentimentals"), "sentiments"), + (UniCase("manufactuer"), "manufacture"), + (UniCase("threatenes"), "threatens"), + (UniCase("rekommendation"), "recommendation"), + (UniCase("exhasution"), "exhaustion"), + (UniCase("humour"), "humor"), + (UniCase("outreagous"), "outrageous"), + (UniCase("descritpion"), "descriptions"), + (UniCase("contibuted"), "contributed"), + (UniCase("rollorcoaster"), "rollercoaster"), + (UniCase("xenbolade"), "xenoblade"), + (UniCase("publsiher"), "publisher"), + (UniCase("translateing"), "translating"), + (UniCase("moderm"), "modem"), + (UniCase("modelling"), "modeling"), + (UniCase("targetting"), "targeting"), + (UniCase("hosited"), "hoisted"), + (UniCase("schoodle"), "schooled"), + (UniCase("mulitnational"), "multinational"), + (UniCase("tentacel"), "tentacle"), + (UniCase("secrelty"), "secretly"), + (UniCase("metephorically"), "metaphorically"), + (UniCase("squarey"), "squarely"), + (UniCase("percevied"), "perceived"), + (UniCase("comtemplating"), "contemplating"), + (UniCase("composet"), "compost"), + (UniCase("democractic"), "democratic"), + (UniCase("relitavely"), "relatively"), + (UniCase("unconstititional"), "unconstitutional"), + (UniCase("underraged"), "underrated"), + (UniCase("sofware"), "software"), + (UniCase("bangaldesh"), "bangladesh"), + (UniCase("cheeseburguer"), "cheeseburger"), + (UniCase("globalising"), "globalizing"), + (UniCase("contentios"), "contentious"), + (UniCase("serialise"), "serialize"), + (UniCase("operativos"), "operations"), + (UniCase("sturctural"), "structural"), + (UniCase("primaris"), "primaries"), + (UniCase("passivise"), "passivize"), + (UniCase("countrywides"), "countryside"), + (UniCase("sumbarine"), "submarine"), + (UniCase("scientificaly"), "scientifically"), + (UniCase("summarise"), "summarize"), + (UniCase("anniverary"), "anniversary"), + (UniCase("prostitue"), "prostitute"), + (UniCase("ammend"), "amend"), + (UniCase("extremistas"), "extremists"), + (UniCase("rectengular"), "rectangular"), + (UniCase("functionnal"), "functional"), + (UniCase("civizilation"), "civilizations"), + (UniCase("hybridise"), "hybridize"), + (UniCase("docuhey"), "douchey"), + (UniCase("andriods"), "androids"), + (UniCase("misognyistic"), "misogynistic"), + (UniCase("themsef"), "themself"), + (UniCase("juvenille"), "juvenile"), + (UniCase("initalizer"), "initializer"), + (UniCase("independece"), "independence"), + (UniCase("traingles"), "triangles"), + (UniCase("emphetamines"), "amphetamines"), + (UniCase("zepplein"), "zeppelin"), + (UniCase("overreacing"), "overreacting"), + (UniCase("repulisve"), "repulsive"), + (UniCase("revolations"), "revolutions"), + (UniCase("admissability"), "admissibility"), + (UniCase("domimation"), "domination"), + (UniCase("factores"), "factors"), + (UniCase("solemnise"), "solemnize"), + (UniCase("volatge"), "voltage"), + (UniCase("theripists"), "therapists"), + (UniCase("thermodynaics"), "thermodynamics"), + (UniCase("spawnign"), "spawning"), + (UniCase("succedded"), "succeeded"), + (UniCase("convenince"), "convenience"), + (UniCase("soundtrakcs"), "soundtracks"), + (UniCase("calliper"), "caliper"), + (UniCase("ridiculosly"), "ridiculously"), + (UniCase("prescriptionists"), "prescriptions"), + (UniCase("togehter"), "together"), + (UniCase("bargian"), "bargain"), + (UniCase("phramaceutical"), "pharmaceutical"), + (UniCase("magentic"), "magnetic"), + (UniCase("mininterpreting"), "misinterpreting"), + (UniCase("inexblicably"), "inexplicably"), + (UniCase("absurditiy"), "absurdity"), + (UniCase("henious"), "heinous"), + (UniCase("misunderstandimg"), "misunderstandings"), + (UniCase("appretiation"), "appreciation"), + (UniCase("loiusville"), "louisville"), + (UniCase("evangers"), "avengers"), + (UniCase("replacemtn"), "replacements"), + (UniCase("christains"), "christians"), + (UniCase("familiary"), "familiarity"), + (UniCase("granolla"), "granola"), + (UniCase("paremsan"), "parmesan"), + (UniCase("opponant"), "opponent"), + (UniCase("availiable"), "available"), + (UniCase("idealogy"), "ideology"), + (UniCase("harrassed"), "harassed"), + (UniCase("ilterate"), "literate"), + (UniCase("glipmse"), "glimpse"), + (UniCase("wallpapr"), "wallpapers"), + (UniCase("flaskbacks"), "flashbacks"), + (UniCase("mysef"), "myself"), + (UniCase("gorvement"), "goverment"), + (UniCase("hamburgare"), "hamburger"), + (UniCase("tottneham"), "tottenham"), + (UniCase("intered"), "interred"), + (UniCase("specifiing"), "specifying"), + (UniCase("jugdemental"), "judgemental"), + (UniCase("butterfies"), "butterflies"), + (UniCase("entertaing"), "entertaining"), + (UniCase("pshyciatric"), "psychiatric"), + (UniCase("manisfestations"), "manifestations"), + (UniCase("potrayed"), "portrayed"), + (UniCase("recieved"), "received"), + (UniCase("formidabble"), "formidable"), + (UniCase("hypnoss"), "hypnosis"), + (UniCase("impluse"), "impulse"), + (UniCase("reliabley"), "reliably"), + (UniCase("owudl"), "would"), + (UniCase("internationnally"), "internationally"), + (UniCase("marinens"), "marines"), + (UniCase("overwhelemd"), "overwhelmed"), + (UniCase("frequencey"), "frequency"), + (UniCase("scenarions"), "scenarios"), + (UniCase("presidenital"), "presidential"), + (UniCase("comparitave"), "comparative"), + (UniCase("unbalanaced"), "unbalanced"), + (UniCase("thigsn"), "things"), + (UniCase("blockchian"), "blockchain"), + (UniCase("interessted"), "interested"), + (UniCase("unfortunetly"), "unfortunately"), + (UniCase("antennna"), "antenna"), + (UniCase("deliverys"), "delivers"), + (UniCase("conspiricy"), "conspiracy"), + (UniCase("prefection"), "perfection"), + (UniCase("capitolize"), "capitalize"), + (UniCase("prostitutin"), "prostitution"), + (UniCase("adminsitrator"), "administrator"), + (UniCase("neigbhours"), "neighbours"), + (UniCase("transfered"), "transferred"), + (UniCase("interragation"), "interrogation"), + (UniCase("capatilized"), "capitalized"), + (UniCase("journalizm"), "journalism"), + (UniCase("gloriuos"), "glorious"), + (UniCase("permanenty"), "permanently"), + (UniCase("accension"), "accession"), + (UniCase("wendesday"), "wednesday"), + (UniCase("graduatin"), "graduation"), + (UniCase("dyanmics"), "dynamics"), + (UniCase("satirises"), "satirizes"), + (UniCase("architechural"), "architectural"), + (UniCase("souveniers"), "souvenirs"), + (UniCase("mirrorred"), "mirrored"), + (UniCase("robberts"), "robbers"), + (UniCase("islamits"), "islamist"), + (UniCase("anixety"), "anxiety"), + (UniCase("comfortablity"), "comfortably"), + (UniCase("countrycide"), "countryside"), + (UniCase("dupilcates"), "duplicates"), + (UniCase("appreceating"), "appreciating"), + (UniCase("virgines"), "virgins"), + (UniCase("toothrbush"), "toothbrush"), + (UniCase("diskrimination"), "discrimination"), + (UniCase("sacksonville"), "jacksonville"), + (UniCase("faught"), "fought"), + (UniCase("exectuives"), "executives"), + (UniCase("socialise"), "socialize"), + (UniCase("patinetly"), "patiently"), + (UniCase("hospitalises"), "hospitalizes"), + (UniCase("insperational"), "inspirational"), + (UniCase("dispath"), "dispatch"), + (UniCase("shouldt"), "shouldnt"), + (UniCase("satellitte"), "satellites"), + (UniCase("coordinater"), "coordinator"), + (UniCase("imrpovised"), "improvised"), + (UniCase("accelorating"), "accelerating"), + (UniCase("surveyer"), "surveyor"), + (UniCase("univeristy"), "university"), + (UniCase("arthrits"), "arthritis"), + (UniCase("portriats"), "portraits"), + (UniCase("collaberative"), "collaborative"), + (UniCase("masoginistic"), "misogynistic"), + (UniCase("macthups"), "matchups"), + (UniCase("dissaponited"), "dissapointed"), + (UniCase("milawukee"), "milwaukee"), + (UniCase("transporing"), "transporting"), + (UniCase("proclamied"), "proclaimed"), + (UniCase("downlaods"), "downloads"), + (UniCase("definitivley"), "definitively"), + (UniCase("absail"), "abseil"), + (UniCase("inappropiate"), "inappropriate"), + (UniCase("erested"), "arrested"), + (UniCase("draculla"), "dracula"), + (UniCase("supress"), "suppress"), + (UniCase("brutalising"), "brutalizing"), + (UniCase("regenaration"), "regeneration"), + (UniCase("junglign"), "jungling"), + (UniCase("anomisity"), "animosity"), + (UniCase("fronkenstein"), "frankenstein"), + (UniCase("aneroxia"), "anorexia"), + (UniCase("falvors"), "flavors"), + (UniCase("cylindres"), "cylinders"), + (UniCase("disgustose"), "disgusts"), + (UniCase("transmittted"), "transmitted"), + (UniCase("destkop"), "desktop"), + (UniCase("deducitble"), "deductible"), + (UniCase("donesticated"), "domesticated"), + (UniCase("sympothetic"), "sympathetic"), + (UniCase("introducting"), "introduction"), + (UniCase("suefull"), "usefull"), + (UniCase("cheeseborger"), "cheeseburger"), + (UniCase("psychologial"), "psychological"), + (UniCase("infestaion"), "infestation"), + (UniCase("unbeakable"), "unbeatable"), + (UniCase("consectuive"), "consecutive"), + (UniCase("recipientes"), "recipients"), + (UniCase("bariner"), "brainer"), + (UniCase("positivisty"), "positivity"), + (UniCase("annilihation"), "annihilation"), + (UniCase("perpatuates"), "perpetuates"), + (UniCase("delerious"), "delirious"), + (UniCase("deutschand"), "deutschland"), + (UniCase("relativiser"), "relatives"), + (UniCase("reconstruccion"), "reconstruction"), + (UniCase("scrunity"), "scrutiny"), + (UniCase("heteresexual"), "heterosexual"), + (UniCase("manfiesto"), "manifesto"), + (UniCase("nonsesne"), "nonsense"), + (UniCase("perminantly"), "permanently"), + (UniCase("temperaturas"), "temperatures"), + (UniCase("throtlling"), "throttling"), + (UniCase("forenics"), "forensic"), + (UniCase("confedarcy"), "confederacy"), + (UniCase("contamporary"), "contemporary"), + (UniCase("equivalenet"), "equivalents"), + (UniCase("ommitting"), "omitting"), + (UniCase("activacion"), "activation"), + (UniCase("distiungished"), "distinguished"), + (UniCase("clamouring"), "clamoring"), + (UniCase("defendis"), "defends"), + (UniCase("penguis"), "penguins"), + (UniCase("collaboratore"), "collaborate"), + (UniCase("westernising"), "westernizing"), + (UniCase("denomenator"), "denominator"), + (UniCase("caclulation"), "calculation"), + (UniCase("onatrio"), "ontario"), + (UniCase("mediocry"), "mediocrity"), + (UniCase("stimualted"), "stimulated"), + (UniCase("exclusvies"), "exclusives"), + (UniCase("coloniser"), "colonizer"), + (UniCase("exection"), "execution"), + (UniCase("acknowleded"), "acknowledged"), + (UniCase("overarcing"), "overarching"), + (UniCase("politessen"), "politeness"), + (UniCase("referrence"), "reference"), + (UniCase("persits"), "persist"), + (UniCase("harbours"), "harbors"), + (UniCase("fucntioning"), "functioning"), + (UniCase("resintalling"), "reinstalling"), + (UniCase("purcahses"), "purchases"), + (UniCase("bounses"), "bonuses"), + (UniCase("deputised"), "deputized"), + (UniCase("shrpanel"), "shrapnel"), + (UniCase("chirstian"), "christian"), + (UniCase("entitlied"), "entitled"), + (UniCase("toriodal"), "toroidal"), + (UniCase("unimpressd"), "unimpressed"), + (UniCase("deciptions"), "depictions"), + (UniCase("graniet"), "granite"), + (UniCase("irritatie"), "irritate"), + (UniCase("contributivo"), "contribution"), + (UniCase("relativety"), "relativity"), + (UniCase("overwhemed"), "overwhelmed"), + (UniCase("expalining"), "explaining"), + (UniCase("convorsation"), "conversation"), + (UniCase("dogmatisch"), "dogmatic"), + (UniCase("demonished"), "demolished"), + (UniCase("secruity"), "security"), + (UniCase("sqiurtle"), "squirtle"), + (UniCase("flashligth"), "flashlight"), + (UniCase("develoeprs"), "developers"), + (UniCase("finanically"), "financially"), + (UniCase("agricolture"), "agriculture"), + (UniCase("immatureity"), "immaturity"), + (UniCase("acovados"), "avocados"), + (UniCase("conicide"), "coincide"), + (UniCase("outragiously"), "outrageously"), + (UniCase("asssassans"), "assassins"), + (UniCase("merchans"), "merchants"), + (UniCase("nurtients"), "nutrients"), + (UniCase("syntethic"), "synthetic"), + (UniCase("definitaley"), "definately"), + (UniCase("alrighy"), "alrighty"), + (UniCase("entreprenours"), "entrepreneurs"), + (UniCase("counrtyside"), "countryside"), + (UniCase("concellation"), "cancellation"), + (UniCase("portugese"), "portuguese"), + (UniCase("exapansion"), "expansion"), + (UniCase("exersize"), "exercise"), + (UniCase("catholisism"), "catholicism"), + (UniCase("waterproff"), "waterproof"), + (UniCase("purpetrators"), "perpetrators"), + (UniCase("enginerring"), "engineering"), + (UniCase("reconcilled"), "reconcile"), + (UniCase("worstened"), "worsened"), + (UniCase("highpander"), "highlander"), + (UniCase("competitie"), "competitive"), + (UniCase("respectifs"), "respects"), + (UniCase("verastility"), "versatility"), + (UniCase("initals"), "initials"), + (UniCase("priotitize"), "prioritize"), + (UniCase("approproximate"), "approximate"), + (UniCase("dysfonction"), "dysfunction"), + (UniCase("profitiablity"), "profitability"), + (UniCase("behavoirs"), "behaviors"), + (UniCase("disagreemtn"), "disagreements"), + (UniCase("humanises"), "humanizes"), + (UniCase("heorine"), "heroine"), + (UniCase("arbitray"), "arbitrary"), + (UniCase("constatnly"), "constantly"), + (UniCase("continueing"), "continuing"), + (UniCase("justfiy"), "justify"), + (UniCase("entreprenour"), "entrepreneur"), + (UniCase("vieweres"), "viewers"), + (UniCase("prejeduced"), "prejudiced"), + (UniCase("proseletyzing"), "proselytizing"), + (UniCase("fertilizar"), "fertilizer"), + (UniCase("investigaton"), "investigation"), + (UniCase("entretained"), "entertained"), + (UniCase("indepentents"), "independents"), + (UniCase("epitomising"), "epitomizing"), + (UniCase("reamining"), "remaining"), + (UniCase("airplance"), "airplane"), + (UniCase("behavios"), "behaviours"), + (UniCase("specatcular"), "spectacular"), + (UniCase("fundimentals"), "fundamentals"), + (UniCase("transcriptus"), "transcripts"), + (UniCase("interlectual"), "intellectual"), + (UniCase("reptuable"), "reputable"), + (UniCase("relativno"), "relation"), + (UniCase("rococco"), "rococo"), + (UniCase("aristotel"), "aristotle"), + (UniCase("chernobly"), "chernobyl"), + (UniCase("moleculs"), "molecules"), + (UniCase("charitible"), "charitable"), + (UniCase("revolvr"), "revolver"), + (UniCase("scientiests"), "scientists"), + (UniCase("chiense"), "chinese"), + (UniCase("disbale"), "disable"), + (UniCase("stuctured"), "structured"), + (UniCase("exonorate"), "exonerate"), + (UniCase("reserached"), "researched"), + (UniCase("subsconciously"), "subconsciously"), + (UniCase("humanitis"), "humanities"), + (UniCase("tortillera"), "tortilla"), + (UniCase("cetlics"), "celtics"), + (UniCase("afterthougt"), "afterthought"), + (UniCase("phillipses"), "phillies"), + (UniCase("missionare"), "missionaries"), + (UniCase("mandrain"), "mandarin"), + (UniCase("subarmines"), "submarines"), + (UniCase("throners"), "thrones"), + (UniCase("fluctaute"), "fluctuate"), + (UniCase("compenduim"), "compendium"), + (UniCase("overpovered"), "overpowered"), + (UniCase("unilateraly"), "unilaterally"), + (UniCase("appreicates"), "appreciates"), + (UniCase("commissionar"), "commissioner"), + (UniCase("westrbook"), "westbrook"), + (UniCase("balckberry"), "blackberry"), + (UniCase("baptising"), "baptizing"), + (UniCase("boradly"), "broadly"), + (UniCase("netboook"), "netbook"), + (UniCase("consiquently"), "consequently"), + (UniCase("metropolitian"), "metropolitan"), + (UniCase("egalitara"), "egalitarian"), + (UniCase("maching"), "machine"), + (UniCase("aborigenal"), "aboriginal"), + (UniCase("guarantes"), "guarantees"), + (UniCase("reaccurring"), "recurring"), + (UniCase("acquaintaince"), "acquaintance"), + (UniCase("procrestinating"), "procrastinating"), + (UniCase("unattracive"), "unattractive"), + (UniCase("irrespecitve"), "irrespective"), + (UniCase("colloborate"), "collaborate"), + (UniCase("sensitises"), "sensitizes"), + (UniCase("frientship"), "friendship"), + (UniCase("imcomplete"), "incomplete"), + (UniCase("brakedowns"), "breakdowns"), + (UniCase("projectyle"), "projectile"), + (UniCase("mechancial"), "mechanical"), + (UniCase("rudimentry"), "rudimentary"), + (UniCase("midfeild"), "midfield"), + (UniCase("substracted"), "subtracted"), + (UniCase("helictopers"), "helicopters"), + (UniCase("eygptian"), "egyptian"), + (UniCase("demonstratbly"), "demonstrably"), + (UniCase("identifyed"), "identified"), + (UniCase("customizeble"), "customizable"), + (UniCase("awkwardess"), "awkwardness"), + (UniCase("internetest"), "internets"), + (UniCase("installemnt"), "installment"), + (UniCase("fascisim"), "fascism"), + (UniCase("copenhegan"), "copenhagen"), + (UniCase("behaviorly"), "behavioral"), + (UniCase("optimistisch"), "optimistic"), + (UniCase("phenonemal"), "phenomenal"), + (UniCase("persuasing"), "persuasion"), + (UniCase("averadge"), "averaged"), + (UniCase("disucssions"), "discussions"), + (UniCase("familiarty"), "familiarity"), + (UniCase("supermacist"), "supremacist"), + (UniCase("pharoah"), "pharaoh"), + (UniCase("genialia"), "genitalia"), + (UniCase("progressivily"), "progressively"), + (UniCase("unicrons"), "unicorns"), + (UniCase("adventuros"), "adventurous"), + (UniCase("aruging"), "arguing"), + (UniCase("sympaty"), "sympathy"), + (UniCase("feminise"), "feminize"), + (UniCase("provinciae"), "province"), + (UniCase("exlcusively"), "exclusively"), + (UniCase("minipulative"), "manipulative"), + (UniCase("stigmatises"), "stigmatizes"), + (UniCase("vecotrs"), "vectors"), + (UniCase("scostman"), "scotsman"), + (UniCase("minneaplis"), "minneapolis"), + (UniCase("storyteling"), "storytelling"), + (UniCase("prohabition"), "prohibition"), + (UniCase("sentimentul"), "sentimental"), + (UniCase("cliffhander"), "cliffhanger"), + (UniCase("prosicuted"), "prosecuted"), + (UniCase("unattendend"), "unattended"), + (UniCase("contamporaries"), "contemporaries"), + (UniCase("photoshopd"), "photoshopped"), + (UniCase("demonstratie"), "demonstrate"), + (UniCase("dictionarys"), "dictionaries"), + (UniCase("neglacting"), "neglecting"), + (UniCase("wolrdwide"), "worldwide"), + (UniCase("accelarator"), "accelerator"), + (UniCase("compositore"), "composite"), + (UniCase("ocassions"), "occasions"), + (UniCase("americats"), "americas"), + (UniCase("concentrare"), "concentrate"), + (UniCase("radioaktive"), "radioactive"), + (UniCase("zionsim"), "zionism"), + (UniCase("mechanicly"), "mechanical"), + (UniCase("beginnins"), "beginnings"), + (UniCase("philosoper"), "philosopher"), + (UniCase("explaing"), "explaining"), + (UniCase("supplimental"), "supplemental"), + (UniCase("dolhpin"), "dolphin"), + (UniCase("delcares"), "declares"), + (UniCase("presuasive"), "persuasive"), + (UniCase("politicains"), "politicians"), + (UniCase("narcassist"), "narcissist"), + (UniCase("redesiging"), "redesign"), + (UniCase("perpetuare"), "perpetuate"), + (UniCase("sovereingty"), "sovereignty"), + (UniCase("calrification"), "clarification"), + (UniCase("europen"), "european"), + (UniCase("crossfiter"), "crossfire"), + (UniCase("spartas"), "spartans"), + (UniCase("proplusion"), "propulsion"), + (UniCase("intrensically"), "intrinsically"), + (UniCase("nashvillle"), "nashville"), + (UniCase("occaisonally"), "occasionally"), + (UniCase("reponse"), "response"), + (UniCase("vernicular"), "vernacular"), + (UniCase("overdrev"), "overdrive"), + (UniCase("dispicable"), "despicable"), + (UniCase("nationalisic"), "nationalistic"), + (UniCase("implantes"), "implants"), + (UniCase("penisular"), "peninsular"), + (UniCase("misgoynist"), "misogynist"), + (UniCase("acquaintence"), "acquaintance"), + (UniCase("striclty"), "strictly"), + (UniCase("detalied"), "detailed"), + (UniCase("pyrmaid"), "pyramid"), + (UniCase("conditionar"), "conditioner"), + (UniCase("capitalits"), "capitalists"), + (UniCase("survavibility"), "survivability"), + (UniCase("performans"), "performances"), + (UniCase("shamelesly"), "shamelessly"), + (UniCase("humours"), "humors"), + (UniCase("proceedure"), "procedure"), + (UniCase("scrathces"), "scratches"), + (UniCase("streamade"), "streamed"), + (UniCase("uncomfortabel"), "uncomfortably"), + (UniCase("catholisim"), "catholicism"), + (UniCase("islamistas"), "islamists"), + (UniCase("electroal"), "electoral"), + (UniCase("reprehinsible"), "reprehensible"), + (UniCase("winnigns"), "winnings"), + (UniCase("knowledgabel"), "knowledgable"), + (UniCase("musuems"), "museums"), + (UniCase("sovereing"), "sovereign"), + (UniCase("humantiy"), "humanity"), + (UniCase("strengthes"), "strengths"), + (UniCase("imperiarist"), "imperialist"), + (UniCase("celebratings"), "celebrations"), + (UniCase("cheeseberger"), "cheeseburger"), + (UniCase("agircultural"), "agricultural"), + (UniCase("lasagnea"), "lasagna"), + (UniCase("vampries"), "vampires"), + (UniCase("condidtion"), "condition"), + (UniCase("renyolds"), "reynolds"), + (UniCase("statistisch"), "statistics"), + (UniCase("akransas"), "arkansas"), + (UniCase("menally"), "mentally"), + (UniCase("cafeteira"), "cafeteria"), + (UniCase("suppresson"), "suppression"), + (UniCase("vitimans"), "vitamins"), + (UniCase("capsuels"), "capsules"), + (UniCase("positon"), "position"), + (UniCase("curcumference"), "circumference"), + (UniCase("surfce"), "surface"), + (UniCase("palstics"), "plastics"), + (UniCase("diffuculties"), "difficulties"), + (UniCase("preferis"), "prefers"), + (UniCase("schizophernic"), "schizophrenic"), + (UniCase("advesary"), "adversary"), + (UniCase("dishonoured"), "dishonored"), + (UniCase("negoitated"), "negotiated"), + (UniCase("recieves"), "receives"), + (UniCase("siezing"), "seizing"), + (UniCase("delusionnal"), "delusional"), + (UniCase("intraverts"), "introverts"), + (UniCase("objectivly"), "objectively"), + (UniCase("developmently"), "developmental"), + (UniCase("specialising"), "specializing"), + (UniCase("agrocultural"), "agricultural"), + (UniCase("malfucntion"), "malfunction"), + (UniCase("disastruous"), "disastrous"), + (UniCase("metabolics"), "metabolism"), + (UniCase("disbelif"), "disbelief"), + (UniCase("germanisch"), "germanic"), + (UniCase("headshoot"), "headshot"), + (UniCase("unicornios"), "unicorns"), + (UniCase("prodecure"), "procedure"), + (UniCase("bulidings"), "buildings"), + (UniCase("paficist"), "pacifist"), + (UniCase("misunterstanding"), "misunderstandings"), + (UniCase("responsing"), "responding"), + (UniCase("broderlands"), "borderlands"), + (UniCase("underastimating"), "underestimating"), + (UniCase("outrageos"), "outrageous"), + (UniCase("westernes"), "westerners"), + (UniCase("parctise"), "practise"), + (UniCase("approacing"), "approaching"), + (UniCase("buisnessmen"), "businessmen"), + (UniCase("counceling"), "counseling"), + (UniCase("portabillity"), "portability"), + (UniCase("triangel"), "triangle"), + (UniCase("survallience"), "surveillance"), + (UniCase("obtainabie"), "obtainable"), + (UniCase("mositurizing"), "moisturizing"), + (UniCase("dynamis"), "dynamics"), + (UniCase("currenly"), "currently"), + (UniCase("technitian"), "technician"), + (UniCase("peom"), "poem"), + (UniCase("snorkelled"), "snorkeled"), + (UniCase("ideologiske"), "ideologies"), + (UniCase("accusating"), "accusation"), + (UniCase("computanti"), "computation"), + (UniCase("minisclue"), "miniscule"), + (UniCase("experssions"), "expressions"), + (UniCase("ioniser"), "ionizer"), + (UniCase("randomrs"), "randoms"), + (UniCase("apologises"), "apologizes"), + (UniCase("crystas"), "crystals"), + (UniCase("counsole"), "counsel"), + (UniCase("sytem"), "system"), + (UniCase("aribter"), "arbiter"), + (UniCase("consficated"), "confiscated"), + (UniCase("attemped"), "attempted"), + (UniCase("recomends"), "recommends"), + (UniCase("pertubation"), "perturbation"), + (UniCase("informable"), "informal"), + (UniCase("implementos"), "implements"), + (UniCase("masterise"), "masteries"), + (UniCase("revelaed"), "revealed"), + (UniCase("allaince"), "alliance"), + (UniCase("interstallar"), "interstellar"), + (UniCase("populatin"), "populations"), + (UniCase("preferentail"), "preferential"), + (UniCase("consolodated"), "consolidated"), + (UniCase("circunstantial"), "circumstantial"), + (UniCase("misygonist"), "misogynist"), + (UniCase("degrassie"), "degrasse"), + (UniCase("subsizided"), "subsidized"), + (UniCase("inutitively"), "intuitively"), + (UniCase("rehabilitaiton"), "rehabilitation"), + (UniCase("survelliance"), "surveillance"), + (UniCase("sylablle"), "syllable"), + (UniCase("manufactering"), "manufacturing"), + (UniCase("narcoticos"), "narcotics"), + (UniCase("suprized"), "surprised"), + (UniCase("capitalizating"), "capitalization"), + (UniCase("kolonization"), "colonization"), + (UniCase("enthically"), "ethnically"), + (UniCase("teamspeack"), "teamspeak"), + (UniCase("cancells"), "cancels"), + (UniCase("delibaretely"), "deliberately"), + (UniCase("jurisdiktion"), "jurisdiction"), + (UniCase("dominent"), "dominant"), + (UniCase("sovereighnty"), "sovereignty"), + (UniCase("labratory"), "laboratory"), + (UniCase("hemmorhage"), "hemorrhage"), + (UniCase("desgination"), "designation"), + (UniCase("philosopers"), "philosophers"), + (UniCase("breadtfeeding"), "breastfeeding"), + (UniCase("psycholoog"), "psychology"), + (UniCase("respectes"), "respects"), + (UniCase("hairstlye"), "hairstyle"), + (UniCase("perpetuae"), "perpetuate"), + (UniCase("observible"), "observable"), + (UniCase("cuddels"), "cuddles"), + (UniCase("torpdeo"), "torpedo"), + (UniCase("particulaly"), "particularly"), + (UniCase("egostitical"), "egotistical"), + (UniCase("protectores"), "protectors"), + (UniCase("accending"), "ascending"), + (UniCase("inpenetrable"), "impenetrable"), + (UniCase("scholorship"), "scholarship"), + (UniCase("inadvertantely"), "inadvertently"), + (UniCase("contaminacion"), "contamination"), + (UniCase("receptie"), "receptive"), + (UniCase("indestructble"), "indestructible"), + (UniCase("evangelises"), "evangelizes"), + (UniCase("acheiving"), "achieving"), + (UniCase("captialized"), "capitalized"), + (UniCase("hosptials"), "hospitals"), + (UniCase("clevery"), "cleverly"), + (UniCase("calaber"), "caliber"), + (UniCase("cthulluh"), "cthulhu"), + (UniCase("homoeopath"), "homeopath"), + (UniCase("pervalence"), "prevalence"), + (UniCase("strwaberry"), "strawberry"), + (UniCase("competitevely"), "competitively"), + (UniCase("arbritarily"), "arbitrarily"), + (UniCase("prophacies"), "prophecies"), + (UniCase("tranistions"), "transitions"), + (UniCase("incarserated"), "incarcerated"), + (UniCase("interpersonel"), "interpersonal"), + (UniCase("proletaryat"), "proletariat"), + (UniCase("intimadated"), "intimidated"), + (UniCase("initails"), "initials"), + (UniCase("maybelleine"), "maybelline"), + (UniCase("refridgerator"), "refrigerator"), + (UniCase("altriustic"), "altruistic"), + (UniCase("patrones"), "patrons"), + (UniCase("circumstanial"), "circumstantial"), + (UniCase("pasuing"), "pausing"), + (UniCase("registerred"), "registered"), + (UniCase("fraternised"), "fraternized"), + (UniCase("curising"), "cruising"), + (UniCase("inpection"), "inception"), + (UniCase("cavarly"), "cavalry"), + (UniCase("anohter"), "another"), + (UniCase("reviewd"), "reviewed"), + (UniCase("tounrey"), "tourney"), + (UniCase("emphatised"), "emphasized"), + (UniCase("cartmaan"), "cartman"), + (UniCase("centres"), "centers"), + (UniCase("unconcious"), "unconscious"), + (UniCase("appetitie"), "appetite"), + (UniCase("exagerating"), "exaggerating"), + (UniCase("deprovation"), "deprivation"), + (UniCase("collobarate"), "collaborate"), + (UniCase("sieze"), "seize"), + (UniCase("imperilling"), "imperiling"), + (UniCase("remeber"), "remember"), + (UniCase("subjectifs"), "subjects"), + (UniCase("respone"), "response"), + (UniCase("institutie"), "institute"), + (UniCase("misrepresention"), "misrepresenting"), + (UniCase("iburpofen"), "ibuprofen"), + (UniCase("sunconscious"), "subconscious"), + (UniCase("emapthy"), "empathy"), + (UniCase("organiszed"), "organise"), + (UniCase("definatey"), "definately"), + (UniCase("vulnerabilites"), "vulnerabilities"), + (UniCase("pitchforkes"), "pitchforks"), + (UniCase("cousings"), "cousins"), + (UniCase("tobbaco"), "tobacco"), + (UniCase("beglium"), "belgium"), + (UniCase("bodybuildng"), "bodybuilding"), + (UniCase("disappearring"), "disappearing"), + (UniCase("mastrubate"), "masturbate"), + (UniCase("recognzied"), "recognised"), + (UniCase("complilation"), "complication"), + (UniCase("melanotin"), "melatonin"), + (UniCase("predominently"), "predominantly"), + (UniCase("unorignial"), "unoriginal"), + (UniCase("paramecias"), "paramedics"), + (UniCase("prestigioso"), "prestigious"), + (UniCase("transfom"), "transform"), + (UniCase("quartercask"), "quarterbacks"), + (UniCase("heavnely"), "heavenly"), + (UniCase("facilitant"), "facilitate"), + (UniCase("bandwdith"), "bandwidth"), + (UniCase("supporteur"), "supporter"), + (UniCase("expectency"), "expectancy"), + (UniCase("abandonned"), "abandoned"), + (UniCase("recomments"), "recommends"), + (UniCase("mulitplying"), "multiplying"), + (UniCase("expressy"), "expressly"), + (UniCase("palistinian"), "palestinian"), + (UniCase("moderatore"), "moderate"), + (UniCase("ideologiers"), "ideologies"), + (UniCase("baptims"), "baptism"), + (UniCase("resolutino"), "resolutions"), + (UniCase("retribucion"), "retribution"), + (UniCase("governmet"), "governments"), + (UniCase("sponatenous"), "spontaneous"), + (UniCase("recreatief"), "recreate"), + (UniCase("abundunt"), "abundant"), + (UniCase("hyrbids"), "hybrids"), + (UniCase("ethcially"), "ethically"), + (UniCase("affiliato"), "affiliation"), + (UniCase("antibitoics"), "antibiotics"), + (UniCase("necessarilly"), "necessarily"), + (UniCase("intruiging"), "intriguing"), + (UniCase("litterfinger"), "littlefinger"), + (UniCase("ninty"), "ninety"), + (UniCase("substarte"), "substrate"), + (UniCase("rebuildling"), "rebuilding"), + (UniCase("indistinquishable"), "indistinguishable"), + (UniCase("rienforcement"), "reinforcements"), + (UniCase("problemas"), "problems"), + (UniCase("unportected"), "unprotected"), + (UniCase("juggurnaut"), "juggernaut"), + (UniCase("seached"), "searched"), + (UniCase("envrionment"), "environment"), + (UniCase("preduction"), "prediction"), + (UniCase("obediance"), "obedience"), + (UniCase("engineerd"), "engineered"), + (UniCase("futureus"), "futures"), + (UniCase("noninital"), "noninitial"), + (UniCase("philosiphy"), "philosophy"), + (UniCase("instabilt"), "instability"), + (UniCase("moralise"), "moralize"), + (UniCase("austiran"), "austrian"), + (UniCase("composte"), "compose"), + (UniCase("comemoretion"), "commemoration"), + (UniCase("godsped"), "godspeed"), + (UniCase("birhtdays"), "birthdays"), + (UniCase("honouring"), "honoring"), + (UniCase("legenderies"), "legendaries"), + (UniCase("awesomelly"), "awesomely"), + (UniCase("underwieght"), "underweight"), + (UniCase("eleminated"), "eliminated"), + (UniCase("capitalisn"), "capitals"), + (UniCase("seskatchewan"), "saskatchewan"), + (UniCase("quantitties"), "quantities"), + (UniCase("comprihend"), "comprehend"), + (UniCase("constituional"), "constitutional"), + (UniCase("incompatiblities"), "incompatibilities"), + (UniCase("homeothapy"), "homeopathy"), + (UniCase("restuarants"), "restaurants"), + (UniCase("nonsencical"), "nonsensical"), + (UniCase("mainfestation"), "manifestation"), + (UniCase("propehcy"), "prophecy"), + (UniCase("patiens"), "patients"), + (UniCase("partiotism"), "patriotism"), + (UniCase("enterpries"), "enterprises"), + (UniCase("spontainously"), "spontaneously"), + (UniCase("analyste"), "analyse"), + (UniCase("austrai"), "austria"), + (UniCase("childrenmrs"), "childrens"), + (UniCase("contraceptie"), "contraceptives"), + (UniCase("tradisional"), "traditional"), + (UniCase("perversley"), "perverse"), + (UniCase("subscirbers"), "subscribers"), + (UniCase("afficianados"), "aficionados"), + (UniCase("stealthray"), "stealthy"), + (UniCase("imexperience"), "inexperience"), + (UniCase("differental"), "differential"), + (UniCase("behavorial"), "behavioral"), + (UniCase("unconfortable"), "uncomfortable"), + (UniCase("immboile"), "immobile"), + (UniCase("pornograghy"), "pornography"), + (UniCase("simluation"), "simulation"), + (UniCase("blegian"), "belgian"), + (UniCase("mutialted"), "mutilated"), + (UniCase("analyticals"), "analytics"), + (UniCase("peciluar"), "peculiar"), + (UniCase("tramsformers"), "transformers"), + (UniCase("explaines"), "explains"), + (UniCase("mamalian"), "mammalian"), + (UniCase("inadvertenly"), "inadvertently"), + (UniCase("violetas"), "violates"), + (UniCase("banglidesh"), "bangladesh"), + (UniCase("repersenting"), "representing"), + (UniCase("neutralisation"), "neutralization"), + (UniCase("rhapsoy"), "rhapsody"), + (UniCase("shaprie"), "sharpie"), + (UniCase("monolothic"), "monolithic"), + (UniCase("shrivelled"), "shriveled"), + (UniCase("legitimise"), "legitimize"), + (UniCase("insturctors"), "instructors"), + (UniCase("tremendoulsy"), "tremendously"), + (UniCase("agonised"), "agonized"), + (UniCase("succesed"), "succeeds"), + (UniCase("confirmd"), "confirmed"), + (UniCase("thursters"), "thrusters"), + (UniCase("estiamte"), "estimate"), + (UniCase("gambolling"), "gamboling"), + (UniCase("downvoteers"), "downvoters"), + (UniCase("computationnal"), "computational"), + (UniCase("configurare"), "configure"), + (UniCase("evreytime"), "everytime"), + (UniCase("avatards"), "avatars"), + (UniCase("supermarktes"), "supermarkets"), + (UniCase("braodway"), "broadway"), + (UniCase("prespective"), "perspective"), + (UniCase("autocorect"), "autocorrect"), + (UniCase("fuelled"), "fueled"), + (UniCase("responsibillity"), "responsibility"), + (UniCase("alwasy"), "always"), + (UniCase("reagrds"), "regards"), + (UniCase("spiritis"), "spirits"), + (UniCase("disastrose"), "disastrous"), + (UniCase("influencie"), "influences"), + (UniCase("sitautions"), "situations"), + (UniCase("realtions"), "relations"), + (UniCase("dedikation"), "dedication"), + (UniCase("implementato"), "implementation"), + (UniCase("collectems"), "collects"), + (UniCase("resistansen"), "resistances"), + (UniCase("perferential"), "preferential"), + (UniCase("odourless"), "odorless"), + (UniCase("precussion"), "percussion"), + (UniCase("preadtors"), "predators"), + (UniCase("assingment"), "assignment"), + (UniCase("redunduncy"), "redundancy"), + (UniCase("hyopcrite"), "hypocrite"), + (UniCase("gagdets"), "gadgets"), + (UniCase("alledgedly"), "allegedly"), + (UniCase("unilatreally"), "unilaterally"), + (UniCase("peacefullly"), "peacefully"), + (UniCase("definitavely"), "definitively"), + (UniCase("methamatician"), "mathematician"), + (UniCase("unedicated"), "uneducated"), + (UniCase("scandivanian"), "scandinavian"), + (UniCase("preferibly"), "preferably"), + (UniCase("referenceing"), "referencing"), + (UniCase("snetries"), "sentries"), + (UniCase("singelplayer"), "singleplayer"), + (UniCase("nieghbor"), "neighbor"), + (UniCase("someoens"), "someones"), + (UniCase("atcualy"), "actualy"), + (UniCase("contuining"), "continuing"), + (UniCase("avaialble"), "available"), + (UniCase("speculatin"), "speculation"), + (UniCase("headquater"), "headquarter"), + (UniCase("reinitalize"), "reinitialize"), + (UniCase("randomises"), "randomizes"), + (UniCase("hullucinations"), "hallucinations"), + (UniCase("superviors"), "supervisors"), + (UniCase("mispell"), "misspell"), + (UniCase("judgemant"), "judgemental"), + (UniCase("appropirately"), "appropriately"), + (UniCase("capitilist"), "capitalist"), + (UniCase("blockeras"), "blockers"), + (UniCase("addoptive"), "adoptive"), + (UniCase("inconsistancy"), "inconsistency"), + (UniCase("asethetics"), "aesthetics"), + (UniCase("discontiuned"), "discontinued"), + (UniCase("casaulty"), "casualty"), + (UniCase("authoritate"), "authoritative"), + (UniCase("repsective"), "respective"), + (UniCase("arkasnas"), "arkansas"), + (UniCase("ommision"), "omission"), + (UniCase("departmnet"), "departments"), + (UniCase("dissonence"), "dissonance"), + (UniCase("contiuning"), "containing"), + (UniCase("reminicient"), "reminiscent"), + (UniCase("stromfront"), "stormfront"), + (UniCase("investigare"), "investigate"), + (UniCase("congresman"), "congressman"), + (UniCase("trustworhy"), "trustworthy"), + (UniCase("lionisation"), "lionization"), + (UniCase("vitaliy"), "vitality"), + (UniCase("extravigant"), "extravagant"), + (UniCase("constructifs"), "constructs"), + (UniCase("unempolyment"), "unemployment"), + (UniCase("continentul"), "continental"), + (UniCase("manouvers"), "maneuvers"), + (UniCase("constnatly"), "constantly"), + (UniCase("straightin"), "straighten"), + (UniCase("empirialism"), "imperialism"), + (UniCase("responcibly"), "responsibly"), + (UniCase("unusualy"), "unusually"), + (UniCase("reaserched"), "researched"), + (UniCase("espressino"), "espresso"), + (UniCase("establishmnet"), "establishments"), + (UniCase("spotifiy"), "spotify"), + (UniCase("blackhwaks"), "blackhawks"), + (UniCase("aminosity"), "animosity"), + (UniCase("silouhette"), "silhouette"), + (UniCase("deisgnated"), "designated"), + (UniCase("congratule"), "congratulate"), + (UniCase("tragicallly"), "tragically"), + (UniCase("revolutionairy"), "revolutionary"), + (UniCase("finaly"), "finally"), + (UniCase("vasalls"), "vassals"), + (UniCase("dimention"), "dimension"), + (UniCase("competitons"), "competitors"), + (UniCase("midfielers"), "midfielders"), + (UniCase("playaround"), "playground"), + (UniCase("sophistacated"), "sophisticated"), + (UniCase("evidencd"), "evidenced"), + (UniCase("embarressment"), "embarrassment"), + (UniCase("pyjama"), "pajama"), + (UniCase("aisian"), "asian"), + (UniCase("deficiensies"), "deficiencies"), + (UniCase("gltichy"), "glitchy"), + (UniCase("communciated"), "communicated"), + (UniCase("collegaues"), "colleagues"), + (UniCase("trasnferring"), "transferring"), + (UniCase("perpetuties"), "perpetuates"), + (UniCase("falvours"), "flavours"), + (UniCase("messagers"), "messages"), + (UniCase("somethihng"), "somethin"), + (UniCase("indiania"), "indiana"), + (UniCase("politicin"), "politician"), + (UniCase("compreso"), "compressor"), + (UniCase("implausable"), "implausible"), + (UniCase("squirrl"), "squirrel"), + (UniCase("anuglar"), "angular"), + (UniCase("sponsorhip"), "sponsorship"), + (UniCase("polymore"), "polymer"), + (UniCase("precrastination"), "procrastination"), + (UniCase("inbetwen"), "inbetween"), + (UniCase("exhibitin"), "exhibition"), + (UniCase("nickmane"), "nickname"), + (UniCase("representating"), "representation"), + (UniCase("philosipher"), "philosopher"), + (UniCase("noramls"), "normals"), + (UniCase("underwarter"), "underwater"), + (UniCase("connectivty"), "connectivity"), + (UniCase("labelling"), "labeling"), + (UniCase("recongised"), "recognised"), + (UniCase("clamoured"), "clamored"), + (UniCase("sodomised"), "sodomized"), + (UniCase("distirbutions"), "distributions"), + (UniCase("beatiful"), "beautiful"), + (UniCase("sheelpe"), "sheeple"), + (UniCase("fingertaps"), "fingertips"), + (UniCase("unconditionnal"), "unconditional"), + (UniCase("regulatons"), "regulations"), + (UniCase("capsulers"), "capsules"), + (UniCase("deliveres"), "delivers"), + (UniCase("irleand"), "ireland"), + (UniCase("suceed"), "succeed"), + (UniCase("knuckels"), "knuckles"), + (UniCase("inefficienct"), "inefficient"), + (UniCase("aesthitically"), "aesthetically"), + (UniCase("stigmatisation"), "stigmatization"), + (UniCase("zimbabew"), "zimbabwe"), + (UniCase("calculationg"), "calculating"), + (UniCase("carribbean"), "caribbean"), + (UniCase("withh"), "with"), + (UniCase("enterprsie"), "enterprises"), + (UniCase("additonal"), "additional"), + (UniCase("discribing"), "describing"), + (UniCase("vaklyrie"), "valkyrie"), + (UniCase("spotfiy"), "spotify"), + (UniCase("disagred"), "disagreed"), + (UniCase("popularises"), "popularizes"), + (UniCase("deifnitly"), "definitly"), + (UniCase("domecracy"), "democracy"), + (UniCase("magasine"), "magazine"), + (UniCase("altruisitc"), "altruistic"), + (UniCase("breastfeeing"), "breastfeeding"), + (UniCase("larington"), "arlington"), + (UniCase("blueburries"), "blueberries"), + (UniCase("fedreally"), "federally"), + (UniCase("accpetable"), "acceptable"), + (UniCase("temperatue"), "temperature"), + (UniCase("kongregation"), "congregation"), + (UniCase("complexy"), "complexity"), + (UniCase("similarlity"), "similarity"), + (UniCase("multipe"), "multiple"), + (UniCase("encompase"), "encompass"), + (UniCase("unnessecarily"), "unnecessarily"), + (UniCase("eurpoeans"), "europeans"), + (UniCase("breweres"), "brewers"), + (UniCase("amendmenters"), "amendments"), + (UniCase("suphisticated"), "sophisticated"), + (UniCase("jasmien"), "jasmine"), + (UniCase("defianlty"), "defiantly"), + (UniCase("horrenduous"), "horrendous"), + (UniCase("weightened"), "weighted"), + (UniCase("cababge"), "cabbage"), + (UniCase("thermometre"), "thermometer"), + (UniCase("vindicitve"), "vindictive"), + (UniCase("judegments"), "judgements"), + (UniCase("capitalsit"), "capitalists"), + (UniCase("definetly"), "definitely"), + (UniCase("monopols"), "monopolies"), + (UniCase("cirucmstances"), "circumstances"), + (UniCase("policitian"), "politician"), + (UniCase("monumentals"), "monuments"), + (UniCase("wavelenghts"), "wavelength"), + (UniCase("anonymousy"), "anonymously"), + (UniCase("clairty"), "clarity"), + (UniCase("athiest"), "atheist"), + (UniCase("cannabilism"), "cannibalism"), + (UniCase("contirbution"), "contribution"), + (UniCase("interractial"), "interracial"), + (UniCase("reduncancy"), "redundancy"), + (UniCase("sunscreeen"), "sunscreen"), + (UniCase("signular"), "singular"), + (UniCase("neglicence"), "negligence"), + (UniCase("physcis"), "physics"), + (UniCase("encompasess"), "encompasses"), + (UniCase("requierment"), "requirements"), + (UniCase("facilisi"), "facilities"), + (UniCase("sprintas"), "sprints"), + (UniCase("sarcasticlly"), "sarcastically"), + (UniCase("convincersi"), "convinces"), + (UniCase("semnatics"), "semantics"), + (UniCase("unrestrcited"), "unrestricted"), + (UniCase("converdation"), "conservation"), + (UniCase("metropolys"), "metropolis"), + (UniCase("romaing"), "roaming"), + (UniCase("protistants"), "protestants"), + (UniCase("analyes"), "analyse"), + (UniCase("presicely"), "precisely"), + (UniCase("insualted"), "insulated"), + (UniCase("incorparating"), "incorporating"), + (UniCase("unionises"), "unionizes"), + (UniCase("southamton"), "southampton"), + (UniCase("encounterd"), "encountered"), + (UniCase("promplty"), "promptly"), + (UniCase("confidentely"), "confidently"), + (UniCase("traversare"), "traverse"), + (UniCase("bioplar"), "bipolar"), + (UniCase("hypothecis"), "hypothesis"), + (UniCase("benevalent"), "benevolent"), + (UniCase("rythim"), "rhythm"), + (UniCase("hunman"), "human"), + (UniCase("imporvement"), "improvement"), + (UniCase("histarically"), "historically"), + (UniCase("forseeable"), "foreseeable"), + (UniCase("obejctives"), "objectives"), + (UniCase("mulitplied"), "multiplied"), + (UniCase("galvanises"), "galvanizes"), + (UniCase("nuetered"), "neutered"), + (UniCase("intercepticons"), "interceptions"), + (UniCase("medioce"), "mediocre"), + (UniCase("storise"), "stories"), + (UniCase("autocorrext"), "autocorrect"), + (UniCase("jamiaca"), "jamaica"), + (UniCase("possessin"), "possessions"), + (UniCase("pointeur"), "pointer"), + (UniCase("relatie"), "relative"), + (UniCase("morrsion"), "morrison"), + (UniCase("premines"), "premise"), + (UniCase("livley"), "lively"), + (UniCase("sensationnal"), "sensational"), + (UniCase("complimentery"), "complimentary"), + (UniCase("condensend"), "condensed"), + (UniCase("distrubances"), "disturbance"), + (UniCase("expolitative"), "exploitative"), + (UniCase("restruction"), "restriction"), + (UniCase("spectecular"), "spectacular"), + (UniCase("demonstartions"), "demonstrations"), + (UniCase("orelans"), "orleans"), + (UniCase("disadventages"), "disadvantages"), + (UniCase("omlette"), "omelette"), + (UniCase("somethiing"), "somethin"), + (UniCase("baynoet"), "bayonet"), + (UniCase("syllabel"), "syllable"), + (UniCase("trhusters"), "thrusters"), + (UniCase("cultrual"), "cultural"), + (UniCase("vitirol"), "vitriol"), + (UniCase("underpowred"), "underpowered"), + (UniCase("electronicas"), "electronics"), + (UniCase("cartdriges"), "cartridges"), + (UniCase("industrije"), "industries"), + (UniCase("functionning"), "functioning"), + (UniCase("proletariot"), "proletariat"), + (UniCase("forminable"), "formidable"), + (UniCase("consistenly"), "consistently"), + (UniCase("incestigator"), "investigator"), + (UniCase("misteryous"), "mysterious"), + (UniCase("paychiatrist"), "psychiatrist"), + (UniCase("realsim"), "realism"), + (UniCase("appraoch"), "approach"), + (UniCase("descrpition"), "descriptions"), + (UniCase("dramatisation"), "dramatization"), + (UniCase("sticthes"), "stitches"), + (UniCase("tribuanl"), "tribunal"), + (UniCase("accustommed"), "accustomed"), + (UniCase("conjucntion"), "conjunction"), + (UniCase("interpretaion"), "interpretation"), + (UniCase("geographia"), "geographical"), + (UniCase("expalined"), "explained"), + (UniCase("compatibel"), "compatible"), + (UniCase("controversey"), "controversy"), + (UniCase("yatch"), "yacht"), + (UniCase("relentlessy"), "relentlessly"), + (UniCase("furctose"), "fructose"), + (UniCase("mulitated"), "mutilated"), + (UniCase("intangable"), "intangible"), + (UniCase("intellectualise"), "intellectualize"), + (UniCase("collectivelly"), "collectively"), + (UniCase("infringeing"), "infringing"), + (UniCase("contempoary"), "contemporary"), + (UniCase("tablespooons"), "tablespoon"), + (UniCase("aggegrate"), "aggregate"), + (UniCase("contrubite"), "contributes"), + (UniCase("automoblies"), "automobile"), + (UniCase("overhtinking"), "overthinking"), + (UniCase("victoires"), "victories"), + (UniCase("specialis"), "specials"), + (UniCase("shcolars"), "scholars"), + (UniCase("mosture"), "moisture"), + (UniCase("accountas"), "accountants"), + (UniCase("initiatve"), "initiate"), + (UniCase("enthral"), "enthrall"), + (UniCase("sketpicism"), "skepticism"), + (UniCase("disillusionned"), "disillusioned"), + (UniCase("interrogato"), "interrogation"), + (UniCase("comdeic"), "comedic"), + (UniCase("switcheasy"), "switches"), + (UniCase("exept"), "except"), + (UniCase("prodecures"), "procedures"), + (UniCase("arguablly"), "arguably"), + (UniCase("legitimatley"), "legitimately"), + (UniCase("particapated"), "participated"), + (UniCase("summorized"), "summarized"), + (UniCase("scracth"), "scratch"), + (UniCase("dissipointed"), "dissapointed"), + (UniCase("deveolpment"), "developments"), + (UniCase("ostrasiced"), "ostracized"), + (UniCase("decembre"), "december"), + (UniCase("direclty"), "directly"), + (UniCase("manupulation"), "manipulation"), + (UniCase("latnern"), "lantern"), + (UniCase("monumentaal"), "monumental"), + (UniCase("sebastain"), "sebastian"), + (UniCase("justifible"), "justifiable"), + (UniCase("unintentinal"), "unintentional"), + (UniCase("literatire"), "literate"), + (UniCase("pscyhologists"), "psychologists"), + (UniCase("proposte"), "propose"), + (UniCase("unoticeable"), "unnoticeable"), + (UniCase("paralles"), "parallels"), + (UniCase("brewerey"), "brewery"), + (UniCase("cleanlyness"), "cleanliness"), + (UniCase("squrriel"), "squirrel"), + (UniCase("dishonouring"), "dishonoring"), + (UniCase("articifial"), "artificial"), + (UniCase("episonage"), "espionage"), + (UniCase("temparement"), "temperament"), + (UniCase("ahtleticism"), "athleticism"), + (UniCase("backpacs"), "backpacks"), + (UniCase("undoubtetly"), "undoubtedly"), + (UniCase("attackerats"), "attackers"), + (UniCase("nationalistisk"), "nationalists"), + (UniCase("worls"), "world"), + (UniCase("capusle"), "capsule"), + (UniCase("differneces"), "differences"), + (UniCase("manufactureds"), "manufactures"), + (UniCase("pakistian"), "pakistani"), + (UniCase("puchasing"), "purchasing"), + (UniCase("gardient"), "gradient"), + (UniCase("authorizaton"), "authorization"), + (UniCase("endlessy"), "endlessly"), + (UniCase("simualtions"), "simulations"), + (UniCase("performence"), "performance"), + (UniCase("abberivation"), "abbreviation"), + (UniCase("foresnic"), "forensic"), + (UniCase("enthusists"), "enthusiasts"), + (UniCase("crusier"), "cruiser"), + (UniCase("produktive"), "productive"), + (UniCase("edficient"), "deficient"), + (UniCase("russion"), "russian"), + (UniCase("autoattaks"), "autoattack"), + (UniCase("advertisters"), "advertisers"), + (UniCase("kidnappade"), "kidnapped"), + (UniCase("samckdown"), "smackdown"), + (UniCase("fundemantalists"), "fundamentalists"), + (UniCase("encorporated"), "incorporated"), + (UniCase("competitiors"), "competitors"), + (UniCase("abbrievations"), "abbreviation"), + (UniCase("vehementy"), "vehemently"), + (UniCase("courtsey"), "courtesy"), + (UniCase("substantiable"), "substantial"), + (UniCase("intenational"), "international"), + (UniCase("shledon"), "sheldon"), + (UniCase("syirans"), "syrians"), + (UniCase("intrepretations"), "interpretations"), + (UniCase("inagurated"), "inaugurated"), + (UniCase("gentelmen"), "gentlemen"), + (UniCase("inapproprietly"), "inappropriately"), + (UniCase("conspiraces"), "conspiracies"), + (UniCase("uncivilised"), "uncivilized"), + (UniCase("adressed"), "addressed"), + (UniCase("emphesizing"), "emphasizing"), + (UniCase("disillisioned"), "disillusioned"), + (UniCase("expodential"), "exponential"), + (UniCase("encyclopdia"), "encyclopedia"), + (UniCase("thsi"), "this"), + (UniCase("strat"), "start"), + (UniCase("ecoligical"), "ecological"), + (UniCase("qualifires"), "qualifiers"), + (UniCase("descrise"), "describes"), + (UniCase("amercians"), "americans"), + (UniCase("architecturial"), "architectural"), + (UniCase("metaphyscial"), "metaphysical"), + (UniCase("marginalised"), "marginalized"), + (UniCase("evangelikal"), "evangelical"), + (UniCase("frustartion"), "frustrations"), + (UniCase("misinterpretating"), "misinterpreting"), + (UniCase("negelcting"), "neglecting"), + (UniCase("donwgraded"), "downgraded"), + (UniCase("dichotomoy"), "dichotomy"), + (UniCase("cardianl"), "cardinal"), + (UniCase("deteriate"), "deteriorate"), + (UniCase("thoerist"), "theorist"), + (UniCase("progressin"), "progression"), + (UniCase("repsonsible"), "responsible"), + (UniCase("repersents"), "represents"), + (UniCase("posessions"), "possessions"), + (UniCase("depositos"), "deposits"), + (UniCase("installatin"), "installations"), + (UniCase("respoted"), "reposted"), + (UniCase("mysterieuse"), "mysteries"), + (UniCase("disgrunteled"), "disgruntled"), + (UniCase("kindapping"), "kidnapping"), + (UniCase("antoganist"), "antagonist"), + (UniCase("undoubtedy"), "undoubtedly"), + (UniCase("microphonies"), "microphones"), + (UniCase("breserk"), "berserk"), + (UniCase("chocolateers"), "chocolates"), + (UniCase("intervenue"), "intervene"), + (UniCase("tangenitally"), "tangentially"), + (UniCase("unconvensional"), "unconventional"), + (UniCase("veichles"), "vehicles"), + (UniCase("realisitcally"), "realistically"), + (UniCase("conseqeunces"), "consequence"), + (UniCase("patriatism"), "patriotism"), + (UniCase("aircaft"), "aircraft"), + (UniCase("anticiapte"), "anticipate"), + (UniCase("embargos"), "embargoes"), + (UniCase("undenaible"), "undeniable"), + (UniCase("compeditor"), "competitor"), + (UniCase("centipeddle"), "centipede"), + (UniCase("algorhitms"), "algorithms"), + (UniCase("nationalisitic"), "nationalistic"), + (UniCase("flourescent"), "fluorescent"), + (UniCase("miraculos"), "miraculous"), + (UniCase("potencially"), "potentially"), + (UniCase("startegy"), "strategy"), + (UniCase("interecting"), "interacting"), + (UniCase("enchancing"), "enchanting"), + (UniCase("spotifty"), "spotify"), + (UniCase("exhasuting"), "exhausting"), + (UniCase("hosteles"), "hostels"), + (UniCase("alphabt"), "alphabet"), + (UniCase("sunconsciously"), "subconsciously"), + (UniCase("differnetial"), "differential"), + (UniCase("attemt"), "attempt"), + (UniCase("messagepad"), "messaged"), + (UniCase("voluntairy"), "voluntarily"), + (UniCase("enourmous"), "enormous"), + (UniCase("simulato"), "simulation"), + (UniCase("libertania"), "libertarians"), + (UniCase("transitionning"), "transitioning"), + (UniCase("fwankenstein"), "frankenstein"), + (UniCase("raspberrry"), "raspberry"), + (UniCase("counteres"), "counters"), + (UniCase("methapor"), "metaphor"), + (UniCase("warrante"), "warranties"), + (UniCase("debufffs"), "debuffs"), + (UniCase("litihum"), "lithium"), + (UniCase("permises"), "premises"), + (UniCase("steroetype"), "stereotype"), + (UniCase("cancelas"), "cancels"), + (UniCase("limitativo"), "limitation"), + (UniCase("justificatons"), "justifications"), + (UniCase("raidance"), "radiance"), + (UniCase("disucssion"), "discussion"), + (UniCase("transkription"), "transcription"), + (UniCase("majoroty"), "majority"), + (UniCase("sanitise"), "sanitize"), + (UniCase("conceptial"), "conceptual"), + (UniCase("carreer"), "career"), + (UniCase("electrolyes"), "electrolytes"), + (UniCase("breathalyser"), "breathalyzer"), + (UniCase("clagary"), "calgary"), + (UniCase("duplicitas"), "duplicates"), + (UniCase("compresas"), "compress"), + (UniCase("ungrapeful"), "ungrateful"), + (UniCase("allainces"), "alliances"), + (UniCase("reveiws"), "reviews"), + (UniCase("sermonised"), "sermonized"), + (UniCase("paralzyed"), "paralyzed"), + (UniCase("expendible"), "expendable"), + (UniCase("synonomous"), "synonymous"), + (UniCase("metrices"), "metrics"), + (UniCase("personatus"), "personas"), + (UniCase("institucion"), "institution"), + (UniCase("lacklusture"), "lackluster"), + (UniCase("divintiy"), "divinity"), + (UniCase("ameythst"), "amethyst"), + (UniCase("furstration"), "frustration"), + (UniCase("profesions"), "profession"), + (UniCase("createn"), "creatine"), + (UniCase("motherboad"), "motherboard"), + (UniCase("enthisiasts"), "enthusiasts"), + (UniCase("econimists"), "economists"), + (UniCase("electircal"), "electrical"), + (UniCase("rewatchd"), "rewatched"), + (UniCase("hyrdaulic"), "hydraulic"), + (UniCase("predicessors"), "predecessors"), + (UniCase("telegrah"), "telegraph"), + (UniCase("vocabularly"), "vocabulary"), + (UniCase("embassay"), "embassy"), + (UniCase("counselers"), "counselors"), + (UniCase("ditactorship"), "dictatorship"), + (UniCase("killingest"), "killings"), + (UniCase("presumpton"), "presumption"), + (UniCase("relagation"), "relaxation"), + (UniCase("despensaries"), "dispensaries"), + (UniCase("neighboorhod"), "neighbourhood"), + (UniCase("rahpsody"), "rhapsody"), + (UniCase("gnawwed"), "gnawed"), + (UniCase("egotystical"), "egotistical"), + (UniCase("extractnow"), "extraction"), + (UniCase("antaganist"), "antagonist"), + (UniCase("unanimoulsy"), "unanimous"), + (UniCase("agricultual"), "agricultural"), + (UniCase("destiney"), "destiny"), + (UniCase("skepitcal"), "skeptical"), + (UniCase("barbarain"), "barbarian"), + (UniCase("coincidencal"), "coincidental"), + (UniCase("organiske"), "organise"), + (UniCase("volounteers"), "volunteers"), + (UniCase("infroms"), "informs"), + (UniCase("benchamrk"), "benchmark"), + (UniCase("matchmakeing"), "matchmaking"), + (UniCase("flexibiltiy"), "flexibility"), + (UniCase("argumentatie"), "argumentative"), + (UniCase("communicaiton"), "communication"), + (UniCase("forenisc"), "forensic"), + (UniCase("theisitc"), "theistic"), + (UniCase("symapthize"), "sympathize"), + (UniCase("fulfilment"), "fulfillment"), + (UniCase("strategems"), "strategies"), + (UniCase("substanses"), "substances"), + (UniCase("attmepted"), "attempted"), + (UniCase("jaguares"), "jaguars"), + (UniCase("simualted"), "simulated"), + (UniCase("quinessential"), "quintessential"), + (UniCase("ingredientes"), "ingredients"), + (UniCase("jounralism"), "journalism"), + (UniCase("sponteneous"), "spontaneous"), + (UniCase("articluated"), "articulated"), + (UniCase("indonasian"), "indonesian"), + (UniCase("fundirse"), "fundies"), + (UniCase("civilains"), "civilians"), + (UniCase("peaples"), "peoples"), + (UniCase("vetween"), "between"), + (UniCase("panthoen"), "pantheon"), + (UniCase("checkpoit"), "checkpoints"), + (UniCase("contridicted"), "contradicted"), + (UniCase("compatibily"), "compatibility"), + (UniCase("unjustifed"), "unjustified"), + (UniCase("hyprocisy"), "hypocrisy"), + (UniCase("claer"), "clear"), + (UniCase("backpedalling"), "backpedaling"), + (UniCase("reliabilty"), "reliability"), + (UniCase("juptier"), "jupiter"), + (UniCase("conversationg"), "conservation"), + (UniCase("execitioner"), "executioner"), + (UniCase("thoroughy"), "thoroughly"), + (UniCase("touchda"), "touchpad"), + (UniCase("connectivety"), "connectivity"), + (UniCase("addictis"), "addictions"), + (UniCase("euorpean"), "european"), + (UniCase("woudlnt"), "wouldnt"), + (UniCase("cylcops"), "cyclops"), + (UniCase("thunderbowl"), "thunderbolt"), + (UniCase("simultaneos"), "simultaneous"), + (UniCase("acceleratio"), "accelerator"), + (UniCase("apartheied"), "apartheid"), + (UniCase("stupidr"), "stupider"), + (UniCase("transferrring"), "transferring"), + (UniCase("agina"), "again"), + (UniCase("complicatied"), "complicate"), + (UniCase("contribuie"), "contribute"), + (UniCase("hypertorphy"), "hypertrophy"), + (UniCase("acceptence"), "acceptance"), + (UniCase("occured"), "occurred"), + (UniCase("bachleor"), "bachelor"), + (UniCase("engagaments"), "engagements"), + (UniCase("responsibel"), "responsibly"), + (UniCase("spacebr"), "spacebar"), + (UniCase("parrallell"), "parallel"), + (UniCase("snycing"), "syncing"), + (UniCase("overlapsing"), "overlapping"), + (UniCase("anticiaption"), "anticipation"), + (UniCase("psychedilic"), "psychedelic"), + (UniCase("assosiating"), "associating"), + (UniCase("concission"), "concession"), + (UniCase("symphatized"), "sympathize"), + (UniCase("subscrible"), "subscriber"), + (UniCase("accomadates"), "accommodates"), + (UniCase("anecdotice"), "anecdote"), + (UniCase("abreviated"), "abbreviated"), + (UniCase("intiminated"), "intimidated"), + (UniCase("automatted"), "automate"), + (UniCase("comprimised"), "compromised"), + (UniCase("modificato"), "modification"), + (UniCase("sympathiers"), "sympathizers"), + (UniCase("illumunati"), "illuminati"), + (UniCase("subsidizied"), "subsidized"), + (UniCase("reffered"), "referred"), + (UniCase("inproductive"), "unproductive"), + (UniCase("renaissanse"), "renaissance"), + (UniCase("prusuit"), "pursuit"), + (UniCase("chromosoom"), "chromosome"), + (UniCase("simplisitc"), "simplistic"), + (UniCase("constitutents"), "constitutes"), + (UniCase("heaviweight"), "heavyweight"), + (UniCase("instinctivly"), "instinctively"), + (UniCase("lebanesse"), "lebanese"), + (UniCase("anlaytics"), "analytics"), + (UniCase("privilegs"), "privileges"), + (UniCase("schizoprhenia"), "schizophrenia"), + (UniCase("veritiable"), "verifiable"), + (UniCase("ostencibly"), "ostensibly"), + (UniCase("religiones"), "religions"), + (UniCase("andd"), "and"), + (UniCase("misintrepret"), "misinterpret"), + (UniCase("mechanisation"), "mechanization"), + (UniCase("rhaposdy"), "rhapsody"), + (UniCase("syphon"), "siphon"), + (UniCase("comparitively"), "comparatively"), + (UniCase("nocture"), "nocturne"), + (UniCase("highschol"), "highschool"), + (UniCase("brunete"), "brunette"), + (UniCase("swtiched"), "switched"), + (UniCase("similiarly"), "similarly"), + (UniCase("unbelievablely"), "unbelievably"), + (UniCase("cleasner"), "cleanser"), + (UniCase("preveiw"), "preview"), + (UniCase("prediciment"), "predicament"), + (UniCase("alliviate"), "alleviate"), + (UniCase("supervisiors"), "supervisors"), + (UniCase("quarrelled"), "quarreled"), + (UniCase("collectieve"), "collective"), + (UniCase("misinterperted"), "misinterpreted"), + (UniCase("ppublisher"), "publisher"), + (UniCase("emtpiness"), "emptiness"), + (UniCase("spartanops"), "spartans"), + (UniCase("sponzored"), "sponsored"), + (UniCase("inexplicibly"), "inexplicably"), + (UniCase("superioris"), "superiors"), + (UniCase("examinerad"), "examined"), + (UniCase("widgetas"), "widgets"), + (UniCase("posthomous"), "posthumous"), + (UniCase("cyrstals"), "crystals"), + (UniCase("custumized"), "customized"), + (UniCase("mitres"), "miters"), + (UniCase("regulatorios"), "regulators"), + (UniCase("announcents"), "announces"), + (UniCase("decribes"), "describes"), + (UniCase("responsably"), "responsibly"), + (UniCase("intuitivley"), "intuitively"), + (UniCase("miracilously"), "miraculously"), + (UniCase("combinatios"), "combinations"), + (UniCase("pressurised"), "pressurized"), + (UniCase("ddogers"), "dodgers"), + (UniCase("plansewalkers"), "planeswalker"), + (UniCase("persuit"), "pursuit"), + (UniCase("repeatidly"), "repeatedly"), + (UniCase("demilitarising"), "demilitarizing"), + (UniCase("hwole"), "whole"), + (UniCase("professionalised"), "professionalized"), + (UniCase("pedestrianising"), "pedestrianizing"), + (UniCase("terminilogy"), "terminology"), + (UniCase("incongito"), "incognito"), + (UniCase("malyasia"), "malaysia"), + (UniCase("specualtions"), "speculation"), + (UniCase("chequebooks"), "checkbooks"), + (UniCase("anonimously"), "anonymously"), + (UniCase("suprisd"), "suprised"), + (UniCase("metaphyiscs"), "metaphysics"), + (UniCase("peacefuly"), "peacefully"), + (UniCase("interpet"), "interpret"), + (UniCase("schedual"), "schedule"), + (UniCase("siganture"), "signature"), + (UniCase("industrija"), "industrial"), + (UniCase("desintegrated"), "disintegrated"), + (UniCase("redneckers"), "rednecks"), + (UniCase("separatiste"), "separates"), + (UniCase("interperted"), "interpreted"), + (UniCase("legionis"), "legions"), + (UniCase("reconsiled"), "reconsider"), + (UniCase("downvotters"), "downvoters"), + (UniCase("noteriety"), "notoriety"), + (UniCase("hapen"), "happen"), + (UniCase("destinctions"), "destinations"), + (UniCase("embarrased"), "embarrassed"), + (UniCase("analogues"), "analogs"), + (UniCase("annoucnements"), "announcements"), + (UniCase("restorarion"), "restoration"), + (UniCase("eytmology"), "etymology"), + (UniCase("advertisment"), "advertisement"), + (UniCase("narcissisist"), "narcissist"), + (UniCase("naturually"), "naturally"), + (UniCase("chihauhua"), "chihuahua"), + (UniCase("backpackng"), "backpacking"), + (UniCase("molestato"), "molestation"), + (UniCase("acquisation"), "acquisition"), + (UniCase("inexperineced"), "inexperience"), + (UniCase("facsination"), "fascination"), + (UniCase("undergradate"), "undergraduate"), + (UniCase("conplications"), "complications"), + (UniCase("corrilation"), "correlation"), + (UniCase("commenty"), "commentary"), + (UniCase("rigeur"), "rigueur"), + (UniCase("swtizerland"), "switzerland"), + (UniCase("marshamllows"), "marshmallows"), + (UniCase("mauarder"), "marauder"), + (UniCase("soliders"), "soldiers"), + (UniCase("longitudonal"), "longitudinal"), + (UniCase("andorids"), "androids"), + (UniCase("bluebery"), "blueberry"), + (UniCase("underwoord"), "underworld"), + (UniCase("compatablity"), "compatibility"), + (UniCase("purchashing"), "purchasing"), + (UniCase("depencency"), "dependency"), + (UniCase("relfective"), "reflective"), + (UniCase("substitutents"), "substitutes"), + (UniCase("filterd"), "filtered"), + (UniCase("conservatie"), "conservatives"), + (UniCase("disresepcted"), "disrespected"), + (UniCase("propolsion"), "propulsion"), + (UniCase("compraison"), "comparisons"), + (UniCase("complicacion"), "complication"), + (UniCase("trakcers"), "trackers"), + (UniCase("chracter"), "character"), + (UniCase("tempuratures"), "temperatures"), + (UniCase("realiste"), "realise"), + (UniCase("balcklist"), "blacklist"), + (UniCase("participatie"), "participated"), + (UniCase("nightlcub"), "nightclub"), + (UniCase("artificailly"), "artificially"), + (UniCase("balanceada"), "balanced"), + (UniCase("palce"), "place"), + (UniCase("demcorats"), "democrats"), + (UniCase("ouput"), "output"), + (UniCase("catalyse"), "catalyze"), + (UniCase("seaches"), "searches"), + (UniCase("masturabtion"), "masturbation"), + (UniCase("conveinent"), "convenient"), + (UniCase("renderd"), "rendered"), + (UniCase("sufficit"), "sufficient"), + (UniCase("membranaphone"), "membranophone"), + (UniCase("overwhemling"), "overwhelming"), + (UniCase("vassales"), "vassals"), + (UniCase("beahviours"), "behaviours"), + (UniCase("beautyfull"), "beautiful"), + (UniCase("specificato"), "specification"), + (UniCase("cinemetography"), "cinematography"), + (UniCase("woodworkign"), "woodworking"), + (UniCase("intolorent"), "intolerant"), + (UniCase("persan"), "person"), + (UniCase("geograpy"), "geography"), + (UniCase("communiste"), "communities"), + (UniCase("musicallity"), "musically"), + (UniCase("conditionnal"), "conditional"), + (UniCase("posions"), "poisons"), + (UniCase("snadstorm"), "sandstorm"), + (UniCase("mentionnes"), "mentions"), + (UniCase("robotis"), "robotics"), + (UniCase("cooldwons"), "cooldowns"), + (UniCase("metorpolitan"), "metropolitan"), + (UniCase("idealistc"), "idealistic"), + (UniCase("brazilias"), "brazilians"), + (UniCase("ocassioned"), "occasioned"), + (UniCase("brabarian"), "barbarian"), + (UniCase("eahc"), "each"), + (UniCase("strugglebus"), "struggles"), + (UniCase("inquisitio"), "inquisitor"), + (UniCase("landspaces"), "landscapes"), + (UniCase("concret"), "concert"), + (UniCase("definations"), "definitions"), + (UniCase("scandalos"), "scandals"), + (UniCase("lieutanent"), "lieutenant"), + (UniCase("consecuences"), "consequences"), + (UniCase("liebrals"), "liberals"), + (UniCase("intercation"), "integration"), + (UniCase("inaccuraces"), "inaccuracies"), + (UniCase("contaire"), "containers"), + (UniCase("prevelant"), "prevalent"), + (UniCase("crulety"), "cruelty"), + (UniCase("addictes"), "addicts"), + (UniCase("indefinity"), "indefinitely"), + (UniCase("underminde"), "undermines"), + (UniCase("anaesthetic"), "anesthetic"), + (UniCase("lighitng"), "lighting"), + (UniCase("bougainvillaeas"), "bougainvilleas"), + (UniCase("republicants"), "republicans"), + (UniCase("charocal"), "charcoal"), + (UniCase("populair"), "popular"), + (UniCase("scirptures"), "scriptures"), + (UniCase("dysfucntion"), "dysfunction"), + (UniCase("infinit"), "infinite"), + (UniCase("modle"), "model"), + (UniCase("eloctrolytes"), "electrolytes"), + (UniCase("signles"), "singles"), + (UniCase("millimetres"), "millimeters"), + (UniCase("princesss"), "princesses"), + (UniCase("bitterseet"), "bittersweet"), + (UniCase("clitiros"), "clitoris"), + (UniCase("scandonavian"), "scandinavian"), + (UniCase("estimativo"), "estimation"), + (UniCase("apporpriately"), "appropriately"), + (UniCase("teleproting"), "teleporting"), + (UniCase("quantitize"), "quantities"), + (UniCase("downvottes"), "downvoters"), + (UniCase("underwheling"), "underwhelming"), + (UniCase("viatmin"), "vitamin"), + (UniCase("irresponisble"), "irresponsible"), + (UniCase("valuble"), "valuable"), + (UniCase("sadisitc"), "sadistic"), + (UniCase("genitalias"), "genitals"), + (UniCase("snowploughs"), "snowplow"), + (UniCase("abscence"), "absence"), + (UniCase("jusitfication"), "justifications"), + (UniCase("favourable"), "favorable"), + (UniCase("counsiling"), "counseling"), + (UniCase("inevitabile"), "inevitable"), + (UniCase("particualrly"), "particularly"), + (UniCase("bloodbonre"), "bloodborne"), + (UniCase("deisgned"), "designed"), + (UniCase("colelctive"), "collective"), + (UniCase("productivo"), "production"), + (UniCase("sensasionalist"), "sensationalist"), + (UniCase("extrapole"), "extrapolate"), + (UniCase("mobilising"), "mobilizing"), + (UniCase("remannt"), "remnant"), + (UniCase("tradtionally"), "traditionally"), + (UniCase("yearm"), "year"), + (UniCase("immunosupressant"), "immunosuppressant"), + (UniCase("nedlessly"), "endlessly"), + (UniCase("opiniones"), "opinions"), + (UniCase("fertiliser"), "fertilizer"), + (UniCase("markerplace"), "marketplace"), + (UniCase("earthquate"), "earthquake"), + (UniCase("brownis"), "brownies"), + (UniCase("expresscoin"), "expression"), + (UniCase("apologizeing"), "apologizing"), + (UniCase("competitavely"), "competitively"), + (UniCase("homogenise"), "homogenize"), + (UniCase("ballisitc"), "ballistic"), + (UniCase("jstu"), "just"), + (UniCase("wikileakers"), "wikileaks"), + (UniCase("viligant"), "vigilant"), + (UniCase("robocorp"), "robocop"), + (UniCase("performacne"), "performances"), + (UniCase("conclue"), "conclude"), + (UniCase("cahsier"), "cashier"), + (UniCase("passpost"), "passports"), + (UniCase("tacticaly"), "tactically"), + (UniCase("expendature"), "expenditure"), + (UniCase("permisssion"), "permissions"), + (UniCase("costumizations"), "customization"), + (UniCase("painfuly"), "painfully"), + (UniCase("expositivo"), "exposition"), + (UniCase("definietly"), "definitely"), + (UniCase("parilament"), "parliament"), + (UniCase("unqaulified"), "unqualified"), + (UniCase("compatablities"), "compatibilities"), + (UniCase("utilitatian"), "utilitarian"), + (UniCase("contributin"), "contribution"), + (UniCase("challange"), "challenge"), + (UniCase("underestemated"), "underestimated"), + (UniCase("messenging"), "messaging"), + (UniCase("dusbtep"), "dubstep"), + (UniCase("elimanates"), "eliminates"), + (UniCase("encyplopedia"), "encyclopedia"), + (UniCase("industructible"), "indestructible"), + (UniCase("weightligting"), "weightlifting"), + (UniCase("clincis"), "clinics"), + (UniCase("repblic"), "republic"), + (UniCase("continuent"), "contingent"), + (UniCase("evelutionary"), "evolutionary"), + (UniCase("caricaturize"), "caricature"), + (UniCase("respest"), "respects"), + (UniCase("unintelligant"), "unintelligent"), + (UniCase("cluprit"), "culprit"), + (UniCase("scandalising"), "scandalizing"), + (UniCase("princila"), "principals"), + (UniCase("policitally"), "politically"), + (UniCase("cleansiness"), "cleanliness"), + (UniCase("compolation"), "compilation"), + (UniCase("undeinable"), "undeniable"), + (UniCase("transplain"), "transplant"), + (UniCase("acknowldge"), "acknowledge"), + (UniCase("repostes"), "reposts"), + (UniCase("neglible"), "negligible"), + (UniCase("arpeture"), "aperture"), + (UniCase("assassinos"), "assassins"), + (UniCase("archetyps"), "archetypes"), + (UniCase("catastrohpe"), "catastrophe"), + (UniCase("accidens"), "accidents"), + (UniCase("expendatures"), "expenditures"), + (UniCase("metropollis"), "metropolis"), + (UniCase("compromisso"), "compromises"), + (UniCase("repricussions"), "repercussions"), + (UniCase("commmand"), "command"), + (UniCase("gaol"), "jail"), + (UniCase("quickets"), "quickest"), + (UniCase("appartments"), "apartments"), + (UniCase("idealisitic"), "idealistic"), + (UniCase("evidentally"), "evidently"), + (UniCase("deplacements"), "replacements"), + (UniCase("ambassabor"), "ambassador"), + (UniCase("experimentos"), "experiments"), + (UniCase("testasterone"), "testosterone"), + (UniCase("withdrawalls"), "withdrawals"), + (UniCase("carrotts"), "carrots"), + (UniCase("rightiousness"), "righteousness"), + (UniCase("accumelated"), "accumulated"), + (UniCase("accademic"), "academic"), + (UniCase("egotestical"), "egotistical"), + (UniCase("radicalised"), "radicalized"), + (UniCase("halarious"), "hilarious"), + (UniCase("colateral"), "collateral"), + (UniCase("predicitve"), "predictive"), + (UniCase("minneaoplis"), "minneapolis"), + (UniCase("subscriptons"), "subscriptions"), + (UniCase("compromiss"), "compromises"), + (UniCase("territoris"), "territories"), + (UniCase("circumcission"), "circumcision"), + (UniCase("menstural"), "menstrual"), + (UniCase("simultaneosly"), "simultaneously"), + (UniCase("dumptser"), "dumpster"), + (UniCase("hypocritus"), "hypocrites"), + (UniCase("imaginacion"), "imagination"), + (UniCase("despectively"), "respectively"), + (UniCase("prezidential"), "presidential"), + (UniCase("wishlsit"), "wishlist"), + (UniCase("sumbissive"), "submissive"), + (UniCase("protestato"), "protestant"), + (UniCase("lieutanant"), "lieutenant"), + (UniCase("independant"), "independent"), + (UniCase("sustainabillity"), "sustainability"), + (UniCase("psychedelicness"), "psychedelics"), + (UniCase("strengtheing"), "strengthening"), + (UniCase("fantasised"), "fantasized"), + (UniCase("archeaology"), "archaeology"), + (UniCase("pyschiatric"), "psychiatric"), + (UniCase("navigato"), "navigation"), + (UniCase("monolitich"), "monolithic"), + (UniCase("headshoots"), "headshot"), + (UniCase("developement"), "development"), + (UniCase("implentation"), "implementation"), + (UniCase("intimitade"), "intimidated"), + (UniCase("goegraphical"), "geographical"), + (UniCase("corporatie"), "corporate"), + (UniCase("chronichles"), "chronicles"), + (UniCase("excellance"), "excellence"), + (UniCase("unacceptible"), "unacceptable"), + (UniCase("indistingusihable"), "indistinguishable"), + (UniCase("automato"), "automation"), + (UniCase("respondis"), "responds"), + (UniCase("therapautic"), "therapeutic"), + (UniCase("underestimateing"), "underestimating"), + (UniCase("rectifiy"), "rectify"), + (UniCase("metaphoricial"), "metaphorical"), + (UniCase("esitmated"), "estimated"), + (UniCase("adovcates"), "advocates"), + (UniCase("distrotion"), "distortion"), + (UniCase("uncertainity"), "uncertainty"), + (UniCase("garuanteed"), "guaranteed"), + (UniCase("staggerwing"), "staggering"), + (UniCase("metropoliten"), "metropolitan"), + (UniCase("dogdammit"), "goddammit"), + (UniCase("arguement"), "argument"), + (UniCase("craweld"), "crawled"), + (UniCase("catastrope"), "catastrophe"), + (UniCase("paraphraze"), "paraphrase"), + (UniCase("unsurprizingly"), "unsurprisingly"), + (UniCase("reconnet"), "reconnect"), + (UniCase("discriminacion"), "discrimination"), + (UniCase("hotpsot"), "hotspot"), + (UniCase("speciales"), "specials"), + (UniCase("monolopy"), "monopoly"), + (UniCase("conqueor"), "conquer"), + (UniCase("formulaes"), "formulas"), + (UniCase("confedential"), "confidential"), + (UniCase("perfromers"), "performers"), + (UniCase("meterology"), "meteorology"), + (UniCase("culutrally"), "culturally"), + (UniCase("headachs"), "headaches"), + (UniCase("soudntrack"), "soundtrack"), + (UniCase("blackshits"), "blacksmith"), + (UniCase("institutionnal"), "institutional"), + (UniCase("califonria"), "californian"), + (UniCase("templeos"), "temples"), + (UniCase("statisitcal"), "statistical"), + (UniCase("governemntal"), "governmental"), + (UniCase("caricaturise"), "caricature"), + (UniCase("autority"), "authority"), + (UniCase("annihalated"), "annihilated"), + (UniCase("pruchased"), "purchased"), + (UniCase("environmet"), "environments"), + (UniCase("confrontativo"), "confrontation"), + (UniCase("interveneing"), "intervening"), + (UniCase("egalitatian"), "egalitarian"), + (UniCase("prosterity"), "prosperity"), + (UniCase("procedrual"), "procedural"), + (UniCase("nmae"), "name"), + (UniCase("cavlary"), "cavalry"), + (UniCase("calibratin"), "calibration"), + (UniCase("adorbale"), "adorable"), + (UniCase("acutality"), "actuality"), + (UniCase("effecient"), "efficient"), + (UniCase("currenices"), "currencies"), + (UniCase("proclomation"), "proclamation"), + (UniCase("indireclty"), "indirectly"), + (UniCase("equivelance"), "equivalence"), + (UniCase("uninteresed"), "uninterested"), + (UniCase("tesitmony"), "testimony"), + (UniCase("adecuate"), "adequate"), + (UniCase("befreind"), "befriend"), + (UniCase("dimensinal"), "dimensional"), + (UniCase("hellvua"), "helluva"), + (UniCase("gosples"), "gospels"), + (UniCase("territorrial"), "territorial"), + (UniCase("cutsences"), "cutscenes"), + (UniCase("acheivments"), "achievements"), + (UniCase("requries"), "requires"), + (UniCase("constrants"), "constraints"), + (UniCase("microtransactional"), "microtransactions"), + (UniCase("palestiniens"), "palestinians"), + (UniCase("superouman"), "superhuman"), + (UniCase("destroyd"), "destroyed"), + (UniCase("expressivos"), "expressions"), + (UniCase("condamned"), "condemned"), + (UniCase("interpreteert"), "interpreter"), + (UniCase("disastroso"), "disastrous"), + (UniCase("microtransacrions"), "microtransactions"), + (UniCase("privilegies"), "privilege"), + (UniCase("keybaord"), "keyboard"), + (UniCase("exectuable"), "executable"), + (UniCase("simeltaneous"), "simultaneous"), + (UniCase("pantomine"), "pantomime"), + (UniCase("transfored"), "transformed"), + (UniCase("corolloa"), "corolla"), + (UniCase("ugprades"), "upgrades"), + (UniCase("powderade"), "powdered"), + (UniCase("remodelled"), "remodeled"), + (UniCase("electromagnetc"), "electromagnetic"), + (UniCase("objectivy"), "objectivity"), + (UniCase("assasined"), "assassinated"), + (UniCase("caprenter"), "carpenter"), + (UniCase("councilos"), "councils"), + (UniCase("meditaiton"), "meditation"), + (UniCase("practives"), "practise"), + (UniCase("fertizilers"), "fertilizer"), + (UniCase("anaylsis"), "analysis"), + (UniCase("reveald"), "revealed"), + (UniCase("intellegently"), "intelligently"), + (UniCase("whsipering"), "whispering"), + (UniCase("entertainig"), "entertaining"), + (UniCase("exploitaion"), "exploitation"), + (UniCase("survivied"), "survived"), + (UniCase("journalistes"), "journalists"), + (UniCase("percantages"), "percentages"), + (UniCase("referene"), "referee"), + (UniCase("eyesahdow"), "eyeshadow"), + (UniCase("dipolma"), "diploma"), + (UniCase("compulsing"), "compulsion"), + (UniCase("enlightining"), "enlightening"), + (UniCase("contempory"), "contemporary"), + (UniCase("representationen"), "representations"), + (UniCase("inofficial"), "unofficial"), + (UniCase("minsitry"), "ministry"), + (UniCase("encyclopadia"), "encyclopedia"), + (UniCase("scandalises"), "scandalizes"), + (UniCase("licenced"), "licensed"), + (UniCase("saddends"), "saddens"), + (UniCase("radiocative"), "radioactive"), + (UniCase("psysiological"), "physiological"), + (UniCase("pantehon"), "pantheon"), + (UniCase("infrastrukture"), "infrastructure"), + (UniCase("inheretance"), "inheritance"), + (UniCase("konws"), "knows"), + (UniCase("dael"), "deal"), + (UniCase("factorising"), "factorizing"), + (UniCase("paradim"), "paradigm"), + (UniCase("electromegnetic"), "electromagnetic"), + (UniCase("formidabel"), "formidable"), + (UniCase("organes"), "organise"), + (UniCase("encrpyt"), "encrypt"), + (UniCase("corinthiens"), "corinthians"), + (UniCase("expensable"), "expendable"), + (UniCase("strechted"), "stretched"), + (UniCase("smaples"), "samples"), + (UniCase("tempels"), "temples"), + (UniCase("kindergarden"), "kindergarten"), + (UniCase("microwae"), "microwaves"), + (UniCase("classifides"), "classified"), + (UniCase("playtrhough"), "playthrough"), + (UniCase("premuim"), "premium"), + (UniCase("epliogue"), "epilogue"), + (UniCase("unfortunatly"), "unfortunately"), + (UniCase("releagtion"), "relegation"), + (UniCase("pitchforcks"), "pitchforks"), + (UniCase("jospeh"), "joseph"), + (UniCase("siblins"), "siblings"), + (UniCase("influencian"), "influencing"), + (UniCase("ninties"), "1990s"), + (UniCase("populairty"), "popularity"), + (UniCase("princeses"), "princess"), + (UniCase("perpitrator"), "perpetrator"), + (UniCase("weaselling"), "weaseling"), + (UniCase("initmate"), "intimate"), + (UniCase("circut"), "circuit"), + (UniCase("multipleies"), "multiples"), + (UniCase("commuincate"), "communicated"), + (UniCase("corinthins"), "corinthians"), + (UniCase("ammount"), "amount"), + (UniCase("experimantation"), "experimentation"), + (UniCase("foudn"), "found"), + (UniCase("authenticy"), "authenticity"), + (UniCase("possition"), "position"), + (UniCase("fluorish"), "flourish"), + (UniCase("patrairchy"), "patriarchy"), + (UniCase("mediveal"), "medieval"), + (UniCase("goilath"), "goliath"), + (UniCase("playtgroughs"), "playthroughs"), + (UniCase("fraternaty"), "fraternity"), + (UniCase("beautyfully"), "beautifully"), + (UniCase("biginning"), "beginning"), + (UniCase("hexidecimal"), "hexadecimal"), + (UniCase("deliberetly"), "deliberately"), + (UniCase("prohibitng"), "prohibiting"), + (UniCase("representetives"), "representatives"), + (UniCase("sacrifaces"), "sacrifices"), + (UniCase("resovle"), "resolve"), + (UniCase("rebuildt"), "rebuilt"), + (UniCase("unsusbcribed"), "unsubscribed"), + (UniCase("illegitmate"), "illegitimate"), + (UniCase("homoeopathic"), "homeopathic"), + (UniCase("transsexal"), "transsexual"), + (UniCase("familierize"), "familiarize"), + (UniCase("hallcuinations"), "hallucination"), + (UniCase("apologising"), "apologizing"), + (UniCase("condolonces"), "condolences"), + (UniCase("involunary"), "involuntary"), + (UniCase("discreddit"), "discredited"), + (UniCase("backrgound"), "backgrounds"), + (UniCase("propperly"), "properly"), + (UniCase("noticiably"), "noticeably"), + (UniCase("alotted"), "allotted"), + (UniCase("medicins"), "medicines"), + (UniCase("streaching"), "stretching"), + (UniCase("alternativley"), "alternatively"), + (UniCase("runing"), "running"), + (UniCase("definityl"), "definitly"), + (UniCase("canadias"), "canadians"), + (UniCase("pretendias"), "pretends"), + (UniCase("nieghborhoods"), "neighborhoods"), + (UniCase("retrobution"), "retribution"), + (UniCase("scandalosa"), "scandals"), + (UniCase("whant"), "want"), + (UniCase("bangladash"), "bangladesh"), + (UniCase("modificatons"), "modifications"), + (UniCase("emergencias"), "emergencies"), + (UniCase("lesbianest"), "lesbians"), + (UniCase("electrisity"), "electricity"), + (UniCase("verbalise"), "verbalize"), + (UniCase("accomadated"), "accommodated"), + (UniCase("represantatives"), "representatives"), + (UniCase("schizophrentic"), "schizophrenic"), + (UniCase("conculsion"), "conclusion"), + (UniCase("tolkein"), "tolkien"), + (UniCase("glorios"), "glorious"), + (UniCase("auctionrs"), "auctions"), + (UniCase("exersicing"), "exercising"), + (UniCase("fundamentalistas"), "fundamentalists"), + (UniCase("relatinoship"), "relationships"), + (UniCase("discrouage"), "discourages"), + (UniCase("connecties"), "connects"), + (UniCase("penguiness"), "penguins"), + (UniCase("expidentures"), "expenditures"), + (UniCase("reinitalized"), "reinitialized"), + (UniCase("hypocrties"), "hypocrites"), + (UniCase("institutionel"), "institutional"), + (UniCase("exhibtion"), "exhibition"), + (UniCase("moisterizing"), "moisturizing"), + (UniCase("schiziphrenic"), "schizophrenic"), + (UniCase("asteroides"), "asteroids"), + (UniCase("probabiliste"), "probabilities"), + (UniCase("intolorence"), "intolerance"), + (UniCase("positiong"), "positioning"), + (UniCase("hothsot"), "hotshot"), + (UniCase("squareds"), "squares"), + (UniCase("doccuments"), "documents"), + (UniCase("maintainig"), "maintaining"), + (UniCase("barsita"), "barista"), + (UniCase("encription"), "encryption"), + (UniCase("godspede"), "godspeed"), + (UniCase("equalise"), "equalize"), + (UniCase("encounteres"), "encounters"), + (UniCase("lightheated"), "lighthearted"), + (UniCase("programmmed"), "programme"), + (UniCase("amendmants"), "amendments"), + (UniCase("distributino"), "distributions"), + (UniCase("desgined"), "designed"), + (UniCase("comperhend"), "comprehend"), + (UniCase("initalese"), "initialese"), + (UniCase("simplifing"), "simplifying"), + (UniCase("differentitation"), "differentiation"), + (UniCase("beleifs"), "beliefs"), + (UniCase("promsicuous"), "promiscuous"), + (UniCase("incorparate"), "incorporate"), + (UniCase("atmoshpere"), "atmosphere"), + (UniCase("perfers"), "prefers"), + (UniCase("presentato"), "presentation"), + (UniCase("problemita"), "problematic"), + (UniCase("wonderwand"), "wonderland"), + (UniCase("superme"), "supreme"), + (UniCase("distributio"), "distributor"), + (UniCase("techiniques"), "techniques"), + (UniCase("prodecural"), "procedural"), + (UniCase("perpandicular"), "perpendicular"), + (UniCase("bankgok"), "bangkok"), + (UniCase("philospohical"), "philosophical"), + (UniCase("libitarianisn"), "libertarianism"), + (UniCase("manufacuters"), "manufactures"), + (UniCase("sympathyzers"), "sympathizers"), + (UniCase("infiltrerat"), "infiltrate"), + (UniCase("psycholigist"), "psychologist"), + (UniCase("deparmental"), "departmental"), + (UniCase("enlightended"), "enlightened"), + (UniCase("gravitaitonal"), "gravitational"), + (UniCase("unsustainble"), "unsustainable"), + (UniCase("effortlesly"), "effortlessly"), + (UniCase("catastrophie"), "catastrophe"), + (UniCase("evalutaion"), "evaluation"), + (UniCase("theroetically"), "theoretically"), + (UniCase("infiltrar"), "infiltrator"), + (UniCase("interveign"), "intervening"), + (UniCase("projecticles"), "projectiles"), + (UniCase("gloiath"), "goliath"), + (UniCase("methodoligy"), "methodology"), + (UniCase("sexaulized"), "sexualized"), + (UniCase("duailty"), "duality"), + (UniCase("symbolising"), "symbolizing"), + (UniCase("reserachers"), "researchers"), + (UniCase("electrocytes"), "electrolytes"), + (UniCase("batistia"), "batista"), + (UniCase("indonistan"), "indonesian"), + (UniCase("chronologicly"), "chronological"), + (UniCase("intolerence"), "intolerance"), + (UniCase("desorder"), "disorder"), + (UniCase("discresion"), "discretion"), + (UniCase("architectuur"), "architecture"), + (UniCase("maximising"), "maximizing"), + (UniCase("ficticious"), "fictitious"), + (UniCase("presumptuious"), "presumptuous"), + (UniCase("rewatchign"), "rewatching"), + (UniCase("somethiung"), "somethin"), + (UniCase("propulstion"), "propulsion"), + (UniCase("tentacels"), "tentacles"), + (UniCase("subconcsious"), "subconscious"), + (UniCase("moratlity"), "mortality"), + (UniCase("wendesdays"), "wednesdays"), + (UniCase("westernise"), "westernize"), + (UniCase("addional"), "additional"), + (UniCase("valentinas"), "valentines"), + (UniCase("schziophrenic"), "schizophrenic"), + (UniCase("alwyas"), "always"), + (UniCase("impliment"), "implement"), + (UniCase("petetion"), "petition"), + (UniCase("stancers"), "stances"), + (UniCase("interactons"), "interacts"), + (UniCase("accerelate"), "accelerated"), + (UniCase("deplyoment"), "deployment"), + (UniCase("symboles"), "symbols"), + (UniCase("terminatorn"), "termination"), + (UniCase("negociation"), "negotiation"), + (UniCase("starteld"), "startled"), + (UniCase("cerimonial"), "ceremonial"), + (UniCase("ulterioara"), "ulterior"), + (UniCase("indepenent"), "independent"), + (UniCase("expolding"), "exploding"), + (UniCase("efficieny"), "efficiency"), + (UniCase("foreignors"), "foreigners"), + (UniCase("unresponisve"), "unresponsive"), + (UniCase("brtually"), "brutally"), + (UniCase("agruments"), "arguments"), + (UniCase("mundande"), "mundane"), + (UniCase("pretensive"), "pretense"), + (UniCase("anglicised"), "anglicized"), + (UniCase("unavailble"), "unavailable"), + (UniCase("hoenstly"), "honestly"), + (UniCase("visibily"), "visibility"), + (UniCase("unacompanied"), "unaccompanied"), + (UniCase("murdererous"), "murderers"), + (UniCase("elementery"), "elementary"), + (UniCase("trasngendered"), "transgendered"), + (UniCase("literatute"), "literate"), + (UniCase("remenant"), "remnant"), + (UniCase("littlefinder"), "littlefinger"), + (UniCase("revelling"), "reveling"), + (UniCase("prugatory"), "purgatory"), + (UniCase("pharamcist"), "pharmacist"), + (UniCase("knowledgabe"), "knowledgable"), + (UniCase("nationalistische"), "nationalistic"), + (UniCase("procedurile"), "procedure"), + (UniCase("inconveniente"), "inconvenience"), + (UniCase("gigantisch"), "gigantic"), + (UniCase("armenina"), "armenian"), + (UniCase("compulstion"), "compulsion"), + (UniCase("authoritorian"), "authoritarian"), + (UniCase("saskatchewinian"), "saskatchewan"), + (UniCase("trasnported"), "transported"), + (UniCase("promiscuious"), "promiscuous"), + (UniCase("inaccuricies"), "inaccuracies"), + (UniCase("compramise"), "compromise"), + (UniCase("pepperment"), "peppermint"), + (UniCase("priveledges"), "privileges"), + (UniCase("accountabillity"), "accountability"), + (UniCase("unknowinly"), "unknowingly"), + (UniCase("accuratelly"), "accurately"), + (UniCase("counterbat"), "counteract"), + (UniCase("protostant"), "protestant"), + (UniCase("definitlly"), "definitly"), + (UniCase("unbeknowst"), "unbeknownst"), + (UniCase("explioting"), "exploiting"), + (UniCase("competenet"), "competence"), + (UniCase("perpendicualr"), "perpendicular"), + (UniCase("acquantiances"), "acquaintances"), + (UniCase("disadvantge"), "disadvantage"), + (UniCase("blackbery"), "blackberry"), + (UniCase("contraceptivo"), "contraception"), + (UniCase("conslutant"), "consultant"), + (UniCase("neighbrohood"), "neighborhoods"), + (UniCase("judasim"), "judaism"), + (UniCase("southampon"), "southampton"), + (UniCase("exterme"), "extreme"), + (UniCase("uncomfertably"), "uncomfortably"), + (UniCase("abnormalty"), "abnormally"), + (UniCase("sufficent"), "sufficient"), + (UniCase("criticisim"), "criticism"), + (UniCase("resapwn"), "respawn"), + (UniCase("phonemena"), "phenomena"), + (UniCase("ruslted"), "rustled"), + (UniCase("origintea"), "originate"), + (UniCase("produktions"), "productions"), + (UniCase("feasable"), "feasible"), + (UniCase("juggernuat"), "juggernaut"), + (UniCase("campagins"), "campaigns"), + (UniCase("alingment"), "alignment"), + (UniCase("unappropriate"), "inappropriate"), + (UniCase("ministerns"), "ministers"), + (UniCase("narcississtic"), "narcissistic"), + (UniCase("nurtitional"), "nutritional"), + (UniCase("mexicanese"), "mexicans"), + (UniCase("ocassionaly"), "occasionally"), + (UniCase("empathise"), "empathize"), + (UniCase("absolutly"), "absolutely"), + (UniCase("distribuiton"), "distributions"), + (UniCase("sketpic"), "skeptic"), + (UniCase("inefficiant"), "inefficient"), + (UniCase("escapse"), "escapes"), + (UniCase("napolen"), "napoleon"), + (UniCase("initalling"), "initialling"), + (UniCase("proteinas"), "proteins"), + (UniCase("pscyhotic"), "psychotic"), + (UniCase("contributo"), "contribution"), + (UniCase("penguines"), "penguins"), + (UniCase("fortitue"), "fortitude"), + (UniCase("allready"), "already"), + (UniCase("hurricances"), "hurricanes"), + (UniCase("consecuentes"), "consequences"), + (UniCase("experimentating"), "experimentation"), + (UniCase("audiobookas"), "audiobooks"), + (UniCase("honourable"), "honorable"), + (UniCase("generalbs"), "generals"), + (UniCase("achievemint"), "achievement"), + (UniCase("techinque"), "technique"), + (UniCase("questionne"), "questioned"), + (UniCase("triangels"), "triangles"), + (UniCase("simmilar"), "similar"), + (UniCase("esporst"), "esports"), + (UniCase("swearshirt"), "sweatshirt"), + (UniCase("electrocity"), "electricity"), + (UniCase("anectodes"), "anecdotes"), + (UniCase("sytrofoam"), "styrofoam"), + (UniCase("capitalizaiton"), "capitalization"), + (UniCase("suspicioso"), "suspicions"), + (UniCase("temepratures"), "temperatures"), + (UniCase("invaulable"), "invaluable"), + (UniCase("ideolagies"), "ideologies"), + (UniCase("thrusday"), "thursday"), + (UniCase("definitlely"), "definitly"), + (UniCase("sacraficed"), "sacrificed"), + (UniCase("trustowrthy"), "trustworthy"), + (UniCase("seperator"), "separator"), + (UniCase("controversal"), "controversial"), + (UniCase("scepticism"), "skepticism"), + (UniCase("skwyard"), "skyward"), + (UniCase("therapuetic"), "therapeutic"), + (UniCase("impossibley"), "impossibly"), + (UniCase("ecstacys"), "ecstasy"), + (UniCase("throught"), "thought"), + (UniCase("dramatisations"), "dramatizations"), + (UniCase("coordenated"), "coordinated"), + (UniCase("methaporical"), "metaphorical"), + (UniCase("voluntarilly"), "voluntarily"), + (UniCase("spontaenously"), "spontaneously"), + (UniCase("ocasionaly"), "occasionally"), + (UniCase("alievating"), "alienating"), + (UniCase("througout"), "throughout"), + (UniCase("withrdawal"), "withdrawals"), + (UniCase("aluminimum"), "aluminum"), + (UniCase("fascianted"), "fascinated"), + (UniCase("masturbae"), "masturbated"), + (UniCase("reproduciton"), "reproduction"), + (UniCase("bioligical"), "biological"), + (UniCase("lawernce"), "lawrence"), + (UniCase("existencial"), "existential"), + (UniCase("immidately"), "immediately"), + (UniCase("hyperoble"), "hyperbole"), + (UniCase("turltes"), "turtles"), + (UniCase("garflied"), "garfield"), + (UniCase("unusuable"), "unusable"), + (UniCase("electroman"), "electron"), + (UniCase("benovelent"), "benevolent"), + (UniCase("hinduisim"), "hinduism"), + (UniCase("simplificacion"), "simplification"), + (UniCase("asnwers"), "answers"), + (UniCase("boyfirends"), "boyfriends"), + (UniCase("nashvile"), "nashville"), + (UniCase("exerciseing"), "exercising"), + (UniCase("extemporises"), "extemporizes"), + (UniCase("forsane"), "forsaken"), + (UniCase("diea"), "idea"), + (UniCase("moisutrizing"), "moisturizing"), + (UniCase("unconsciouly"), "unconsciously"), + (UniCase("definstely"), "definately"), + (UniCase("christinaity"), "christianity"), + (UniCase("uncommited"), "uncommitted"), + (UniCase("independet"), "independent"), + (UniCase("destory"), "destroy"), + (UniCase("handwritting"), "handwriting"), + (UniCase("espinoage"), "espionage"), + (UniCase("paleolitic"), "paleolithic"), + (UniCase("preipheral"), "peripheral"), + (UniCase("dishevelled"), "disheveled"), + (UniCase("gernades"), "grenades"), + (UniCase("perputuates"), "perpetuates"), + (UniCase("suppresssor"), "suppressor"), + (UniCase("hertzs"), "hertz"), + (UniCase("russina"), "russian"), + (UniCase("electivre"), "elective"), + (UniCase("recgonise"), "recognise"), + (UniCase("responsibilties"), "responsibilities"), + (UniCase("miserabel"), "miserable"), + (UniCase("contraversy"), "controversy"), + (UniCase("amrenian"), "armenian"), + (UniCase("extrordinarily"), "extraordinarily"), + (UniCase("consern"), "concern"), + (UniCase("fundamnetal"), "fundamentals"), + (UniCase("configruation"), "configurations"), + (UniCase("misygonistic"), "misogynistic"), + (UniCase("agonstic"), "agnostic"), + (UniCase("borke"), "broke"), + (UniCase("republicanas"), "republicans"), + (UniCase("effectivelly"), "effectively"), + (UniCase("introducted"), "introduced"), + (UniCase("manifestas"), "manifests"), + (UniCase("acknoweldgement"), "acknowledgement"), + (UniCase("derogitory"), "derogatory"), + (UniCase("protectron"), "protection"), + (UniCase("safty"), "safety"), + (UniCase("unwirtten"), "unwritten"), + (UniCase("canrage"), "carnage"), + (UniCase("inseperable"), "inseparable"), + (UniCase("srirachra"), "sriracha"), + (UniCase("cheeots"), "cheetos"), + (UniCase("intellecutals"), "intellectuals"), + (UniCase("jeresys"), "jerseys"), + (UniCase("administored"), "administer"), + (UniCase("torrentting"), "torrenting"), + (UniCase("exagerrated"), "exaggerated"), + (UniCase("expanssion"), "expansions"), + (UniCase("contaminaton"), "contamination"), + (UniCase("dimaond"), "diamond"), + (UniCase("incidentaly"), "incidentally"), + (UniCase("sympathises"), "sympathizes"), + (UniCase("compatability"), "compatibility"), + (UniCase("busniessmen"), "businessmen"), + (UniCase("ordinarly"), "ordinary"), + (UniCase("schyzophrenic"), "schizophrenic"), + (UniCase("doomsdaily"), "doomsday"), + (UniCase("predesessor"), "predecessors"), + (UniCase("testomony"), "testimony"), + (UniCase("flordia"), "florida"), + (UniCase("internetors"), "internets"), + (UniCase("refelction"), "reflection"), + (UniCase("customizaton"), "customization"), + (UniCase("pinancle"), "pinnacle"), + (UniCase("performane"), "performances"), + (UniCase("definitelly"), "definitely"), + (UniCase("multiplyed"), "multiplied"), + (UniCase("stealthboy"), "stealthy"), + (UniCase("decribe"), "describe"), + (UniCase("physiqe"), "physique"), + (UniCase("inlcuding"), "including"), + (UniCase("commonweatlh"), "commonwealth"), + (UniCase("ridicilously"), "ridiculously"), + (UniCase("adaquetely"), "adequately"), + (UniCase("critisice"), "criticise"), + (UniCase("relatiation"), "retaliation"), + (UniCase("astronuats"), "astronauts"), + (UniCase("transformus"), "transforms"), + (UniCase("inspried"), "inspired"), + (UniCase("coordiantes"), "coordinates"), + (UniCase("expierence"), "experience"), + (UniCase("behoves"), "behooves"), + (UniCase("venegance"), "vengeance"), + (UniCase("sandiwches"), "sandwiches"), + (UniCase("itemising"), "itemizing"), + (UniCase("cacuasian"), "caucasian"), + (UniCase("octobear"), "october"), + (UniCase("invulnerble"), "invulnerable"), + (UniCase("philidalphia"), "philadelphia"), + (UniCase("eloquintly"), "eloquently"), + (UniCase("sargant"), "sergeant"), + (UniCase("partiel"), "particle"), + (UniCase("accidenty"), "accidently"), + (UniCase("shenanigens"), "shenanigans"), + (UniCase("consuments"), "consumes"), + (UniCase("couldnot"), "couldnt"), + (UniCase("demilitarise"), "demilitarize"), + (UniCase("linguitics"), "linguistic"), + (UniCase("techniqe"), "technique"), + (UniCase("hamburgaren"), "hamburger"), + (UniCase("abbrievation"), "abbreviation"), + (UniCase("participans"), "participants"), + (UniCase("comparission"), "comparisons"), + (UniCase("alternitives"), "alternatives"), + (UniCase("nautulis"), "nautilus"), + (UniCase("licencse"), "licence"), + (UniCase("reminsicent"), "reminiscent"), + (UniCase("cannobalism"), "cannibalism"), + (UniCase("adventrous"), "adventurous"), + (UniCase("guitarit"), "guitarist"), + (UniCase("oustider"), "outsider"), + (UniCase("specializate"), "specialize"), + (UniCase("synonynous"), "synonymous"), + (UniCase("specificaiton"), "specifications"), + (UniCase("submissies"), "submissive"), + (UniCase("cabients"), "cabinets"), + (UniCase("availabilty"), "availability"), + (UniCase("millenium"), "millennium"), + (UniCase("asterik"), "asterisk"), + (UniCase("frustraited"), "frustrated"), + (UniCase("forgotting"), "forgetting"), + (UniCase("representn"), "representing"), + (UniCase("belligirent"), "belligerent"), + (UniCase("penalised"), "penalized"), + (UniCase("challneger"), "challenger"), + (UniCase("mkae"), "make"), + (UniCase("liquidising"), "liquidizing"), + (UniCase("professionl"), "professionals"), + (UniCase("mulitple"), "multiple"), + (UniCase("recived"), "received"), + (UniCase("unresponsibe"), "unresponsive"), + (UniCase("bethedsa"), "bethesda"), + (UniCase("challengeing"), "challenging"), + (UniCase("inconsisteny"), "inconsistency"), + (UniCase("cancerus"), "cancers"), + (UniCase("loev"), "love"), + (UniCase("egyptain"), "egyptian"), + (UniCase("serbain"), "serbian"), + (UniCase("tournmanets"), "tournaments"), + (UniCase("preformance"), "performance"), + (UniCase("chroline"), "chlorine"), + (UniCase("corinthianos"), "corinthians"), + (UniCase("maletonin"), "melatonin"), + (UniCase("initalled"), "initialled"), + (UniCase("acheived"), "achieved"), + (UniCase("insiprational"), "inspirational"), + (UniCase("inctroduce"), "introduce"), + (UniCase("rightoues"), "righteous"), + (UniCase("assistents"), "assistants"), + (UniCase("spahgetti"), "spaghetti"), + (UniCase("introduktion"), "introduction"), + (UniCase("kontamination"), "contamination"), + (UniCase("bouldore"), "boulder"), + (UniCase("verticallity"), "vertically"), + (UniCase("trustwothy"), "trustworthy"), + (UniCase("definitin"), "definitions"), + (UniCase("suprizing"), "surprising"), + (UniCase("afganhistan"), "afghanistan"), + (UniCase("cashieer"), "cashier"), + (UniCase("sebrian"), "serbian"), + (UniCase("fullfilled"), "fulfilled"), + (UniCase("arispace"), "airspace"), + (UniCase("intimidiate"), "intimidate"), + (UniCase("underdong"), "underdog"), + (UniCase("administratiors"), "administrators"), + (UniCase("scoll"), "scroll"), + (UniCase("propertions"), "proportions"), + (UniCase("shoudlnt"), "shouldnt"), + (UniCase("bioligically"), "biologically"), + (UniCase("snadwiches"), "sandwiches"), + (UniCase("monopolly"), "monopoly"), + (UniCase("acutally"), "actually"), + (UniCase("mercineries"), "mercenaries"), + (UniCase("fundamentais"), "fundamentals"), + (UniCase("photograpphed"), "photographed"), + (UniCase("versitlity"), "versatility"), + (UniCase("battlefeild"), "battlefield"), + (UniCase("totalitaran"), "totalitarian"), + (UniCase("innvoation"), "innovation"), + (UniCase("efficency"), "efficiency"), + (UniCase("newcaste"), "newcastle"), + (UniCase("presenning"), "presenting"), + (UniCase("analysens"), "analyses"), + (UniCase("accumilate"), "accumulate"), + (UniCase("transformarem"), "transformer"), + (UniCase("extraterrestials"), "extraterrestrials"), + (UniCase("straightforeward"), "straightforward"), + (UniCase("settelment"), "settlement"), + (UniCase("knwoledgable"), "knowledgable"), + (UniCase("aggraveted"), "aggravated"), + (UniCase("crabine"), "carbine"), + (UniCase("reuasble"), "reusable"), + (UniCase("sucesses"), "successes"), + (UniCase("optimizacion"), "optimization"), + (UniCase("cheeseburguers"), "cheeseburgers"), + (UniCase("alternatie"), "alternatives"), + (UniCase("domesticted"), "domesticated"), + (UniCase("hedgehodge"), "hedgehog"), + (UniCase("incrediably"), "incredibly"), + (UniCase("amortises"), "amortizes"), + (UniCase("katemine"), "ketamine"), + (UniCase("marketting"), "marketing"), + (UniCase("imrpovements"), "improvements"), + (UniCase("grillig"), "grilling"), + (UniCase("appropriaton"), "appropriation"), + (UniCase("directorguy"), "directory"), + (UniCase("shenanegins"), "shenanigans"), + (UniCase("egyptains"), "egyptians"), + (UniCase("enviornments"), "environments"), + (UniCase("conglaturations"), "congratulations"), + (UniCase("lollipoopy"), "lollipop"), + (UniCase("repeast"), "repeats"), + (UniCase("mellinnium"), "millennium"), + (UniCase("regeneracion"), "regeneration"), + (UniCase("entrepeuner"), "entrepreneur"), + (UniCase("enthusiats"), "enthusiast"), + (UniCase("paliamentarian"), "parliamentarian"), + (UniCase("unsettleing"), "unsettling"), + (UniCase("motherboars"), "motherboards"), + (UniCase("accountat"), "accountants"), + (UniCase("propmted"), "prompted"), + (UniCase("concentrade"), "concentrated"), + (UniCase("canadains"), "canadians"), + (UniCase("psychopaat"), "psychopath"), + (UniCase("titainum"), "titanium"), + (UniCase("busrting"), "bursting"), + (UniCase("capitolization"), "capitalization"), + (UniCase("favouring"), "favoring"), + (UniCase("correctin"), "correction"), + (UniCase("unsubscrided"), "unsubscribed"), + (UniCase("handycapped"), "handicapped"), + (UniCase("tourisim"), "tourism"), + (UniCase("informarle"), "informal"), + (UniCase("ocraina"), "ocarina"), + (UniCase("labryinth"), "labyrinth"), + (UniCase("unresponsivness"), "unresponsive"), + (UniCase("refurbushed"), "refurbished"), + (UniCase("hopeleslly"), "hopelessly"), + (UniCase("migrantes"), "migrants"), + (UniCase("invitato"), "invitation"), + (UniCase("introdused"), "introduces"), + (UniCase("apporximately"), "approximately"), + (UniCase("australin"), "australians"), + (UniCase("narcissisitic"), "narcissistic"), + (UniCase("vechiles"), "vehicles"), + (UniCase("therien"), "therein"), + (UniCase("aetiology"), "etiology"), + (UniCase("balanceado"), "balanced"), + (UniCase("stremear"), "streamer"), + (UniCase("liekable"), "likeable"), + (UniCase("aborignial"), "aboriginal"), + (UniCase("horiztonal"), "horizontal"), + (UniCase("unproduktive"), "unproductive"), + (UniCase("metaphores"), "metaphors"), + (UniCase("boyfrients"), "boyfriends"), + (UniCase("inresting"), "inserting"), + (UniCase("remembee"), "remembered"), + (UniCase("hesistant"), "hesitant"), + (UniCase("manufacturors"), "manufacturers"), + (UniCase("clitories"), "clitoris"), + (UniCase("cellpading"), "cellpadding"), + (UniCase("robocoop"), "robocop"), + (UniCase("supressing"), "suppressing"), + (UniCase("interstelar"), "interstellar"), + (UniCase("prestegious"), "prestigious"), + (UniCase("entbook"), "netbook"), + (UniCase("diminishs"), "diminishes"), + (UniCase("ammended"), "amended"), + (UniCase("decalred"), "declared"), + (UniCase("polititians"), "politicians"), + (UniCase("retirase"), "retires"), + (UniCase("symptomps"), "symptoms"), + (UniCase("classrom"), "classroom"), + (UniCase("paraside"), "paradise"), + (UniCase("implicatia"), "implicit"), + (UniCase("ingenius"), "ingenious"), + (UniCase("cralwed"), "crawled"), + (UniCase("versatality"), "versatility"), + (UniCase("outskirst"), "outskirts"), + (UniCase("gaolers"), "jailers"), + (UniCase("introductiory"), "introductory"), + (UniCase("dermatologyst"), "dermatologist"), + (UniCase("nationalsits"), "nationalists"), + (UniCase("manufacutre"), "manufactures"), + (UniCase("structrual"), "structural"), + (UniCase("unconcsious"), "unconscious"), + (UniCase("portabel"), "portable"), + (UniCase("hellucinations"), "hallucinations"), + (UniCase("parallely"), "parallelly"), + (UniCase("manufacteurs"), "manufactures"), + (UniCase("uninstallled"), "uninstalled"), + (UniCase("mischevious"), "mischievous"), + (UniCase("bruning"), "burning"), + (UniCase("canceres"), "cancers"), + (UniCase("misogynisitc"), "misogynistic"), + (UniCase("expatriot"), "expatriate"), + (UniCase("constinually"), "continually"), + (UniCase("manipualtion"), "manipulation"), + (UniCase("assimilant"), "assimilate"), + (UniCase("instantaneoulsy"), "instantaneous"), + (UniCase("radicalising"), "radicalizing"), + (UniCase("continutiy"), "continuity"), + (UniCase("accessorising"), "accessorizing"), + (UniCase("contingient"), "contingent"), + (UniCase("costomization"), "customization"), + (UniCase("globaly"), "globally"), + (UniCase("roaylties"), "royalties"), + (UniCase("scaramento"), "sacramento"), + (UniCase("requried"), "required"), + (UniCase("archeaologists"), "archeologists"), + (UniCase("academicaly"), "academically"), + (UniCase("congrigation"), "congregation"), + (UniCase("neverhteless"), "nevertheless"), + (UniCase("sensitivty"), "sensitivity"), + (UniCase("tramendously"), "tremendously"), + (UniCase("homogeneized"), "homogenized"), + (UniCase("conceted"), "concede"), + (UniCase("offence"), "offense"), + (UniCase("mdifielders"), "midfielders"), + (UniCase("manuevers"), "maneuvers"), + (UniCase("cyandie"), "cyanide"), + (UniCase("independets"), "independents"), + (UniCase("immideately"), "immediately"), + (UniCase("acknowiedged"), "acknowledged"), + (UniCase("swithcing"), "switching"), + (UniCase("interfears"), "interferes"), + (UniCase("perfroms"), "performs"), + (UniCase("invalidade"), "invalidate"), + (UniCase("happenend"), "happened"), + (UniCase("babysittter"), "babysitter"), + (UniCase("circularise"), "circularize"), + (UniCase("contingincy"), "contingency"), + (UniCase("thumbmails"), "thumbnails"), + (UniCase("abosrption"), "absorption"), + (UniCase("hyponsis"), "hypnosis"), + (UniCase("chocolatie"), "chocolates"), + (UniCase("counsellng"), "counselling"), + (UniCase("virutally"), "virtually"), + (UniCase("demoloshed"), "demolished"), + (UniCase("capitlaism"), "capitalism"), + (UniCase("anihilation"), "annihilation"), + (UniCase("presidencey"), "presidency"), + (UniCase("neighbourbood"), "neighbourhood"), + (UniCase("trampolene"), "trampoline"), + (UniCase("captialism"), "capitalism"), + (UniCase("customises"), "customizes"), + (UniCase("intellecutal"), "intellectual"), + (UniCase("chrisitanity"), "christianity"), + (UniCase("beleive"), "believe"), + (UniCase("electroyltes"), "electrolytes"), + (UniCase("succesfully"), "successfully"), + (UniCase("apostels"), "apostles"), + (UniCase("chimeny"), "chimney"), + (UniCase("conservies"), "conserve"), + (UniCase("recided"), "resided"), + (UniCase("proportionalty"), "proportionally"), + (UniCase("unfavourable"), "unfavorable"), + (UniCase("conceptualises"), "conceptualizes"), + (UniCase("suspiciois"), "suspicions"), + (UniCase("musculair"), "muscular"), + (UniCase("illegitimt"), "illegitimate"), + (UniCase("ostrocized"), "ostracized"), + (UniCase("fertilzier"), "fertilizer"), + (UniCase("patriachry"), "patriarchy"), + (UniCase("colleciton"), "collection"), + (UniCase("confidentuality"), "confidential"), + (UniCase("disgrunteld"), "disgruntled"), + (UniCase("falshes"), "flashes"), + (UniCase("fondamentalists"), "fundamentalists"), + (UniCase("dependends"), "depended"), + (UniCase("transaltes"), "translates"), + (UniCase("concesions"), "concession"), + (UniCase("countercat"), "counteract"), + (UniCase("mastubration"), "masturbation"), + (UniCase("resistable"), "resistible"), + (UniCase("vizualization"), "visualization"), + (UniCase("lighthning"), "lightening"), + (UniCase("alternetly"), "alternately"), + (UniCase("youngents"), "youngest"), + (UniCase("cancuks"), "canucks"), + (UniCase("convienently"), "conveniently"), + (UniCase("businesman"), "businessman"), + (UniCase("gradification"), "gratification"), + (UniCase("grpahical"), "graphical"), + (UniCase("capsulse"), "capsules"), + (UniCase("nieghborhood"), "neighborhood"), + (UniCase("portfoilo"), "portfolio"), + (UniCase("symetrical"), "symmetrical"), + (UniCase("circumstansial"), "circumstantial"), + (UniCase("performancetest"), "performances"), + (UniCase("slowy"), "slowly"), + (UniCase("contientous"), "contentious"), + (UniCase("stretchs"), "stretches"), + (UniCase("picthfork"), "pitchfork"), + (UniCase("believs"), "believes"), + (UniCase("achiveing"), "achieving"), + (UniCase("alledge"), "allege"), + (UniCase("oversimplifaction"), "oversimplification"), + (UniCase("unfamilliar"), "unfamiliar"), + (UniCase("boundaires"), "boundaries"), + (UniCase("documentare"), "documentaries"), + (UniCase("organim"), "organism"), + (UniCase("aeroplanes"), "airplanes"), + (UniCase("unsucessful"), "unsuccessful"), + (UniCase("existance"), "existence"), + (UniCase("copengagen"), "copenhagen"), + (UniCase("lifestlye"), "lifestyle"), + (UniCase("microcentres"), "microcenter"), + (UniCase("concenting"), "connecting"), + (UniCase("governemnts"), "governments"), + (UniCase("destributors"), "distributors"), + (UniCase("suggeste"), "suggestive"), + (UniCase("psycothic"), "psychotic"), + (UniCase("prosecutie"), "prosecuted"), + (UniCase("colonozation"), "colonization"), + (UniCase("unenployment"), "unemployment"), + (UniCase("exchanching"), "exchanging"), + (UniCase("credintials"), "credentials"), + (UniCase("kittiens"), "kitties"), + (UniCase("launchign"), "launching"), + (UniCase("convine"), "convince"), + (UniCase("sastifying"), "satisfying"), + (UniCase("maylasia"), "malaysia"), + (UniCase("ocassionally"), "occasionally"), + (UniCase("gltiched"), "glitched"), + (UniCase("parachutte"), "parachute"), + (UniCase("tempreatures"), "temperatures"), + (UniCase("expressley"), "expressly"), + (UniCase("nostalgica"), "nostalgia"), + (UniCase("contextualising"), "contextualizing"), + (UniCase("miniscue"), "miniscule"), + (UniCase("fisionable"), "fissionable"), + (UniCase("intergal"), "integral"), + (UniCase("birdamn"), "birdman"), + (UniCase("positionne"), "positioned"), + (UniCase("supremacits"), "supremacist"), + (UniCase("individuati"), "individuality"), + (UniCase("enviroments"), "environments"), + (UniCase("impactes"), "impacts"), + (UniCase("dependencie"), "dependence"), + (UniCase("frightenend"), "frightened"), + (UniCase("commemerative"), "commemorative"), + (UniCase("vulgarisation"), "vulgarization"), + (UniCase("abdomnial"), "abdominal"), + (UniCase("eliminaton"), "elimination"), + (UniCase("obersvers"), "observers"), + (UniCase("whisltes"), "whistles"), + (UniCase("philosphies"), "philosophies"), + (UniCase("twon"), "town"), + (UniCase("arithmitic"), "arithmetic"), + (UniCase("interruptors"), "interrupts"), + (UniCase("metabolise"), "metabolize"), + (UniCase("referencs"), "references"), + (UniCase("vertabim"), "verbatim"), + (UniCase("advantadges"), "advantages"), + (UniCase("carmtan"), "cartman"), + (UniCase("hienous"), "heinous"), + (UniCase("informatiei"), "informative"), + (UniCase("hurrycanes"), "hurricanes"), + (UniCase("cencus"), "census"), + (UniCase("equitorial"), "equatorial"), + (UniCase("urkaine"), "ukraine"), + (UniCase("benedicat"), "benedict"), + (UniCase("leveller"), "leveler"), + (UniCase("contorller"), "controllers"), + (UniCase("sixtin"), "sistine"), + (UniCase("visualisations"), "visualizations"), + (UniCase("abanonded"), "abandoned"), + (UniCase("pericing"), "piercing"), + (UniCase("audbile"), "audible"), + (UniCase("squishey"), "squishy"), + (UniCase("desginated"), "designated"), + (UniCase("propserity"), "prosperity"), + (UniCase("drfiting"), "drifting"), + (UniCase("headahces"), "headaches"), + (UniCase("responisbly"), "responsibly"), + (UniCase("delibirate"), "deliberate"), + (UniCase("criticiszing"), "criticising"), + (UniCase("supplamented"), "supplemented"), + (UniCase("crutchs"), "crutches"), + (UniCase("motherbaord"), "motherboard"), + (UniCase("fullfiling"), "fulfilling"), + (UniCase("glichtes"), "glitches"), + (UniCase("carange"), "carnage"), + (UniCase("irriversible"), "irreversible"), + (UniCase("championshp"), "championship"), + (UniCase("neighbourghs"), "neighbours"), + (UniCase("enchantmets"), "enchantments"), + (UniCase("armstrog"), "armstrong"), + (UniCase("californinan"), "californian"), + (UniCase("webistes"), "websites"), + (UniCase("propagandised"), "propagandized"), + (UniCase("indefinetely"), "indefinitely"), + (UniCase("counterpats"), "counterparts"), + (UniCase("imigrated"), "emigrated"), + (UniCase("peronal"), "personal"), + (UniCase("concurrant"), "concurrent"), + (UniCase("complimation"), "complication"), + (UniCase("legitimetly"), "legitimately"), + (UniCase("familes"), "families"), + (UniCase("maintenace"), "maintenance"), + (UniCase("consturcted"), "constructed"), + (UniCase("confussion"), "confession"), + (UniCase("sandalls"), "sandals"), + (UniCase("excellant"), "excellent"), + (UniCase("vunlerability"), "vulnerability"), + (UniCase("associaties"), "associates"), + (UniCase("bulgariska"), "bulgaria"), + (UniCase("complety"), "completely"), + (UniCase("schizophrena"), "schizophrenia"), + (UniCase("equivalance"), "equivalence"), + (UniCase("firefighers"), "firefighters"), + (UniCase("instructons"), "instructors"), + (UniCase("hdinsight"), "hindsight"), + (UniCase("legitemately"), "legitimately"), + (UniCase("repleacable"), "replaceable"), + (UniCase("groudnbreaking"), "groundbreaking"), + (UniCase("foetal"), "fetal"), + (UniCase("gunstinger"), "gunslinger"), + (UniCase("minipulating"), "manipulating"), + (UniCase("natioanlists"), "nationalists"), + (UniCase("arbitraion"), "arbitration"), + (UniCase("endeavours"), "endeavors"), + (UniCase("ghettoised"), "ghettoized"), + (UniCase("excerises"), "exercises"), + (UniCase("retailation"), "retaliation"), + (UniCase("immobilises"), "immobilizes"), + (UniCase("appearence"), "appearance"), + (UniCase("corregated"), "correlated"), + (UniCase("frustrato"), "frustration"), + (UniCase("satisfcation"), "satisfaction"), + (UniCase("subconscous"), "subconscious"), + (UniCase("arrestos"), "arrests"), + (UniCase("termiantor"), "terminator"), + (UniCase("vegaterians"), "vegetarians"), + (UniCase("instruktion"), "instruction"), + (UniCase("improvished"), "improvised"), + (UniCase("materialised"), "materialized"), + (UniCase("brainwahsed"), "brainwashed"), + (UniCase("lispticks"), "lipsticks"), + (UniCase("unaviodable"), "unavoidable"), + (UniCase("provincie"), "province"), + (UniCase("whisperd"), "whispered"), + (UniCase("commisioned"), "commissioned"), + (UniCase("netwroking"), "networking"), + (UniCase("marshmalllows"), "marshmallows"), + (UniCase("nationalisations"), "nationalizations"), + (UniCase("prostituion"), "prostitution"), + (UniCase("mulitverse"), "multiverse"), + (UniCase("antisipate"), "anticipate"), + (UniCase("adventuous"), "adventurous"), + (UniCase("connetations"), "connotations"), + (UniCase("teenages"), "teenagers"), + (UniCase("exorbatent"), "exorbitant"), + (UniCase("scrpits"), "scripts"), + (UniCase("appreicated"), "appreciated"), + (UniCase("schoalrs"), "scholars"), + (UniCase("socioligical"), "sociological"), + (UniCase("conservato"), "conservation"), + (UniCase("hypnotising"), "hypnotizing"), + (UniCase("satirised"), "satirized"), + (UniCase("mosntrosity"), "monstrosity"), + (UniCase("undersetimated"), "underestimated"), + (UniCase("fransiscans"), "franciscans"), + (UniCase("cutscence"), "cutscene"), + (UniCase("adressable"), "addressable"), + (UniCase("deparment"), "department"), + (UniCase("victorina"), "victorian"), + (UniCase("pensle"), "pencil"), + (UniCase("dominatin"), "domination"), + (UniCase("transporder"), "transporter"), + (UniCase("litigato"), "litigation"), + (UniCase("balcksmith"), "blacksmith"), + (UniCase("ploarized"), "polarized"), + (UniCase("athleticm"), "athleticism"), + (UniCase("substitutie"), "substitutes"), + (UniCase("superpowereds"), "superpowers"), + (UniCase("unprecendeted"), "unprecedented"), + (UniCase("armoured"), "armored"), + (UniCase("juggernout"), "juggernaut"), + (UniCase("successully"), "successfully"), + (UniCase("serialising"), "serializing"), + (UniCase("orthopaedic"), "orthopedic"), + (UniCase("psychodelics"), "psychedelics"), + (UniCase("proteciton"), "protections"), + (UniCase("ptichforks"), "pitchforks"), + (UniCase("whsiper"), "whisper"), + (UniCase("resemblace"), "resemble"), + (UniCase("zinoists"), "zionists"), + (UniCase("transforme"), "transfer"), + (UniCase("sapphirre"), "sapphire"), + (UniCase("muder"), "murder"), + (UniCase("specality"), "specialty"), + (UniCase("estiamted"), "estimated"), + (UniCase("confirmacion"), "confirmation"), + (UniCase("stpo"), "stop"), + (UniCase("architectureal"), "architectural"), + (UniCase("fulfulling"), "fulfilling"), + (UniCase("stormfornt"), "stormfront"), + (UniCase("retalier"), "retailer"), + (UniCase("happenned"), "happened"), + (UniCase("undenyable"), "undeniable"), + (UniCase("religeous"), "religious"), + (UniCase("kickstater"), "kickstarter"), + (UniCase("instrumetal"), "instrumental"), + (UniCase("sturggling"), "struggling"), + (UniCase("centralises"), "centralizes"), + (UniCase("balsphemy"), "blasphemy"), + (UniCase("separatley"), "separately"), + (UniCase("resistas"), "resists"), + (UniCase("terorrism"), "terrorism"), + (UniCase("horizonts"), "horizons"), + (UniCase("functionaliy"), "functionally"), + (UniCase("desomnd"), "desmond"), + (UniCase("disqualifed"), "disqualified"), + (UniCase("effictiveness"), "effectiveness"), + (UniCase("touchscren"), "touchscreen"), + (UniCase("exersizing"), "exercising"), + (UniCase("authorites"), "authorities"), + (UniCase("existenial"), "existential"), + (UniCase("nromandy"), "normandy"), + (UniCase("belived"), "believed"), + (UniCase("iresistibly"), "irresistibly"), + (UniCase("specializeds"), "specializes"), + (UniCase("mediaeval"), "medieval"), + (UniCase("complilations"), "complications"), + (UniCase("obvilion"), "oblivion"), + (UniCase("insuspecting"), "unsuspecting"), + (UniCase("predective"), "predictive"), + (UniCase("preservativo"), "preservation"), + (UniCase("whitsling"), "whistling"), + (UniCase("mudering"), "murdering"), + (UniCase("delcining"), "declining"), + (UniCase("contstruction"), "construction"), + (UniCase("approprietly"), "appropriately"), + (UniCase("torrenters"), "torrents"), + (UniCase("frequensies"), "frequencies"), + (UniCase("faggotts"), "faggots"), + (UniCase("triolgy"), "trilogy"), + (UniCase("tunnelled"), "tunneled"), + (UniCase("idenfity"), "identify"), + (UniCase("compresors"), "compressor"), + (UniCase("irrevirsible"), "irreversible"), + (UniCase("superheo"), "superhero"), + (UniCase("coutnerparts"), "counterparts"), + (UniCase("compilacion"), "compilation"), + (UniCase("neutralising"), "neutralizing"), + (UniCase("hydropile"), "hydrophile"), + (UniCase("mundance"), "mundane"), + (UniCase("propogation"), "propagation"), + (UniCase("villification"), "vilification"), + (UniCase("notebok"), "notebook"), + (UniCase("invicibility"), "invisibility"), + (UniCase("argumentas"), "arguments"), + (UniCase("transfering"), "transferring"), + (UniCase("mutliplication"), "multiplication"), + (UniCase("garriosn"), "garrison"), + (UniCase("internts"), "interns"), + (UniCase("forskaen"), "forsaken"), + (UniCase("misinterpert"), "misinterpret"), + (UniCase("considerarte"), "considerate"), + (UniCase("asychronous"), "asynchronous"), + (UniCase("discriminare"), "discriminate"), + (UniCase("begginng"), "begging"), + (UniCase("indains"), "indians"), + (UniCase("reactionnary"), "reactionary"), + (UniCase("behtesda"), "bethesda"), + (UniCase("illimunati"), "illuminati"), + (UniCase("medicatons"), "medications"), + (UniCase("formitable"), "formidable"), + (UniCase("ellitot"), "elliott"), + (UniCase("resemblence"), "resemblance"), + (UniCase("interceptin"), "interception"), + (UniCase("inspriation"), "inspiration"), + (UniCase("substace"), "substance"), + (UniCase("contense"), "contenders"), + (UniCase("boyant"), "buoyant"), + (UniCase("arangement"), "arrangement"), + (UniCase("maintianing"), "maintaining"), + (UniCase("journalistische"), "journalistic"), + (UniCase("deivant"), "deviant"), + (UniCase("tenacitiy"), "tenacity"), + (UniCase("libertarainism"), "libertarianism"), + (UniCase("somethinks"), "somethings"), + (UniCase("transaccion"), "transaction"), + (UniCase("overdirve"), "overdrive"), + (UniCase("atleats"), "atleast"), + (UniCase("redundent"), "redundant"), + (UniCase("creepig"), "creeping"), + (UniCase("compatibilty"), "compatibility"), + (UniCase("administed"), "administered"), + (UniCase("photograhic"), "photographic"), + (UniCase("dionsaur"), "dinosaur"), + (UniCase("monstre"), "monster"), + (UniCase("contemplare"), "contemplate"), + (UniCase("illustraties"), "illustrate"), + (UniCase("tangientally"), "tangentially"), + (UniCase("assasinate"), "assassinate"), + (UniCase("palythrough"), "playthrough"), + (UniCase("degrated"), "degrade"), + (UniCase("nutritiuos"), "nutritious"), + (UniCase("adresing"), "addressing"), + (UniCase("denominar"), "denominator"), + (UniCase("permissiable"), "permissible"), + (UniCase("cesspoool"), "cesspool"), + (UniCase("pancaks"), "pancakes"), + (UniCase("americanss"), "americas"), + (UniCase("alternar"), "alternator"), + (UniCase("psychoanalysing"), "psychoanalyzing"), + (UniCase("monolouge"), "monologue"), + (UniCase("accommidate"), "accommodate"), + (UniCase("goblings"), "goblins"), + (UniCase("gaols"), "jails"), + (UniCase("certanity"), "certainty"), + (UniCase("compenents"), "components"), + (UniCase("portuguise"), "portuguese"), + (UniCase("randonmess"), "randomness"), + (UniCase("competiting"), "competition"), + (UniCase("superstitiosi"), "superstitious"), + (UniCase("publusher"), "publisher"), + (UniCase("interchangeabley"), "interchangeably"), + (UniCase("stupidfree"), "stupider"), + (UniCase("statistcal"), "statistical"), + (UniCase("hoepfully"), "hopefully"), + (UniCase("immortalisy"), "immortals"), + (UniCase("exponentiel"), "exponential"), + (UniCase("connecticuit"), "connecticut"), + (UniCase("oversetimating"), "overestimating"), + (UniCase("journied"), "journeyed"), + (UniCase("interste"), "interstate"), + (UniCase("stabilises"), "stabilizes"), + (UniCase("tranditions"), "transitions"), + (UniCase("attackeras"), "attackers"), + (UniCase("commitmet"), "commitments"), + (UniCase("consultaion"), "consultation"), + (UniCase("quarantied"), "quarantine"), + (UniCase("perfomers"), "performers"), + (UniCase("assocaites"), "associates"), + (UniCase("inadequite"), "inadequate"), + (UniCase("pernamently"), "permanently"), + (UniCase("braodband"), "broadband"), + (UniCase("delpoyment"), "deployment"), + (UniCase("caclulate"), "calculate"), + (UniCase("analyitcs"), "analytics"), + (UniCase("govemrent"), "goverment"), + (UniCase("prostitutie"), "prostitute"), + (UniCase("lonileness"), "loneliness"), + (UniCase("miscarraige"), "miscarriage"), + (UniCase("unbalenced"), "unbalanced"), + (UniCase("commemmorate"), "commemorate"), + (UniCase("hypocricy"), "hypocrisy"), + (UniCase("peformed"), "performed"), + (UniCase("delibitating"), "debilitating"), + (UniCase("southanpton"), "southampton"), + (UniCase("underwhemling"), "underwhelming"), + (UniCase("competitio"), "competitor"), + (UniCase("destablized"), "destabilized"), + (UniCase("bastardises"), "bastardizes"), + (UniCase("neckboards"), "neckbeards"), + (UniCase("homecomeing"), "homecoming"), + (UniCase("authenticaiton"), "authentication"), + (UniCase("perclude"), "preclude"), + (UniCase("practicess"), "practise"), + (UniCase("grilfriends"), "girlfriends"), + (UniCase("ethincity"), "ethnicity"), + (UniCase("sparkel"), "sparkle"), + (UniCase("legalisation"), "legalization"), + (UniCase("colelctors"), "collectors"), + (UniCase("sensationalim"), "sensationalism"), + (UniCase("notwhithstanding"), "notwithstanding"), + (UniCase("amensia"), "amnesia"), + (UniCase("adatper"), "adapter"), + (UniCase("explenation"), "explanation"), + (UniCase("disrispecting"), "disrespecting"), + (UniCase("privilegde"), "privileges"), + (UniCase("nationalisim"), "nationalism"), + (UniCase("restircted"), "restricted"), + (UniCase("boyfirend"), "boyfriend"), + (UniCase("celebrato"), "celebration"), + (UniCase("assasination"), "assassination"), + (UniCase("tortillia"), "tortilla"), + (UniCase("categoricaly"), "categorically"), + (UniCase("interrogacion"), "interrogation"), + (UniCase("propserous"), "prosperous"), + (UniCase("odour"), "odor"), + (UniCase("transportarte"), "transporter"), + (UniCase("portabilty"), "portability"), + (UniCase("algortihms"), "algorithms"), + (UniCase("astronautes"), "astronauts"), + (UniCase("investigaiton"), "investigations"), + (UniCase("hypnotised"), "hypnotized"), + (UniCase("implementaciones"), "implementations"), + (UniCase("grammaticaly"), "grammatically"), + (UniCase("exauhsted"), "exhausted"), + (UniCase("trafic"), "traffic"), + (UniCase("dictats"), "dictates"), + (UniCase("philiphines"), "philippines"), + (UniCase("floridia"), "florida"), + (UniCase("civilications"), "civilizations"), + (UniCase("sensure"), "censure"), + (UniCase("mutatin"), "mutation"), + (UniCase("eulogises"), "eulogizes"), + (UniCase("directorios"), "directors"), + (UniCase("exlcamation"), "exclamation"), + (UniCase("campagin"), "campaign"), + (UniCase("currenctly"), "currency"), + (UniCase("complimenary"), "complimentary"), + (UniCase("abreviate"), "abbreviate"), + (UniCase("tempset"), "tempest"), + (UniCase("inadvertendly"), "inadvertently"), + (UniCase("improviserad"), "improvised"), + (UniCase("periwinkie"), "periwinkle"), + (UniCase("deamenor"), "demeanor"), + (UniCase("microscrope"), "microscope"), + (UniCase("deciption"), "depiction"), + (UniCase("ruidmentary"), "rudimentary"), + (UniCase("anonmyously"), "anonymously"), + (UniCase("constitucional"), "constitutional"), + (UniCase("deafult"), "default"), + (UniCase("prematurily"), "prematurely"), + (UniCase("frankenstines"), "frankenstein"), + (UniCase("colonianism"), "colonialism"), + (UniCase("hapening"), "happening"), + (UniCase("substantually"), "substantially"), + (UniCase("antagonisitic"), "antagonistic"), + (UniCase("twelth"), "twelfth"), + (UniCase("whereever"), "wherever"), + (UniCase("powerded"), "powdered"), + (UniCase("misunderstading"), "misunderstanding"), + (UniCase("integracion"), "integration"), + (UniCase("nutritionnal"), "nutritional"), + (UniCase("serveillance"), "surveillance"), + (UniCase("yeild"), "yield"), + (UniCase("dissapoonted"), "dissapointed"), + (UniCase("relfecting"), "reflecting"), + (UniCase("circumsicion"), "circumcision"), + (UniCase("arthirtis"), "arthritis"), + (UniCase("protestans"), "protests"), + (UniCase("trainwreak"), "trainwreck"), + (UniCase("approrpiation"), "appropriation"), + (UniCase("condescenion"), "condescension"), + (UniCase("distrabution"), "distribution"), + (UniCase("cynisicm"), "cynicism"), + (UniCase("eachohter"), "eachother"), + (UniCase("medatite"), "meditate"), + (UniCase("utilised"), "utilized"), + (UniCase("culprint"), "culprit"), + (UniCase("appoitnments"), "appointments"), + (UniCase("whipsering"), "whispering"), + (UniCase("maintainance"), "maintenance"), + (UniCase("termendous"), "tremendous"), + (UniCase("civilizaton"), "civilization"), + (UniCase("broadcasing"), "broadcasting"), + (UniCase("cartells"), "cartels"), + (UniCase("minneosta"), "minnesota"), + (UniCase("fanaticus"), "fanatics"), + (UniCase("councills"), "councils"), + (UniCase("pumkin"), "pumpkin"), + (UniCase("unsubscripe"), "unsubscribe"), + (UniCase("corsspost"), "crosspost"), + (UniCase("underglo"), "undergo"), + (UniCase("descipable"), "despicable"), + (UniCase("filmmakare"), "filmmakers"), + (UniCase("vociemail"), "voicemail"), + (UniCase("patrios"), "patriots"), + (UniCase("buddhit"), "buddhist"), + (UniCase("miletsones"), "milestones"), + (UniCase("misunderstsnding"), "misunderstandings"), + (UniCase("stationair"), "stationary"), + (UniCase("circkets"), "crickets"), + (UniCase("compalation"), "compilation"), + (UniCase("precurosr"), "precursor"), + (UniCase("enthisiast"), "enthusiast"), + (UniCase("symbolises"), "symbolizes"), + (UniCase("transitin"), "transitions"), + (UniCase("appication"), "application"), + (UniCase("squadroon"), "squadron"), + (UniCase("persistante"), "persistent"), + (UniCase("eslewhere"), "elsewhere"), + (UniCase("pryamids"), "pyramids"), + (UniCase("pretendas"), "pretends"), + (UniCase("uncersored"), "uncensored"), + (UniCase("pinoeer"), "pioneer"), + (UniCase("individuels"), "individuals"), + (UniCase("electroate"), "electorate"), + (UniCase("vegatarian"), "vegetarian"), + (UniCase("continuasse"), "continues"), + (UniCase("supposebly"), "supposedly"), + (UniCase("franches"), "franchise"), + (UniCase("momment"), "moment"), + (UniCase("inexeprienced"), "inexperience"), + (UniCase("customised"), "customized"), + (UniCase("essentail"), "essential"), + (UniCase("internation"), "international"), + (UniCase("romanain"), "romanian"), + (UniCase("estimatin"), "estimation"), + (UniCase("forcefuly"), "forcefully"), + (UniCase("alignemnt"), "alignment"), + (UniCase("verfication"), "verification"), + (UniCase("prohobited"), "prohibited"), + (UniCase("strengthn"), "strengthen"), + (UniCase("succouring"), "succoring"), + (UniCase("graident"), "gradient"), + (UniCase("technicalty"), "technicality"), + (UniCase("surviver"), "survivor"), + (UniCase("qualifieds"), "qualifies"), + (UniCase("instabiliy"), "instability"), + (UniCase("confessino"), "confessions"), + (UniCase("entreprenaurs"), "entrepreneurs"), + (UniCase("imperialsim"), "imperialism"), + (UniCase("sargeant"), "sergeant"), + (UniCase("strategiske"), "strategies"), + (UniCase("mangetic"), "magnetic"), + (UniCase("healthyest"), "healthiest"), + (UniCase("knowladgable"), "knowledgable"), + (UniCase("assymetric"), "asymmetric"), + (UniCase("calculater"), "calculator"), + (UniCase("dynamicallly"), "dynamically"), + (UniCase("omniscienct"), "omniscient"), + (UniCase("overlanded"), "overloaded"), + (UniCase("conqure"), "conquer"), + (UniCase("formualte"), "formulate"), + (UniCase("rectangluar"), "rectangular"), + (UniCase("gardai"), "gardaí"), + (UniCase("dickisch"), "dickish"), + (UniCase("passivelly"), "passively"), + (UniCase("congratualtions"), "congratulations"), + (UniCase("raidoactive"), "radioactive"), + (UniCase("hundread"), "hundred"), + (UniCase("slaugther"), "slaughter"), + (UniCase("trickyer"), "trickery"), + (UniCase("restrictivo"), "restriction"), + (UniCase("architecutre"), "architecture"), + (UniCase("supposidly"), "supposedly"), + (UniCase("packadge"), "packaged"), + (UniCase("mechansim"), "mechanism"), + (UniCase("decriminalisation"), "decriminalization"), + (UniCase("mathimatical"), "mathematical"), + (UniCase("regularising"), "regularizing"), + (UniCase("syllabe"), "syllable"), + (UniCase("literatue"), "literate"), + (UniCase("purpolsion"), "propulsion"), + (UniCase("varient"), "variant"), + (UniCase("hybrides"), "hybrids"), + (UniCase("transcendentational"), "transcendental"), + (UniCase("mileu"), "milieu"), + (UniCase("reworkd"), "reworked"), + (UniCase("constallation"), "constellation"), + (UniCase("fellowhsip"), "fellowship"), + (UniCase("auxillary"), "auxiliary"), + (UniCase("instalaltion"), "installations"), + (UniCase("guaridan"), "guardian"), + (UniCase("fourten"), "fourteen"), + (UniCase("pulverises"), "pulverizes"), + (UniCase("definilty"), "definitly"), + (UniCase("humanised"), "humanized"), + (UniCase("complexitiy"), "complexity"), + (UniCase("assistante"), "assistance"), + (UniCase("californien"), "californian"), + (UniCase("enthusisast"), "enthusiasts"), + (UniCase("disingenuious"), "disingenuous"), + (UniCase("enviornmental"), "environmental"), + (UniCase("objectivley"), "objectively"), + (UniCase("horrendos"), "horrendous"), + (UniCase("intorduced"), "introduced"), + (UniCase("geomerty"), "geometry"), + (UniCase("aproximately"), "approximately"), + (UniCase("haemophilia"), "hemophilia"), + (UniCase("chocolae"), "chocolates"), + (UniCase("reliabillity"), "reliability"), + (UniCase("consoltation"), "consultation"), + (UniCase("analysisto"), "analysts"), + (UniCase("demoralise"), "demoralize"), + (UniCase("continueous"), "continuous"), + (UniCase("subsquent"), "subsequent"), + (UniCase("passvies"), "passives"), + (UniCase("contagiosum"), "contagious"), + (UniCase("paltinum"), "platinum"), + (UniCase("contection"), "contention"), + (UniCase("universitets"), "universities"), + (UniCase("meagthread"), "megathread"), + (UniCase("unsucesfuly"), "unsuccessfully"), + (UniCase("surounded"), "surrounded"), + (UniCase("overyhped"), "overhyped"), + (UniCase("fundimentalists"), "fundamentalists"), + (UniCase("sitrring"), "stirring"), + (UniCase("pornogrophy"), "pornography"), + (UniCase("collectoin"), "collections"), + (UniCase("magnitudine"), "magnitude"), + (UniCase("vulernabilities"), "vulnerabilities"), + (UniCase("patriarchia"), "patriarchal"), + (UniCase("underminging"), "undermining"), + (UniCase("repearable"), "repeatable"), + (UniCase("perforamnce"), "performances"), + (UniCase("happend"), "happened"), + (UniCase("brillant"), "brilliant"), + (UniCase("pregnencies"), "pregnancies"), + (UniCase("manuales"), "manuals"), + (UniCase("contingeny"), "contingency"), + (UniCase("perputrator"), "perpetrator"), + (UniCase("chormosome"), "chromosome"), + (UniCase("philosiphies"), "philosophies"), + (UniCase("malfuncting"), "malfunction"), + (UniCase("missionairy"), "missionary"), + (UniCase("youself"), "yourself"), + (UniCase("politicanti"), "politician"), + (UniCase("disover"), "discover"), + (UniCase("insipring"), "inspiring"), + (UniCase("substantitve"), "substantive"), + (UniCase("rightfullly"), "rightfully"), + (UniCase("signifiy"), "signify"), + (UniCase("liberae"), "liberate"), + (UniCase("exploititive"), "exploitative"), + (UniCase("implikation"), "implication"), + (UniCase("neuroligical"), "neurological"), + (UniCase("refershed"), "refreshed"), + (UniCase("monumentos"), "monuments"), + (UniCase("susecptible"), "susceptible"), + (UniCase("randomise"), "randomize"), + (UniCase("glithces"), "glitches"), + (UniCase("organsie"), "organise"), + (UniCase("interent"), "internet"), + (UniCase("contreversial"), "controversial"), + (UniCase("lighthearthed"), "lighthearted"), + (UniCase("adquired"), "acquired"), + (UniCase("clevelry"), "cleverly"), + (UniCase("fantasmically"), "fantastically"), + (UniCase("absuers"), "abusers"), + (UniCase("bastino"), "bastion"), + (UniCase("retardating"), "retardation"), + (UniCase("prematurley"), "prematurely"), + (UniCase("terribley"), "terribly"), + (UniCase("diagnosies"), "diagnosis"), + (UniCase("downvoteds"), "downvoters"), + (UniCase("protestantisk"), "protestants"), + (UniCase("somethins"), "somethings"), + (UniCase("toppingest"), "toppings"), + (UniCase("conservacion"), "conservation"), + (UniCase("reinforcemt"), "reinforcement"), + (UniCase("alterating"), "alteration"), + (UniCase("denegerate"), "degenerate"), + (UniCase("supsiciously"), "suspiciously"), + (UniCase("credibillity"), "credibility"), + (UniCase("manufacure"), "manufacture"), + (UniCase("actualoy"), "actualy"), + (UniCase("intentionly"), "intentional"), + (UniCase("spontanous"), "spontaneous"), + (UniCase("astronatus"), "astronauts"), + (UniCase("competive"), "competitive"), + (UniCase("inevitabley"), "inevitably"), + (UniCase("graudation"), "graduation"), + (UniCase("derpivation"), "deprivation"), + (UniCase("cringeworty"), "cringeworthy"), + (UniCase("apostrohpe"), "apostrophe"), + (UniCase("compresores"), "compressor"), + (UniCase("executabe"), "executable"), + (UniCase("misunderstaning"), "misunderstanding"), + (UniCase("compromizing"), "compromising"), + (UniCase("incognition"), "incognito"), + (UniCase("generalizare"), "generalize"), + (UniCase("bankrupcty"), "bankruptcy"), + (UniCase("montanya"), "montana"), + (UniCase("commiting"), "committing"), + (UniCase("unappropriately"), "inappropriately"), + (UniCase("cheeseus"), "cheeses"), + (UniCase("reatiler"), "retailer"), + (UniCase("employeers"), "employees"), + (UniCase("wordlview"), "worldview"), + (UniCase("doulbelift"), "doublelift"), + (UniCase("misunderstnading"), "misunderstandings"), + (UniCase("phatnom"), "phantom"), + (UniCase("unqiuely"), "uniquely"), + (UniCase("surrepetitious"), "surreptitious"), + (UniCase("mechancially"), "mechanically"), + (UniCase("phsyical"), "physical"), + (UniCase("specrtal"), "spectral"), + (UniCase("dealerhsip"), "dealerships"), + (UniCase("competiters"), "competitors"), + (UniCase("guantamano"), "guantanamo"), + (UniCase("criminalul"), "criminally"), + (UniCase("identificaiton"), "identification"), + (UniCase("paragraphes"), "paragraphs"), + (UniCase("agnostisism"), "agnosticism"), + (UniCase("descibed"), "described"), + (UniCase("scoripon"), "scorpion"), + (UniCase("lingeire"), "lingerie"), + (UniCase("manufacturedd"), "manufactured"), + (UniCase("demobilising"), "demobilizing"), + (UniCase("charismatisch"), "charismatic"), + (UniCase("acident"), "accident"), + (UniCase("philosohpically"), "philosophically"), + (UniCase("nowe"), "now"), + (UniCase("insistance"), "insistence"), + (UniCase("concentratin"), "concentration"), + (UniCase("liek"), "like"), + (UniCase("endoctrination"), "indoctrination"), + (UniCase("unfirendly"), "unfriendly"), + (UniCase("misreably"), "miserably"), + (UniCase("homosexuales"), "homosexuals"), + (UniCase("influenser"), "influences"), + (UniCase("reicarnation"), "reincarnation"), + (UniCase("scandinavion"), "scandinavian"), + (UniCase("ukrianians"), "ukrainians"), + (UniCase("backdooor"), "backdoor"), + (UniCase("perfecty"), "perfectly"), + (UniCase("metaphorial"), "metaphorical"), + (UniCase("cricling"), "circling"), + (UniCase("metabloism"), "metabolism"), + (UniCase("slippes"), "slippers"), + (UniCase("kidnergarten"), "kindergarten"), + (UniCase("mobilised"), "mobilized"), + (UniCase("confrontacional"), "confrontational"), + (UniCase("dimesnional"), "dimensional"), + (UniCase("comparsion"), "comparison"), + (UniCase("msytical"), "mystical"), + (UniCase("moderatey"), "moderately"), + (UniCase("intrigured"), "intrigue"), + (UniCase("realtable"), "relatable"), + (UniCase("negotiatin"), "negotiations"), + (UniCase("transferd"), "transferred"), + (UniCase("renetkon"), "renekton"), + (UniCase("certificaiton"), "certification"), + (UniCase("uncompatible"), "incompatible"), + (UniCase("renaiscance"), "renaissance"), + (UniCase("austrailans"), "australians"), + (UniCase("exercies"), "exercise"), + (UniCase("vitamines"), "vitamins"), + (UniCase("copyrigted"), "copyrighted"), + (UniCase("applicato"), "application"), + (UniCase("frankensite"), "frankenstein"), + (UniCase("filesytems"), "filesystem"), + (UniCase("superios"), "superiors"), + (UniCase("latitudine"), "latitude"), + (UniCase("unexpectidly"), "unexpectedly"), + (UniCase("behvaiour"), "behaviour"), + (UniCase("earplus"), "earplugs"), + (UniCase("veiwpoints"), "viewpoints"), + (UniCase("throaths"), "throats"), + (UniCase("vewiership"), "viewership"), + (UniCase("compensative"), "compensate"), + (UniCase("agred"), "agreed"), + (UniCase("magnificant"), "magnificent"), + (UniCase("conciously"), "consciously"), + (UniCase("govenrments"), "governments"), + (UniCase("signitories"), "signatories"), + (UniCase("benghai"), "benghazi"), + (UniCase("atlesat"), "atleast"), + (UniCase("heistate"), "hesitate"), + (UniCase("swizterland"), "switzerland"), + (UniCase("seahakws"), "seahawks"), + (UniCase("skandinavian"), "scandinavian"), + (UniCase("backtacking"), "backpacking"), + (UniCase("casaulity"), "causality"), + (UniCase("fesitvals"), "festivals"), + (UniCase("mecernaries"), "mercenaries"), + (UniCase("galsgow"), "glasgow"), + (UniCase("tiome"), "time"), + (UniCase("propriatary"), "proprietary"), + (UniCase("libertaryans"), "libertarians"), + (UniCase("declareation"), "declaration"), + (UniCase("requred"), "required"), + (UniCase("temptating"), "temptation"), + (UniCase("contanimated"), "contaminated"), + (UniCase("efficent"), "efficient"), + (UniCase("westernerns"), "westerners"), + (UniCase("possibiliy"), "possibility"), + (UniCase("swithced"), "switched"), + (UniCase("tranlsation"), "translation"), + (UniCase("splaton"), "splatoon"), + (UniCase("heriocs"), "heroics"), + (UniCase("acomplishments"), "accomplishments"), + (UniCase("memorialises"), "memorializes"), + (UniCase("mailny"), "mainly"), + (UniCase("suspiciuosly"), "suspiciously"), + (UniCase("unauthorised"), "unauthorized"), + (UniCase("apprentince"), "apprentice"), + (UniCase("statuts"), "statutes"), + (UniCase("cholestrol"), "cholesterol"), + (UniCase("involintary"), "involuntary"), + (UniCase("deadlfits"), "deadlifts"), + (UniCase("inexpectedly"), "unexpectedly"), + (UniCase("striekrs"), "strikers"), + (UniCase("stabilizare"), "stabilize"), + (UniCase("vicitms"), "victims"), + (UniCase("unforetunately"), "unfortunately"), + (UniCase("simulaties"), "simulate"), + (UniCase("mediaction"), "medications"), + (UniCase("ectsasy"), "ecstasy"), + (UniCase("lipstics"), "lipsticks"), + (UniCase("goverance"), "governance"), + (UniCase("recommendors"), "recommends"), + (UniCase("methematician"), "mathematician"), + (UniCase("immedietly"), "immediately"), + (UniCase("carboyhdrates"), "carbohydrates"), + (UniCase("borderlans"), "borderlands"), + (UniCase("enivronmentally"), "environmentally"), + (UniCase("partisain"), "partisan"), + (UniCase("misrepresentaiton"), "misrepresentation"), + (UniCase("masteires"), "masteries"), + (UniCase("scandalised"), "scandalized"), + (UniCase("aftermaket"), "aftermarket"), + (UniCase("conquerring"), "conquering"), + (UniCase("purpotedly"), "purportedly"), + (UniCase("insepctor"), "inspector"), + (UniCase("fascinatin"), "fascination"), + (UniCase("situationals"), "situations"), + (UniCase("individuel"), "individual"), + (UniCase("priveleges"), "privileges"), + (UniCase("referig"), "refering"), + (UniCase("perhpas"), "perhaps"), + (UniCase("briliant"), "brilliant"), + (UniCase("encomapsses"), "encompasses"), + (UniCase("canonised"), "canonized"), + (UniCase("noteable"), "notable"), + (UniCase("brednan"), "brendan"), + (UniCase("capabality"), "capability"), + (UniCase("guantanamero"), "guantanamo"), + (UniCase("libertarianisim"), "libertarianism"), + (UniCase("undertakeing"), "undertaking"), + (UniCase("praticle"), "particle"), + (UniCase("americains"), "americas"), + (UniCase("startegies"), "strategies"), + (UniCase("propertion"), "proportion"), + (UniCase("yorkshrie"), "yorkshire"), + (UniCase("enclsoure"), "enclosure"), + (UniCase("outragious"), "outrageous"), + (UniCase("misundersood"), "misunderstood"), + (UniCase("techeis"), "techies"), + (UniCase("misconcpetion"), "misconceptions"), + (UniCase("constructo"), "construction"), + (UniCase("necessitive"), "necessities"), + (UniCase("commonwelath"), "commonwealth"), + (UniCase("reflectie"), "reflective"), + (UniCase("therefour"), "therefor"), + (UniCase("administratieve"), "administrative"), + (UniCase("prevailaing"), "prevailing"), + (UniCase("comapnions"), "companions"), + (UniCase("wavelenghth"), "wavelength"), + (UniCase("benghazzi"), "benghazi"), + (UniCase("contenplating"), "contemplating"), + (UniCase("archatypes"), "archetypes"), + (UniCase("standerdized"), "standardized"), + (UniCase("interrumping"), "interrupting"), + (UniCase("sympatheic"), "sympathetic"), + (UniCase("explaintory"), "explanatory"), + (UniCase("trasngender"), "transgender"), + (UniCase("drummless"), "drumless"), + (UniCase("drinkes"), "drinkers"), + (UniCase("strategiclly"), "strategically"), + (UniCase("acquinated"), "acquainted"), + (UniCase("intolorant"), "intolerant"), + (UniCase("massace"), "massacre"), + (UniCase("toursit"), "tourist"), + (UniCase("jursidictions"), "jurisdictions"), + (UniCase("torublesome"), "troublesome"), + (UniCase("offical"), "official"), + (UniCase("protecs"), "protects"), + (UniCase("exceutioner"), "executioner"), + (UniCase("constitutinal"), "constitutional"), + (UniCase("cementary"), "cemetery"), + (UniCase("uncontrollablely"), "uncontrollably"), + (UniCase("masturbateing"), "masturbating"), + (UniCase("assassinted"), "assassinated"), + (UniCase("significat"), "significant"), + (UniCase("circumsiced"), "circumcised"), + (UniCase("guiness"), "guinness"), + (UniCase("initalise"), "initialise"), + (UniCase("shitstrom"), "shitstorm"), + (UniCase("inaccurasies"), "inaccuracies"), + (UniCase("liberalnim"), "liberalism"), + (UniCase("abbreviatin"), "abbreviation"), + (UniCase("mobilise"), "mobilize"), + (UniCase("modulair"), "modular"), + (UniCase("photograper"), "photographer"), + (UniCase("inevitablity"), "inevitably"), + (UniCase("carismatic"), "charismatic"), + (UniCase("expresison"), "expressions"), + (UniCase("electricain"), "electrician"), + (UniCase("plantes"), "planets"), + (UniCase("vaporising"), "vaporizing"), + (UniCase("valentinos"), "valentines"), + (UniCase("impules"), "impulse"), + (UniCase("principl"), "principals"), + (UniCase("transcrit"), "transcript"), + (UniCase("differentate"), "differentiate"), + (UniCase("therefoer"), "therefor"), + (UniCase("consultato"), "consultation"), + (UniCase("kilometros"), "kilometers"), + (UniCase("detailled"), "detailed"), + (UniCase("passagers"), "passages"), + (UniCase("academicese"), "academics"), + (UniCase("misinterpted"), "misinterpret"), + (UniCase("homogeneos"), "homogeneous"), + (UniCase("maybellene"), "maybelline"), + (UniCase("hutnsman"), "huntsman"), + (UniCase("parcelled"), "parceled"), + (UniCase("sensibilisiert"), "sensibilities"), + (UniCase("derogatery"), "derogatory"), + (UniCase("promenently"), "prominently"), + (UniCase("miltiant"), "militant"), + (UniCase("formaly"), "formally"), + (UniCase("accomdate"), "accommodate"), + (UniCase("valuabe"), "valuable"), + (UniCase("ethnicitiy"), "ethnicity"), + (UniCase("disgustus"), "disgusts"), + (UniCase("britian"), "britain"), + (UniCase("chilvary"), "chivalry"), + (UniCase("resignement"), "resignment"), + (UniCase("develompent"), "developments"), + (UniCase("diagnositic"), "diagnostic"), + (UniCase("chocolet"), "chocolates"), + (UniCase("finalise"), "finalize"), + (UniCase("metephorical"), "metaphorical"), + (UniCase("hannibl"), "hannibal"), + (UniCase("represention"), "representing"), + (UniCase("metropolitaine"), "metropolitan"), + (UniCase("moulder"), "molder"), + (UniCase("compilcations"), "complication"), + (UniCase("paladinos"), "paladins"), + (UniCase("oversimplificiation"), "oversimplification"), + (UniCase("overlordess"), "overlords"), + (UniCase("sacromento"), "sacramento"), + (UniCase("spreadsheats"), "spreadsheets"), + (UniCase("multicoloured"), "multicolored"), + (UniCase("degraged"), "degrade"), + (UniCase("pretences"), "pretenses"), + (UniCase("hipocritical"), "hypocritical"), + (UniCase("misspelt"), "misspelled"), + (UniCase("normany"), "normandy"), + (UniCase("bedevilled"), "bedeviled"), + (UniCase("manefestation"), "manifestation"), + (UniCase("facilitait"), "facilitate"), + (UniCase("uncatalogued"), "uncataloged"), + (UniCase("vendettta"), "vendetta"), + (UniCase("discolours"), "discolors"), + (UniCase("mathimatics"), "mathematics"), + (UniCase("trustworthyness"), "trustworthiness"), + (UniCase("professionalise"), "professionalize"), + (UniCase("backpedalled"), "backpedaled"), + (UniCase("complusory"), "compulsory"), + (UniCase("exoitcs"), "exotics"), + (UniCase("exposito"), "exposition"), + (UniCase("digitised"), "digitized"), + (UniCase("evangelised"), "evangelized"), + (UniCase("inspektion"), "inspection"), + (UniCase("releive"), "relieve"), + (UniCase("veritgo"), "vertigo"), + (UniCase("fictionalises"), "fictionalizes"), + (UniCase("passionais"), "passions"), + (UniCase("formallized"), "formalized"), + (UniCase("rationalle"), "rationale"), + (UniCase("dissapears"), "disappears"), + (UniCase("satsifactory"), "satisfactory"), + (UniCase("manufactuters"), "manufactures"), + (UniCase("surrenderd"), "surrendered"), + (UniCase("asissts"), "assists"), + (UniCase("boradcast"), "broadcast"), + (UniCase("dismantaled"), "dismantled"), + (UniCase("wigdets"), "widgets"), + (UniCase("indicaters"), "indicates"), + (UniCase("intervieuw"), "interviews"), + (UniCase("breaktrhough"), "breakthrough"), + (UniCase("bicylces"), "bicycles"), + (UniCase("prepetrator"), "perpetrator"), + (UniCase("heriarchy"), "hierarchy"), + (UniCase("responsibil"), "responsibly"), + (UniCase("specialised"), "specialized"), + (UniCase("neurosceince"), "neuroscience"), + (UniCase("pscyhopaths"), "psychopaths"), + (UniCase("dicksih"), "dickish"), + (UniCase("stirkers"), "strikers"), + (UniCase("techician"), "technician"), + (UniCase("alternatvely"), "alternately"), + (UniCase("civiliaztion"), "civilizations"), + (UniCase("handicape"), "handicapped"), + (UniCase("mutlinationals"), "multinational"), + (UniCase("ocassional"), "occasional"), + (UniCase("superstituous"), "superstitious"), + (UniCase("masturbaited"), "masturbated"), + (UniCase("godafther"), "godfather"), + (UniCase("participatin"), "participation"), + (UniCase("legitimaly"), "legitimacy"), + (UniCase("physicts"), "physicist"), + (UniCase("utpoian"), "utopian"), + (UniCase("oversue"), "overuse"), + (UniCase("valnetines"), "valentines"), + (UniCase("ususally"), "usually"), + (UniCase("contextuel"), "contextual"), + (UniCase("concieved"), "conceived"), + (UniCase("colonialisim"), "colonialism"), + (UniCase("punihsment"), "punishments"), + (UniCase("negotiatie"), "negotiated"), + (UniCase("witnesess"), "witnesses"), + (UniCase("circumvrent"), "circumvent"), + (UniCase("diagnotics"), "diagnostic"), + (UniCase("asethetically"), "aesthetically"), + (UniCase("nkwo"), "know"), + (UniCase("consolato"), "consolation"), + (UniCase("creamic"), "ceramic"), + (UniCase("accusition"), "accusation"), + (UniCase("egotistcal"), "egotistical"), + (UniCase("substanta"), "substantial"), + (UniCase("participatd"), "participant"), + (UniCase("disadvatange"), "disadvantage"), + (UniCase("neruological"), "neurological"), + (UniCase("neglegance"), "negligence"), + (UniCase("disturbace"), "disturbance"), + (UniCase("exoticos"), "exotics"), + (UniCase("orginazations"), "organizations"), + (UniCase("similaraties"), "similarities"), + (UniCase("depedencies"), "dependencies"), + (UniCase("descriptivos"), "descriptions"), + (UniCase("siezures"), "seizures"), + (UniCase("outrageuosly"), "outrageously"), + (UniCase("corrosponds"), "corresponds"), + (UniCase("convincted"), "convince"), + (UniCase("mould"), "mold"), + (UniCase("plethroa"), "plethora"), + (UniCase("gatherig"), "gatherings"), + (UniCase("motivatinal"), "motivational"), + (UniCase("conneticut"), "connecticut"), + (UniCase("guarentee"), "guarantee"), + (UniCase("tranform"), "transform"), + (UniCase("preferance"), "preference"), + (UniCase("advertis"), "adverts"), + (UniCase("maniuplation"), "manipulation"), + (UniCase("skirmiches"), "skirmish"), + (UniCase("tempurature"), "temperature"), + (UniCase("exlporers"), "explorers"), + (UniCase("halfitme"), "halftime"), + (UniCase("metaphisical"), "metaphysical"), + (UniCase("equilibriam"), "equilibrium"), + (UniCase("moelcules"), "molecules"), + (UniCase("alogrithms"), "algorithms"), + (UniCase("donwvote"), "downvote"), + (UniCase("criticised"), "criticized"), + (UniCase("uninstallng"), "uninstalling"), + (UniCase("artifacs"), "artifacts"), + (UniCase("masterbation"), "masturbation"), + (UniCase("interstela"), "interstellar"), + (UniCase("outragerous"), "outrageous"), + (UniCase("organisate"), "organise"), + (UniCase("belssings"), "blessings"), + (UniCase("advertisiers"), "advertisers"), + (UniCase("unconscous"), "unconscious"), + (UniCase("supramacist"), "supremacist"), + (UniCase("sepulchre"), "sepulcher"), + (UniCase("gurantee"), "guarantee"), + (UniCase("gurading"), "guarding"), + (UniCase("thoeries"), "theories"), + (UniCase("circumstantional"), "circumstantial"), + (UniCase("fullfilment"), "fulfillment"), + (UniCase("positivy"), "positivity"), + (UniCase("singlers"), "singles"), + (UniCase("recogise"), "recognise"), + (UniCase("consumerisim"), "consumerism"), + (UniCase("fertilise"), "fertilize"), + (UniCase("spectracal"), "spectral"), + (UniCase("powerlifitng"), "powerlifting"), + (UniCase("aspiratons"), "aspirations"), + (UniCase("complext"), "complexity"), + (UniCase("lousiville"), "louisville"), + (UniCase("vengence"), "vengeance"), + (UniCase("determenism"), "determinism"), + (UniCase("unintensional"), "unintentional"), + (UniCase("falshed"), "flashed"), + (UniCase("distinquish"), "distinguish"), + (UniCase("philtre"), "filter"), + (UniCase("pased"), "passed"), + (UniCase("cancelling"), "canceling"), + (UniCase("murderd"), "murdered"), + (UniCase("negociating"), "negotiating"), + (UniCase("honoured"), "honored"), + (UniCase("wathever"), "whatever"), + (UniCase("willfullly"), "willfully"), + (UniCase("certificats"), "certificates"), + (UniCase("counsilling"), "counselling"), + (UniCase("troubelshoot"), "troubleshoot"), + (UniCase("degradato"), "degradation"), + (UniCase("unbolievable"), "unbelievable"), + (UniCase("gryphons"), "griffins"), + (UniCase("simultaenous"), "simultaneous"), + (UniCase("demogrpahics"), "demographics"), + (UniCase("somethimng"), "somethin"), + (UniCase("microtransactioms"), "microtransactions"), + (UniCase("industrijske"), "industries"), + (UniCase("arresst"), "arrests"), + (UniCase("misinterprit"), "misinterpreting"), + (UniCase("relaibly"), "reliably"), + (UniCase("margaritte"), "margaret"), + (UniCase("tyrannised"), "tyrannized"), + (UniCase("brodaway"), "broadway"), + (UniCase("lisence"), "license"), + (UniCase("disaterous"), "disastrous"), + (UniCase("neuronas"), "neurons"), + (UniCase("racaus"), "raucous"), + (UniCase("responisbility"), "responsibility"), + (UniCase("inbalance"), "imbalance"), + (UniCase("capacators"), "capacitors"), + (UniCase("timestmap"), "timestamp"), + (UniCase("understannd"), "understands"), + (UniCase("colonialsm"), "colonialism"), + (UniCase("audcaity"), "audacity"), + (UniCase("indianas"), "indians"), + (UniCase("charactarize"), "characterize"), + (UniCase("ingrediants"), "ingredients"), + (UniCase("bodyheight"), "bodyweight"), + (UniCase("unlcoks"), "unlocks"), + (UniCase("vigilantie"), "vigilante"), + (UniCase("objectificaiton"), "objectification"), + (UniCase("brutalise"), "brutalize"), + (UniCase("responcibility"), "responsibility"), + (UniCase("photogrpah"), "photographs"), + (UniCase("shletered"), "sheltered"), + (UniCase("toruneys"), "tourneys"), + (UniCase("forasken"), "forsaken"), + (UniCase("fulfiled"), "fulfilled"), + (UniCase("jamacia"), "jamaica"), + (UniCase("freckels"), "freckles"), + (UniCase("instrucitons"), "instruction"), + (UniCase("enterpirses"), "enterprises"), + (UniCase("stimulatie"), "stimulated"), + (UniCase("recpetionist"), "receptionist"), + (UniCase("monolithisch"), "monolithic"), + (UniCase("philadelpia"), "philadelphia"), + (UniCase("equivalet"), "equivalents"), + (UniCase("antiboitics"), "antibiotics"), + (UniCase("intamite"), "intimate"), + (UniCase("similiarty"), "similarity"), + (UniCase("januray"), "january"), + (UniCase("portuguesse"), "portuguese"), + (UniCase("intestents"), "intestines"), + (UniCase("vicintiy"), "vicinity"), + (UniCase("unnistall"), "uninstall"), + (UniCase("tournemant"), "tournament"), + (UniCase("syphoning"), "siphoning"), + (UniCase("dependandt"), "dependant"), + (UniCase("sympathise"), "sympathize"), + (UniCase("enlightented"), "enlightened"), + (UniCase("virgings"), "virgins"), + (UniCase("revisiones"), "revisions"), + (UniCase("tramuatized"), "traumatized"), + (UniCase("stockplie"), "stockpile"), + (UniCase("anaylse"), "analyse"), + (UniCase("dramatised"), "dramatized"), + (UniCase("reactionair"), "reactionary"), + (UniCase("sqaures"), "squares"), + (UniCase("tanenhill"), "tannehill"), + (UniCase("insecurites"), "insecurities"), + (UniCase("elimentary"), "elementary"), + (UniCase("zoinists"), "zionists"), + (UniCase("cancles"), "cancels"), + (UniCase("silohuette"), "silhouette"), + (UniCase("subtltey"), "subtlety"), + (UniCase("professonial"), "professionals"), + (UniCase("unnecesary"), "unnecessary"), + (UniCase("exelent"), "excellent"), + (UniCase("compilant"), "compliant"), + (UniCase("prescriped"), "prescribed"), + (UniCase("commitd"), "commited"), + (UniCase("playthroughers"), "playthroughs"), + (UniCase("distribustion"), "distributions"), + (UniCase("narcississts"), "narcissist"), + (UniCase("interfeer"), "interfere"), + (UniCase("colourized"), "colorized"), + (UniCase("materialising"), "materializing"), + (UniCase("scoprion"), "scorpion"), + (UniCase("archetecture"), "architecture"), + (UniCase("paychiatrists"), "psychiatrists"), + (UniCase("carciature"), "caricature"), + (UniCase("dispensaires"), "dispensaries"), + (UniCase("denominationals"), "denominations"), + (UniCase("successsion"), "succession"), + (UniCase("uninstaling"), "uninstalling"), + (UniCase("stationd"), "stationed"), + (UniCase("herculeus"), "hercules"), + (UniCase("misinterprating"), "misinterpreting"), + (UniCase("profilic"), "prolific"), + (UniCase("interwebbs"), "interwebs"), + (UniCase("outnunbered"), "outnumbered"), + (UniCase("celebartion"), "celebrations"), + (UniCase("complusion"), "compulsion"), + (UniCase("immortalise"), "immortalize"), + (UniCase("schizophrania"), "schizophrenia"), + (UniCase("selfishess"), "selfishness"), + (UniCase("odours"), "odors"), + (UniCase("expirementation"), "experimentation"), + (UniCase("insultas"), "insults"), + (UniCase("exarcebated"), "exacerbated"), + (UniCase("grilfriend"), "girlfriend"), + (UniCase("capatilization"), "capitalization"), + (UniCase("rationalisations"), "rationalizations"), + (UniCase("gignatic"), "gigantic"), + (UniCase("dissobediant"), "disobedient"), + (UniCase("gaoled"), "jailed"), + (UniCase("shakepseare"), "shakespeare"), + (UniCase("infeccious"), "infectious"), + (UniCase("entertwined"), "entertained"), + (UniCase("emphatising"), "emphasizing"), + (UniCase("splatooon"), "splatoon"), + (UniCase("disgarees"), "disagrees"), + (UniCase("unresponse"), "unresponsive"), + (UniCase("investigstion"), "investigations"), + (UniCase("unusabe"), "unusable"), + (UniCase("manufactuerer"), "manufacturer"), + (UniCase("scnadinavia"), "scandinavia"), + (UniCase("chornicles"), "chronicles"), + (UniCase("simpelst"), "simplest"), + (UniCase("incomprihensible"), "incomprehensible"), + (UniCase("serioulsy"), "seriously"), + (UniCase("disgustingy"), "disgustingly"), + (UniCase("thermodynanics"), "thermodynamics"), + (UniCase("contrubute"), "contribute"), + (UniCase("iranain"), "iranian"), + (UniCase("sensationella"), "sensational"), + (UniCase("battelfront"), "battlefront"), + (UniCase("adventuers"), "adventures"), + (UniCase("spreadsheeet"), "spreadsheets"), + (UniCase("caffinee"), "caffeine"), + (UniCase("santiation"), "sanitation"), + (UniCase("demograhic"), "demographic"), + (UniCase("unexpectadely"), "unexpectedly"), + (UniCase("pedophilie"), "pedophile"), + (UniCase("metophorical"), "metaphorical"), + (UniCase("unsustainible"), "unsustainable"), + (UniCase("cutsceen"), "cutscene"), + (UniCase("voluntears"), "volunteers"), + (UniCase("referneces"), "references"), + (UniCase("duting"), "during"), + (UniCase("curroption"), "corruption"), + (UniCase("ampilfy"), "amplify"), + (UniCase("predicatble"), "predictable"), + (UniCase("correspend"), "correspond"), + (UniCase("modelled"), "modeled"), + (UniCase("premeire"), "premiere"), + (UniCase("illustratin"), "illustrations"), + (UniCase("surroundes"), "surrounds"), + (UniCase("ligthly"), "lightly"), + (UniCase("expliotation"), "exploitation"), + (UniCase("systematise"), "systematize"), + (UniCase("unempolyed"), "unemployed"), + (UniCase("signalised"), "signalized"), + (UniCase("pyrmaids"), "pyramids"), + (UniCase("lasagnia"), "lasagna"), + (UniCase("separatedly"), "separately"), + (UniCase("enthicity"), "ethnicity"), + (UniCase("inclanation"), "inclination"), + (UniCase("imcompatible"), "incompatible"), + (UniCase("begginig"), "begging"), + (UniCase("gynaecologist"), "gynecologist"), + (UniCase("prometheius"), "prometheus"), + (UniCase("uninamous"), "unanimous"), + (UniCase("argentia"), "argentina"), + (UniCase("deficientcy"), "deficiency"), + (UniCase("entartaining"), "entertaining"), + (UniCase("libertatianism"), "libertarianism"), + (UniCase("prerequisets"), "prerequisite"), + (UniCase("distrubution"), "distribution"), + (UniCase("governmeant"), "governmental"), + (UniCase("exectuioners"), "executioner"), + (UniCase("exagerates"), "exaggerates"), + (UniCase("horishima"), "hiroshima"), + (UniCase("successeurs"), "successes"), + (UniCase("reflektion"), "reflection"), + (UniCase("outsourcad"), "outsourced"), + (UniCase("accumulted"), "accumulated"), + (UniCase("stirker"), "striker"), + (UniCase("blugaria"), "bulgaria"), + (UniCase("particualr"), "particular"), + (UniCase("impersonationg"), "impersonating"), + (UniCase("installatron"), "installation"), + (UniCase("availble"), "available"), + (UniCase("interveing"), "intervening"), + (UniCase("applicatins"), "applicants"), + (UniCase("preiod"), "period"), + (UniCase("christines"), "christians"), + (UniCase("lightnig"), "lightning"), + (UniCase("dumbfouned"), "dumbfounded"), + (UniCase("musicaly"), "musically"), + (UniCase("systematises"), "systematizes"), + (UniCase("summurized"), "summarized"), + (UniCase("occassions"), "occasions"), + (UniCase("ceritfication"), "certifications"), + (UniCase("collectivo"), "collection"), + (UniCase("preceived"), "perceived"), + (UniCase("subjudgation"), "subjugation"), + (UniCase("pedophilla"), "pedophilia"), + (UniCase("refreshd"), "refreshed"), + (UniCase("continuious"), "continuous"), + (UniCase("regiems"), "regimes"), + (UniCase("nuerological"), "neurological"), + (UniCase("invaldiate"), "invalidates"), + (UniCase("pathfindir"), "pathfinder"), + (UniCase("shrapenl"), "shrapnel"), + (UniCase("imrpoved"), "improved"), + (UniCase("metabolitic"), "metabolic"), + (UniCase("empirial"), "empirical"), + (UniCase("suprising"), "surprising"), + (UniCase("accordeon"), "accordion"), + (UniCase("quailfiers"), "qualifiers"), + (UniCase("presrciption"), "prescriptions"), + (UniCase("residental"), "residential"), + (UniCase("statuets"), "statutes"), + (UniCase("courtrom"), "courtroom"), + (UniCase("larrry"), "larry"), + (UniCase("melboure"), "melbourne"), + (UniCase("underpowed"), "underpowered"), + (UniCase("longevitity"), "longevity"), + (UniCase("refuelled"), "refueled"), + (UniCase("politicing"), "politician"), + (UniCase("pregnance"), "pregnancies"), + (UniCase("concidered"), "considered"), + (UniCase("ofcrouse"), "ofcourse"), + (UniCase("shenanigangs"), "shenanigans"), + (UniCase("rationalise"), "rationalize"), + (UniCase("fundamentalistiske"), "fundamentalists"), + (UniCase("concernt"), "concert"), + (UniCase("decsending"), "descending"), + (UniCase("rewirte"), "rewrite"), + (UniCase("popularisation"), "popularization"), + (UniCase("inventiones"), "inventions"), + (UniCase("constructiin"), "constructing"), + (UniCase("deficienies"), "deficiencies"), + (UniCase("distinctie"), "distinctive"), + (UniCase("adminstrator"), "administrator"), + (UniCase("conflics"), "conflicts"), + (UniCase("pensinula"), "peninsula"), + (UniCase("confernece"), "conferences"), + (UniCase("electromagntic"), "electromagnetic"), + (UniCase("reptils"), "reptiles"), + (UniCase("rhapsodises"), "rhapsodizes"), + (UniCase("lacklustre"), "lackluster"), + (UniCase("performas"), "performs"), + (UniCase("penisula"), "peninsula"), + (UniCase("americants"), "americas"), + (UniCase("integrarla"), "integral"), + (UniCase("patriotisk"), "patriots"), + (UniCase("comprehention"), "comprehension"), + (UniCase("christiantiy"), "christianity"), + (UniCase("singify"), "signify"), + (UniCase("oppresssing"), "oppressing"), + (UniCase("modellers"), "modelers"), + (UniCase("adminstration"), "administration"), + (UniCase("guantamamo"), "guantanamo"), + (UniCase("organizatons"), "organizations"), + (UniCase("incomfortably"), "uncomfortably"), + (UniCase("verifyable"), "verifiable"), + (UniCase("romanna"), "romanian"), + (UniCase("illuminadi"), "illuminati"), + (UniCase("enlightenend"), "enlightened"), + (UniCase("legitimite"), "legitimate"), + (UniCase("christainity"), "christianity"), + (UniCase("supscription"), "subscription"), + (UniCase("shareholdes"), "shareholders"), + (UniCase("neccesary"), "necessary"), + (UniCase("professionnal"), "professional"), + (UniCase("ingorant"), "ignorant"), + (UniCase("coordonates"), "coordinates"), + (UniCase("assassiante"), "assassinate"), + (UniCase("percantile"), "percentile"), + (UniCase("exclussive"), "exclusives"), + (UniCase("amibguity"), "ambiguity"), + (UniCase("representive"), "representative"), + (UniCase("transmisison"), "transmission"), + (UniCase("knigths"), "knights"), + (UniCase("pretinent"), "pertinent"), + (UniCase("unfailry"), "unfairly"), + (UniCase("ensconsed"), "ensconced"), + (UniCase("immobiliser"), "immobilizer"), + (UniCase("specifiyng"), "specifying"), + (UniCase("sluaghtered"), "slaughtered"), + (UniCase("participacion"), "participation"), + (UniCase("republician"), "republican"), + (UniCase("febraury"), "february"), + (UniCase("psychologits"), "psychologists"), + (UniCase("calback"), "callback"), + (UniCase("harrassment"), "harassment"), + (UniCase("predecated"), "predicated"), + (UniCase("significanlty"), "significantly"), + (UniCase("inferioare"), "inferior"), + (UniCase("counsle"), "counsel"), + (UniCase("subsidiezed"), "subsidized"), + (UniCase("imperislist"), "imperialist"), + (UniCase("compramises"), "compromises"), + (UniCase("recuriter"), "recruiter"), + (UniCase("idealise"), "idealize"), + (UniCase("incentiveise"), "incentives"), + (UniCase("peninsulla"), "peninsula"), + (UniCase("umbelievable"), "unbelievable"), + (UniCase("inconcistent"), "inconsistent"), + (UniCase("everets"), "everest"), + (UniCase("tringale"), "triangle"), + (UniCase("finacee"), "fiancee"), + (UniCase("cumbersone"), "cumbersome"), + (UniCase("recontructed"), "reconstructed"), + (UniCase("hystericly"), "hysterical"), + (UniCase("arugment"), "argument"), + (UniCase("metabolises"), "metabolizes"), + (UniCase("sympathsizer"), "sympathizers"), + (UniCase("coordinare"), "coordinate"), + (UniCase("reclutant"), "reluctant"), + (UniCase("concieted"), "conceited"), + (UniCase("cumulitive"), "cumulative"), + (UniCase("negativitiy"), "negativity"), + (UniCase("furuther"), "further"), + (UniCase("emprisoned"), "imprisoned"), + (UniCase("distribusion"), "distributions"), + (UniCase("repaird"), "repaired"), + (UniCase("stornegst"), "strongest"), + (UniCase("particularises"), "particularizes"), + (UniCase("lightwieght"), "lightweight"), + (UniCase("unequalled"), "unequaled"), + (UniCase("optimisitic"), "optimistic"), + (UniCase("infectuous"), "infectious"), + (UniCase("polygammy"), "polygamy"), + (UniCase("coincedentally"), "coincidentally"), + (UniCase("progressionists"), "progressions"), + (UniCase("beween"), "between"), + (UniCase("sasuages"), "sausages"), + (UniCase("carnagie-mellon"), "carnegie-mellon"), + (UniCase("stabilise"), "stabilize"), + (UniCase("friendhsip"), "friendship"), + (UniCase("manifestacion"), "manifestation"), + (UniCase("particiapte"), "participate"), + (UniCase("cockatils"), "cocktails"), + (UniCase("disgracful"), "disgraceful"), + (UniCase("gravitatiei"), "gravitate"), + (UniCase("adolencence"), "adolescence"), + (UniCase("sanitising"), "sanitizing"), + (UniCase("strawbery"), "strawberry"), + (UniCase("serialises"), "serializes"), + (UniCase("provisonal"), "provisional"), + (UniCase("oblitarated"), "obliterated"), + (UniCase("turretts"), "turrets"), + (UniCase("considerarle"), "considerable"), + (UniCase("thermomenter"), "thermometer"), + (UniCase("instering"), "inserting"), + (UniCase("suprize"), "surprise"), + (UniCase("apperciation"), "appreciation"), + (UniCase("definatrly"), "definately"), + (UniCase("phramacy"), "pharmacy"), + (UniCase("unplaybale"), "unplayable"), + (UniCase("collumn"), "column"), + (UniCase("kncokback"), "knockback"), + (UniCase("avialable"), "available"), + (UniCase("internetbs"), "internets"), + (UniCase("enligthened"), "enlightened"), + (UniCase("undercling"), "underlying"), + (UniCase("bourgeios"), "bourgeois"), + (UniCase("reaveled"), "revealed"), + (UniCase("cigaretts"), "cigarettes"), + (UniCase("transmisson"), "transmission"), + (UniCase("staggerring"), "staggering"), + (UniCase("homophoboes"), "homophobe"), + (UniCase("somehting"), "something"), + (UniCase("capitilize"), "capitalize"), + (UniCase("excluse"), "excludes"), + (UniCase("barceloneta"), "barcelona"), + (UniCase("hamburges"), "hamburgers"), + (UniCase("undernieth"), "underneath"), + (UniCase("continuare"), "continue"), + (UniCase("coordonation"), "coordination"), + (UniCase("melbounre"), "melbourne"), + (UniCase("distil"), "distill"), + (UniCase("cpoy"), "coy"), + (UniCase("ejacluation"), "ejaculation"), + (UniCase("espreso"), "espresso"), + (UniCase("undeniabely"), "undeniably"), + (UniCase("dardenelles"), "dardanelles"), + (UniCase("piglrim"), "pilgrim"), + (UniCase("uplifitng"), "uplifting"), + (UniCase("exaggareted"), "exaggerate"), + (UniCase("contaminatie"), "contaminated"), + (UniCase("begnals"), "bengals"), + (UniCase("therefo"), "thereof"), + (UniCase("assassian"), "assassin"), + (UniCase("characteristcs"), "characteristics"), + (UniCase("inaccurrate"), "inaccurate"), + (UniCase("detials"), "details"), + (UniCase("cananbis"), "cannabis"), + (UniCase("continiuty"), "continuity"), + (UniCase("renaissence"), "renaissance"), + (UniCase("anecdotelly"), "anecdotally"), + (UniCase("aluminium"), "aluminum"), + (UniCase("categoriei"), "categorize"), + (UniCase("washingtion"), "washington"), + (UniCase("motivaiton"), "motivations"), + (UniCase("rebllions"), "rebellions"), + (UniCase("civilizatoin"), "civilizations"), + (UniCase("popularise"), "popularize"), + (UniCase("convertirme"), "converter"), + (UniCase("bonnano"), "bonanno"), + (UniCase("missionaris"), "missionaries"), + (UniCase("refelctions"), "reflections"), + (UniCase("conspericies"), "conspiracies"), + (UniCase("intesnity"), "intensity"), + (UniCase("comeptitions"), "competitions"), + (UniCase("unfortunantly"), "unfortunately"), + (UniCase("handledy"), "handedly"), + (UniCase("specialt"), "specialist"), + (UniCase("intial"), "initial"), + (UniCase("monstrocity"), "monstrosity"), + (UniCase("distribitor"), "distributor"), + (UniCase("medevial"), "medieval"), + (UniCase("gaolbird"), "jailbird"), + (UniCase("contribuito"), "contribution"), + (UniCase("flitered"), "filtered"), + (UniCase("butthoel"), "butthole"), + (UniCase("electic"), "electric"), + (UniCase("mechancis"), "mechanics"), + (UniCase("pencilling"), "penciling"), + (UniCase("disptach"), "dispatch"), + (UniCase("pithcers"), "pitchers"), + (UniCase("implausbile"), "implausible"), + (UniCase("wishpered"), "whispered"), + (UniCase("psychidelic"), "psychedelic"), + (UniCase("retirever"), "retriever"), + (UniCase("euphoriac"), "euphoric"), + (UniCase("noticeablely"), "noticeably"), + (UniCase("organites"), "organise"), + (UniCase("fourteeen"), "fourteen"), + (UniCase("accomplises"), "accomplishes"), + (UniCase("synonymes"), "synonyms"), + (UniCase("narcisissim"), "narcissism"), + (UniCase("parterns"), "partners"), + (UniCase("fullscren"), "fullscreen"), + (UniCase("importes"), "imports"), + (UniCase("retailate"), "retaliate"), + (UniCase("coefficienct"), "coefficient"), + (UniCase("americanus"), "americans"), + (UniCase("empries"), "empires"), + (UniCase("devastaded"), "devastated"), + (UniCase("additionaly"), "additionally"), + (UniCase("activistas"), "activists"), + (UniCase("diveristy"), "diversity"), + (UniCase("practise"), "practice"), + (UniCase("diversifiy"), "diversify"), + (UniCase("guanatanmo"), "guantanamo"), + (UniCase("enhanse"), "enhances"), + (UniCase("directsong"), "directions"), + (UniCase("dispersa"), "dispensary"), + (UniCase("dispoves"), "dispose"), + (UniCase("packade"), "packaged"), + (UniCase("manifestors"), "manifests"), + (UniCase("exorbatant"), "exorbitant"), + (UniCase("registy"), "registry"), + (UniCase("sharipe"), "sharpie"), + (UniCase("agricultral"), "agricultural"), + (UniCase("boradcasting"), "broadcasting"), + (UniCase("whitsle"), "whistle"), + (UniCase("irresistable"), "irresistible"), + (UniCase("invesitgators"), "investigators"), + (UniCase("engineed"), "engineered"), + (UniCase("puhsups"), "pushups"), + (UniCase("organizacional"), "organizational"), + (UniCase("privaleged"), "privileged"), + (UniCase("perspectief"), "perspective"), + (UniCase("moisturisers"), "moisturizers"), + (UniCase("immoblie"), "immobile"), + (UniCase("guilio"), "giulio"), + (UniCase("notoroius"), "notorious"), + (UniCase("withhelding"), "withholding"), + (UniCase("propietary"), "proprietary"), + (UniCase("sepreate"), "seperate"), + (UniCase("snodwen"), "snowden"), + (UniCase("mamal"), "mammal"), + (UniCase("frankenstain"), "frankenstein"), + (UniCase("electormagnetic"), "electromagnetic"), + (UniCase("objectivication"), "objectification"), + (UniCase("wille"), "will"), + (UniCase("developmentwise"), "developments"), + (UniCase("siezed"), "seized"), + (UniCase("possibley"), "possibly"), + (UniCase("weigthed"), "weighted"), + (UniCase("trustworthly"), "trustworthy"), + (UniCase("indicitive"), "indicative"), + (UniCase("caloires"), "calories"), + (UniCase("sandlas"), "sandals"), + (UniCase("conlcusions"), "conclusions"), + (UniCase("unfortuate"), "unfortunate"), + (UniCase("commans"), "commands"), + (UniCase("overwhem"), "overwhelm"), + (UniCase("formost"), "foremost"), + (UniCase("bureaucrash"), "bureaucrats"), + (UniCase("interpersonnal"), "interpersonal"), + (UniCase("destryoed"), "destroyed"), + (UniCase("consistens"), "consists"), + (UniCase("belifes"), "beliefs"), + (UniCase("proficiancy"), "proficiency"), + (UniCase("expresions"), "expression"), + (UniCase("outrageosly"), "outrageously"), + (UniCase("chorline"), "chlorine"), + (UniCase("feministisk"), "feminists"), + (UniCase("aestethics"), "aesthetics"), + (UniCase("homoeopathy"), "homeopathy"), + (UniCase("roboticus"), "robotics"), + (UniCase("brillaintly"), "brilliantly"), + (UniCase("tkae"), "take"), + (UniCase("perseverence"), "perseverance"), + (UniCase("internationaal"), "international"), + (UniCase("enrols"), "enrolls"), + (UniCase("penssylvania"), "pennsylvania"), + (UniCase("unconventianal"), "unconventional"), + (UniCase("trotilla"), "tortilla"), + (UniCase("palythroughs"), "playthroughs"), + (UniCase("particel"), "particle"), + (UniCase("servantes"), "servants"), + (UniCase("masturpiece"), "masterpiece"), + (UniCase("containts"), "contains"), + (UniCase("luicfer"), "lucifer"), + (UniCase("oralces"), "oracles"), + (UniCase("complier"), "compiler"), + (UniCase("antibiodic"), "antibiotic"), + (UniCase("enterpreneur"), "entrepreneurs"), + (UniCase("staduims"), "stadiums"), + (UniCase("playwrite"), "playwright"), + (UniCase("girlfrinds"), "girlfriends"), + (UniCase("publicaly"), "publicly"), + (UniCase("midfeilder"), "midfielder"), + (UniCase("palestinains"), "palestinians"), + (UniCase("pryamid"), "pyramid"), + (UniCase("surroundins"), "surrounds"), + (UniCase("receeding"), "receding"), + (UniCase("reorganises"), "reorganizes"), + (UniCase("audioboost"), "audiobooks"), + (UniCase("penatly"), "penalty"), + (UniCase("enthusiat"), "enthusiast"), + (UniCase("compramising"), "compromising"), + (UniCase("unsubstantiative"), "unsubstantiated"), + (UniCase("acedemically"), "academically"), + (UniCase("destryoing"), "destroying"), + (UniCase("extruciating"), "excruciating"), + (UniCase("unrnaked"), "unranked"), + (UniCase("contracs"), "contracts"), + (UniCase("preferabely"), "preferable"), + (UniCase("physqiue"), "physique"), + (UniCase("algortihm"), "algorithm"), + (UniCase("sponteneously"), "spontaneously"), + (UniCase("striaghten"), "straighten"), + (UniCase("specifikation"), "specification"), + (UniCase("alcehmist"), "alchemist"), + (UniCase("refelct"), "reflect"), + (UniCase("recocnised"), "recognised"), + (UniCase("similary"), "similarly"), + (UniCase("alternador"), "alternator"), + (UniCase("agrument"), "argument"), + (UniCase("appoitnment"), "appointments"), + (UniCase("phemonenon"), "phenomenon"), + (UniCase("curcumcision"), "circumcision"), + (UniCase("exerciese"), "exercises"), + (UniCase("complitation"), "complication"), + (UniCase("disresepctful"), "disrespectful"), + (UniCase("masturdate"), "masturbate"), + (UniCase("fascistes"), "fascists"), + (UniCase("overreactiong"), "overreacting"), + (UniCase("indispensible"), "indispensable"), + (UniCase("commitus"), "commits"), + (UniCase("braceletts"), "bracelets"), + (UniCase("explodeds"), "explodes"), + (UniCase("occour"), "occur"), + (UniCase("descendats"), "descendants"), + (UniCase("playstlye"), "playstyle"), + (UniCase("unbreakabke"), "unbreakable"), + (UniCase("definety"), "definetly"), + (UniCase("preliferation"), "proliferation"), + (UniCase("chemisty"), "chemistry"), + (UniCase("mindcrak"), "mindcrack"), + (UniCase("inumerable"), "enumerable"), + (UniCase("annualised"), "annualized"), + (UniCase("ministy"), "ministry"), + (UniCase("retardathon"), "retardation"), + (UniCase("detatched"), "detached"), + (UniCase("thikns"), "thinks"), + (UniCase("iwll"), "will"), + (UniCase("minimilast"), "minimalist"), + (UniCase("prostitites"), "prostitutes"), + (UniCase("futurustic"), "futuristic"), + (UniCase("relavence"), "relevance"), + (UniCase("osbidian"), "obsidian"), + (UniCase("solemnising"), "solemnizing"), + (UniCase("gunlsinger"), "gunslinger"), + (UniCase("alternitive"), "alternative"), + (UniCase("centeres"), "centers"), + (UniCase("dinasour"), "dinosaur"), + (UniCase("offensivley"), "offensively"), + (UniCase("fanslaughter"), "manslaughter"), + (UniCase("undeniabley"), "undeniably"), + (UniCase("recoginze"), "recognize"), + (UniCase("definitve"), "definite"), + (UniCase("disappearnce"), "disappearance"), + (UniCase("preferrably"), "preferably"), + (UniCase("illegallity"), "illegally"), + (UniCase("hygienne"), "hygiene"), + (UniCase("complimate"), "complicate"), + (UniCase("superioara"), "superior"), + (UniCase("aicraft"), "aircraft"), + (UniCase("derviatives"), "derivatives"), + (UniCase("portgual"), "portugal"), + (UniCase("dealershp"), "dealerships"), + (UniCase("arbitralily"), "arbitrarily"), + (UniCase("hypothess"), "hypotheses"), + (UniCase("enigneer"), "engineer"), + (UniCase("postdam"), "potsdam"), + (UniCase("smae"), "same"), + (UniCase("comfortbly"), "comfortably"), + (UniCase("lannesters"), "lannisters"), + (UniCase("critices"), "critics"), + (UniCase("transmissons"), "transmissions"), + (UniCase("deficieny"), "deficiency"), + (UniCase("barbarisch"), "barbaric"), + (UniCase("descentants"), "descendants"), + (UniCase("marginalises"), "marginalizes"), + (UniCase("ingenuitiy"), "ingenuity"), + (UniCase("hallunications"), "hallucinations"), + (UniCase("disadvandage"), "disadvantaged"), + (UniCase("churchers"), "churches"), + (UniCase("reconstrucion"), "reconstruction"), + (UniCase("distiction"), "distinction"), + (UniCase("permenently"), "permanently"), + (UniCase("poisonus"), "poisons"), + (UniCase("intiutively"), "intuitively"), + (UniCase("respiratoy"), "respiratory"), + (UniCase("connecitcut"), "connecticut"), + (UniCase("unionise"), "unionize"), + (UniCase("speciaal"), "special"), + (UniCase("excercise"), "exercise"), + (UniCase("traditionel"), "traditional"), + (UniCase("ancestory"), "ancestry"), + (UniCase("cambrige"), "cambridge"), + (UniCase("implementaion"), "implementation"), + (UniCase("unhelathy"), "unhealthy"), + (UniCase("endandering"), "endangering"), + (UniCase("consciouly"), "consciously"), + (UniCase("includng"), "including"), + (UniCase("innerstellar"), "interstellar"), + (UniCase("outsourceing"), "outsourcing"), + (UniCase("contemperary"), "contemporary"), + (UniCase("stealthify"), "stealthy"), + (UniCase("hemishperes"), "hemisphere"), + (UniCase("accreditted"), "accredited"), + (UniCase("documentry"), "documentary"), + (UniCase("rehabilitaton"), "rehabilitation"), + (UniCase("februray"), "february"), + (UniCase("organices"), "organise"), + (UniCase("cashire"), "cashier"), + (UniCase("gratuituous"), "gratuitous"), + (UniCase("complusions"), "compulsion"), + (UniCase("videogaem"), "videogame"), + (UniCase("prequles"), "prequels"), + (UniCase("perputually"), "perpetually"), + (UniCase("eloquentely"), "eloquently"), + (UniCase("speically"), "specially"), + (UniCase("disallusioned"), "disillusioned"), + (UniCase("reluctanly"), "reluctantly"), + (UniCase("airpost"), "airports"), + (UniCase("strengh"), "strength"), + (UniCase("beleiver"), "believer"), + (UniCase("interpretares"), "interpreter"), + (UniCase("sacntuary"), "sanctuary"), + (UniCase("blaim"), "blame"), + (UniCase("inconstitutional"), "unconstitutional"), + (UniCase("demoninator"), "denominator"), + (UniCase("summore"), "summoner"), + (UniCase("ukrainin"), "ukrainian"), + (UniCase("adaptacion"), "adaptation"), + (UniCase("artistc"), "artistic"), + (UniCase("zelaous"), "zealous"), + (UniCase("triange"), "triangle"), + (UniCase("shenadigans"), "shenanigans"), + (UniCase("manipulitive"), "manipulative"), + (UniCase("satrudays"), "saturdays"), + (UniCase("definateky"), "definately"), + (UniCase("bleutooth"), "bluetooth"), + (UniCase("linguisics"), "linguistics"), + (UniCase("compalined"), "complained"), + (UniCase("ecstasty"), "ecstasy"), + (UniCase("parenthisis"), "parenthesis"), + (UniCase("suppresssion"), "suppression"), + (UniCase("exemple"), "example"), + (UniCase("involvment"), "involvement"), + (UniCase("invesitgative"), "investigative"), + (UniCase("besteality"), "bestiality"), + (UniCase("delaership"), "dealership"), + (UniCase("godesses"), "goddesses"), + (UniCase("flatterende"), "flattered"), + (UniCase("accademy"), "academy"), + (UniCase("patriotas"), "patriots"), + (UniCase("personsa"), "personas"), + (UniCase("hailfax"), "halifax"), + (UniCase("dismante"), "dismantle"), + (UniCase("preisdents"), "presidents"), + (UniCase("authenticty"), "authenticity"), + (UniCase("lengthes"), "lengths"), + (UniCase("inqusitior"), "inquisitor"), + (UniCase("plauthroughs"), "playthroughs"), + (UniCase("democratas"), "democrats"), + (UniCase("compensatie"), "compensate"), + (UniCase("argumentos"), "arguments"), + (UniCase("contirbuted"), "contributed"), + (UniCase("diganosis"), "diagnosis"), + (UniCase("classificaiton"), "classification"), + (UniCase("dispensiries"), "dispensaries"), + (UniCase("herucles"), "hercules"), + (UniCase("narcissit"), "narcissist"), + (UniCase("starins"), "strains"), + (UniCase("curcial"), "crucial"), + (UniCase("becuasse"), "becuase"), + (UniCase("recrutier"), "recruiter"), + (UniCase("phsyiology"), "physiology"), + (UniCase("broadwalk"), "boardwalk"), + (UniCase("sideral"), "sidereal"), + (UniCase("rewarching"), "rewatching"), + (UniCase("imminet"), "imminent"), + (UniCase("battelships"), "battleship"), + (UniCase("sponatenously"), "spontaneously"), + (UniCase("legnedary"), "legendary"), + (UniCase("uploades"), "uploads"), + (UniCase("constituye"), "constitute"), + (UniCase("hannbial"), "hannibal"), + (UniCase("prevalente"), "prevalence"), + (UniCase("dotrmund"), "dortmund"), + (UniCase("defensivly"), "defensively"), + (UniCase("pretencious"), "pretentious"), + (UniCase("thnakyou"), "thankyou"), + (UniCase("terminatior"), "terminator"), + (UniCase("counterfited"), "counterfeit"), + (UniCase("appart"), "apart"), + (UniCase("exhaustn"), "exhaustion"), + (UniCase("spects"), "aspects"), + (UniCase("exceedigly"), "exceedingly"), + (UniCase("defetead"), "defeated"), + (UniCase("microtramsactions"), "microtransactions"), + (UniCase("comminucation"), "communications"), + (UniCase("internations"), "interactions"), + (UniCase("collaris"), "collars"), + (UniCase("minerial"), "mineral"), + (UniCase("vaylkrie"), "valkyrie"), + (UniCase("refernces"), "references"), + (UniCase("marrage"), "marriage"), + (UniCase("identifierad"), "identified"), + (UniCase("obsucrity"), "obscurity"), + (UniCase("patientens"), "patients"), + (UniCase("knowledgebly"), "knowledgable"), + (UniCase("adequit"), "adequate"), + (UniCase("moderatorin"), "moderation"), + (UniCase("zealoths"), "zealots"), + (UniCase("recpetors"), "receptors"), + (UniCase("xeonblade"), "xenoblade"), + (UniCase("intruduces"), "introduces"), + (UniCase("islamistisk"), "islamists"), + (UniCase("calrity"), "clarity"), + (UniCase("encolsure"), "enclosure"), + (UniCase("imperialsm"), "imperialism"), + (UniCase("vaporise"), "vaporize"), + (UniCase("immobilising"), "immobilizing"), + (UniCase("eitquette"), "etiquette"), + (UniCase("clannand"), "clannad"), + (UniCase("shittown"), "shitton"), + (UniCase("outplayd"), "outplayed"), + (UniCase("corparation"), "corporation"), + (UniCase("hearthsone"), "hearthstone"), + (UniCase("falseley"), "falsely"), + (UniCase("assistendo"), "assisted"), + (UniCase("committe"), "committee"), + (UniCase("somehtings"), "somethings"), + (UniCase("neighbourliness"), "neighborliness"), + (UniCase("sanitazion"), "sanitation"), + (UniCase("pensioen"), "pension"), + (UniCase("acculumated"), "accumulated"), + (UniCase("counsellling"), "counselling"), + (UniCase("prescirption"), "prescriptions"), + (UniCase("misinterpretions"), "misinterpreting"), + (UniCase("throast"), "throats"), + (UniCase("centigramme"), "centigram"), + (UniCase("communiaction"), "communications"), + (UniCase("elicided"), "elicited"), + (UniCase("hemingwavy"), "hemingway"), + (UniCase("hieroglphs"), "hieroglyphs"), + (UniCase("counries"), "countries"), + (UniCase("segementation"), "segmentation"), + (UniCase("avnegers"), "avengers"), + (UniCase("circulaton"), "circulation"), + (UniCase("uncomfrotable"), "uncomfortable"), + (UniCase("mathemathics"), "mathematics"), + (UniCase("saskatchawan"), "saskatchewan"), + (UniCase("discrepany"), "discrepancy"), + (UniCase("bulgara"), "bulgaria"), + (UniCase("transsexuella"), "transsexual"), + (UniCase("hieght"), "height"), + (UniCase("occassionally"), "occasionally"), + (UniCase("distirbution"), "distribution"), + (UniCase("switzlerand"), "switzerland"), + (UniCase("intenst"), "intents"), + (UniCase("peodphilia"), "pedophilia"), + (UniCase("waterlemon"), "watermelon"), + (UniCase("unexpectetly"), "unexpectedly"), + (UniCase("concelaed"), "concealed"), + (UniCase("prestigios"), "prestigious"), + (UniCase("alegbra"), "algebra"), + (UniCase("boradband"), "broadband"), + (UniCase("columnas"), "columns"), + (UniCase("labled"), "labelled"), + (UniCase("valkiyre"), "valkyrie"), + (UniCase("opposties"), "opposites"), + (UniCase("understandble"), "understandable"), + (UniCase("conprehension"), "comprehension"), + (UniCase("brigthen"), "brighten"), + (UniCase("invalidas"), "invalidates"), + (UniCase("impulsivley"), "impulsive"), + (UniCase("cambrigde"), "cambridge"), + (UniCase("conjuncion"), "conjunction"), + (UniCase("prefarable"), "preferable"), + (UniCase("minsiters"), "ministers"), + (UniCase("aeriel"), "aerial"), + (UniCase("spiritualty"), "spirituality"), + (UniCase("preventors"), "prevents"), + (UniCase("playthrouh"), "playthrough"), + (UniCase("trespessing"), "trespassing"), + (UniCase("illinoians"), "illinois"), + (UniCase("demographs"), "demographics"), + (UniCase("littlefiger"), "littlefinger"), + (UniCase("triggereing"), "triggering"), + (UniCase("pratice"), "practice"), + (UniCase("questionsign"), "questioning"), + (UniCase("benificial"), "beneficial"), + (UniCase("artisitc"), "artistic"), + (UniCase("indistructible"), "indestructible"), + (UniCase("distrubed"), "disturbed"), + (UniCase("tottehnam"), "tottenham"), + (UniCase("navigatore"), "navigate"), + (UniCase("toothbruch"), "toothbrush"), + (UniCase("doign"), "doing"), + (UniCase("understadn"), "understands"), + (UniCase("illionis"), "illinois"), + (UniCase("leuitenant"), "lieutenant"), + (UniCase("catherdal"), "cathedral"), + (UniCase("dictionaires"), "dictionaries"), + (UniCase("appropiration"), "appropriation"), + (UniCase("collectos"), "collectors"), + (UniCase("philedelphia"), "philadelphia"), + (UniCase("curisoity"), "curiosity"), + (UniCase("highlightning"), "highlighting"), + (UniCase("satisy"), "satisfy"), + (UniCase("discontinuted"), "discontinued"), + (UniCase("pursuades"), "persuades"), + (UniCase("australlian"), "australian"), + (UniCase("capsuls"), "capsules"), + (UniCase("planeswaller"), "planeswalker"), + (UniCase("multipled"), "multiplied"), + (UniCase("pebblers"), "pebbles"), + (UniCase("defendents"), "defendants"), + (UniCase("congratualted"), "congratulate"), + (UniCase("churchs"), "churches"), + (UniCase("transmisisons"), "transmissions"), + (UniCase("distinctin"), "distinctions"), + (UniCase("unasnwered"), "unanswered"), + (UniCase("refersher"), "refresher"), + (UniCase("repentence"), "repentance"), + (UniCase("consoldiate"), "consolidate"), + (UniCase("penitum"), "pentium"), + (UniCase("cheeseburgie"), "cheeseburger"), + (UniCase("theromdynamics"), "thermodynamics"), + (UniCase("exclusivety"), "exclusivity"), + (UniCase("competatively"), "competitively"), + (UniCase("vocalisation"), "vocalization"), + (UniCase("infinet"), "infinite"), + (UniCase("freindship"), "friendship"), + (UniCase("gouvener"), "governor"), + (UniCase("fractalis"), "fractals"), + (UniCase("undermineing"), "undermining"), + (UniCase("nusaince"), "nuisance"), + (UniCase("romanticise"), "romanticize"), + (UniCase("homosexul"), "homosexuals"), + (UniCase("discreto"), "discretion"), + (UniCase("contanimation"), "contamination"), + (UniCase("romanitcally"), "romantically"), + (UniCase("sedentarity"), "sedentary"), + (UniCase("cemetaries"), "cemeteries"), + (UniCase("canditates"), "candidates"), + (UniCase("indimidation"), "intimidation"), + (UniCase("infomation"), "information"), + (UniCase("misundarstanding"), "misunderstandings"), + (UniCase("consecuence"), "consequence"), + (UniCase("inevidably"), "inevitably"), + (UniCase("democratisch"), "democratic"), + (UniCase("charactarized"), "characterized"), + (UniCase("orchestraded"), "orchestrated"), + (UniCase("convergens"), "converse"), + (UniCase("cafetera"), "cafeteria"), + (UniCase("interiour"), "interior"), + (UniCase("professores"), "professors"), + (UniCase("agricuture"), "agriculture"), + (UniCase("bordelrands"), "borderlands"), + (UniCase("neurton"), "neutron"), + (UniCase("constructur"), "constructor"), + (UniCase("cutscences"), "cutscene"), + (UniCase("conveluted"), "convoluted"), + (UniCase("renedered"), "rende"), + (UniCase("announcemnet"), "announcements"), + (UniCase("sizebale"), "sizeable"), + (UniCase("soverignity"), "sovereignty"), + (UniCase("thermomter"), "thermometer"), + (UniCase("cardiovasuclar"), "cardiovascular"), + (UniCase("paramter"), "parameter"), + (UniCase("chidlbirth"), "childbirth"), + (UniCase("beliebable"), "believable"), + (UniCase("faceplam"), "facepalm"), + (UniCase("privilaged"), "privileged"), + (UniCase("vietnamnese"), "vietnamese"), + (UniCase("desparate"), "desperate"), + (UniCase("substitutos"), "substitutes"), + (UniCase("dependencias"), "dependencies"), + (UniCase("aretmis"), "artemis"), + (UniCase("psychedlic"), "psychedelic"), + (UniCase("federacion"), "federation"), + (UniCase("mythraic"), "mithraic"), + (UniCase("convervatism"), "conservatism"), + (UniCase("sastifies"), "satisfies"), + (UniCase("compede"), "competed"), + (UniCase("alphabeat"), "alphabet"), + (UniCase("sumbarines"), "submarines"), + (UniCase("themselfes"), "themselves"), + (UniCase("culutral"), "cultural"), + (UniCase("undiserable"), "undesirable"), + (UniCase("blueberrry"), "blueberry"), + (UniCase("prejuduced"), "prejudiced"), + (UniCase("syrcause"), "syracuse"), + (UniCase("templarius"), "templars"), + (UniCase("girefing"), "griefing"), + (UniCase("sacrifie"), "sacrifice"), + (UniCase("painkills"), "painkillers"), + (UniCase("penduluum"), "pendulum"), + (UniCase("dermitologist"), "dermatologist"), + (UniCase("infinitly"), "infinity"), + (UniCase("gentlemn"), "gentlemen"), + (UniCase("tredning"), "trending"), + (UniCase("aforementioend"), "aforementioned"), + (UniCase("thermodinamics"), "thermodynamics"), + (UniCase("metropolitin"), "metropolitan"), + (UniCase("jepoardy"), "jeopardy"), + (UniCase("cataylst"), "catalyst"), + (UniCase("medoicre"), "mediocre"), + (UniCase("continunes"), "continents"), + (UniCase("nostaliga"), "nostalgia"), + (UniCase("accommadate"), "accommodate"), + (UniCase("yaers"), "years"), + (UniCase("simaltaneous"), "simultaneous"), + (UniCase("assesement"), "assessment"), + (UniCase("misogynisitic"), "misogynistic"), + (UniCase("stauration"), "saturation"), + (UniCase("reinassance"), "renaissance"), + (UniCase("broady"), "broadly"), + (UniCase("santcuary"), "sanctuary"), + (UniCase("verbaitm"), "verbatim"), + (UniCase("singatures"), "signatures"), + (UniCase("constriants"), "constraints"), + (UniCase("exceptionnal"), "exceptional"), + (UniCase("positivley"), "positively"), + (UniCase("expressief"), "expressive"), + (UniCase("compase"), "compares"), + (UniCase("struggels"), "struggles"), + (UniCase("essentialy"), "essentially"), + (UniCase("ellingotn"), "ellington"), + (UniCase("reasercher"), "researcher"), + (UniCase("tupperwears"), "tupperware"), + (UniCase("springfeld"), "springfield"), + (UniCase("deprivition"), "deprivation"), + (UniCase("unoffical"), "unofficial"), + (UniCase("presuaded"), "persuaded"), + (UniCase("transgenger"), "transgender"), + (UniCase("donwload"), "download"), + (UniCase("responsebilities"), "responsibilities"), + (UniCase("exibition"), "exhibition"), + (UniCase("protecte"), "protective"), + (UniCase("towrad"), "toward"), + (UniCase("probabilaty"), "probability"), + (UniCase("excerising"), "exercising"), + (UniCase("chatolics"), "catholics"), + (UniCase("homosexuais"), "homosexuals"), + (UniCase("indoctrinatin"), "indoctrination"), + (UniCase("modivational"), "motivational"), + (UniCase("constitutie"), "constitutes"), + (UniCase("referenece"), "reference"), + (UniCase("localises"), "localizes"), + (UniCase("customise"), "customize"), + (UniCase("destroyr"), "destroyers"), + (UniCase("morriosn"), "morrison"), + (UniCase("cruciaal"), "crucial"), + (UniCase("exeggerating"), "exaggerating"), + (UniCase("woudlve"), "wouldve"), + (UniCase("economisit"), "economists"), + (UniCase("suprisingly"), "surprisingly"), + (UniCase("vegetatians"), "vegetarians"), + (UniCase("pretentios"), "pretentious"), + (UniCase("gaurding"), "guarding"), + (UniCase("confliting"), "conflating"), + (UniCase("pshycopaths"), "psychopaths"), + (UniCase("yorksher"), "yorkshire"), + (UniCase("presumebly"), "presumably"), + (UniCase("abudance"), "abundance"), + (UniCase("existet"), "existent"), + (UniCase("spesifically"), "specifically"), + (UniCase("creaeted"), "created"), + (UniCase("regularisation"), "regularization"), + (UniCase("hypethetical"), "hypothetical"), + (UniCase("disricts"), "districts"), + (UniCase("behaviours"), "behaviors"), + (UniCase("anulled"), "annulled"), + (UniCase("interstellaire"), "interstellar"), + (UniCase("politicien"), "politician"), + (UniCase("wrnagler"), "wrangler"), + (UniCase("pronunciacion"), "pronunciation"), + (UniCase("immortalised"), "immortalized"), + (UniCase("phyisque"), "physique"), + (UniCase("anectotally"), "anecdotally"), + (UniCase("interpretor"), "interpreter"), + (UniCase("substantialy"), "substantially"), + (UniCase("stalekrs"), "stalkers"), + (UniCase("despies"), "despise"), + (UniCase("organisationnels"), "organisations"), + (UniCase("appriecate"), "appreciates"), + (UniCase("celsuis"), "celsius"), + (UniCase("nightmeres"), "nightmares"), + (UniCase("mannarisms"), "mannerisms"), + (UniCase("bollcoks"), "bollocks"), + (UniCase("rela"), "real"), + (UniCase("reporduction"), "reproduction"), + (UniCase("midfiedlers"), "midfielders"), + (UniCase("controll"), "control"), + (UniCase("representitives"), "representatives"), + (UniCase("whisperered"), "whispered"), + (UniCase("changable"), "changeable"), + (UniCase("overnurfed"), "overturned"), + (UniCase("narcisst"), "narcissist"), + (UniCase("vigourous"), "vigorous"), + (UniCase("pathces"), "patches"), + (UniCase("functiong"), "functioning"), + (UniCase("plausibel"), "plausible"), + (UniCase("directionnal"), "directional"), + (UniCase("preventin"), "prevention"), + (UniCase("happilly"), "happily"), + (UniCase("ridiculouness"), "ridiculousness"), + (UniCase("partiot"), "patriot"), + (UniCase("dsytopian"), "dystopian"), + (UniCase("unfamilair"), "unfamiliar"), + (UniCase("disgrateful"), "disgraceful"), + (UniCase("cyclistes"), "cyclists"), + (UniCase("contenplate"), "contemplate"), + (UniCase("thougths"), "thoughts"), + (UniCase("compeditively"), "competitively"), + (UniCase("marvelling"), "marveling"), + (UniCase("psyhic"), "psychic"), + (UniCase("paltforms"), "platforms"), + (UniCase("controlles"), "controls"), + (UniCase("organisations"), "organizations"), + (UniCase("acedamia"), "academia"), + (UniCase("enlargments"), "enlargements"), + (UniCase("gauntlents"), "gauntlet"), + (UniCase("sensetionalism"), "sensationalism"), + (UniCase("doubleiift"), "doublelift"), + (UniCase("salying"), "slaying"), + (UniCase("reinitalization"), "reinitialization"), + (UniCase("unsetlling"), "unsettling"), + (UniCase("considereis"), "considers"), + (UniCase("disagremeent"), "disagreements"), + (UniCase("aboslutes"), "absolutes"), + (UniCase("adressing"), "addressing"), + (UniCase("bemusemnt"), "bemusement"), + (UniCase("coform"), "conform"), + (UniCase("tabelspoons"), "tablespoons"), + (UniCase("speciman"), "specimen"), + (UniCase("stringet"), "stringent"), + (UniCase("politicion"), "politician"), + (UniCase("monstros"), "monstrous"), + (UniCase("instructios"), "instructors"), + (UniCase("predjuiced"), "prejudiced"), + (UniCase("monolite"), "monolithic"), + (UniCase("adultrey"), "adultery"), + (UniCase("powersehll"), "powershell"), + (UniCase("indpendent"), "independent"), + (UniCase("hedgehorg"), "hedgehog"), + (UniCase("indefinately"), "indefinitely"), + (UniCase("pesticids"), "pesticides"), + (UniCase("shifitng"), "shifting"), + (UniCase("disturping"), "disrupting"), + (UniCase("dependenta"), "dependant"), + (UniCase("distortron"), "distortion"), + (UniCase("ambuigity"), "ambiguity"), + (UniCase("progressers"), "progresses"), + (UniCase("unchallengable"), "unchallengeable"), + (UniCase("constituient"), "constitute"), + (UniCase("descendends"), "descended"), + (UniCase("nagivate"), "navigate"), + (UniCase("swiflty"), "swiftly"), + (UniCase("griaffe"), "giraffe"), + (UniCase("immediatley"), "immediately"), + (UniCase("competation"), "computation"), + (UniCase("preposterious"), "preposterous"), + (UniCase("undesireable"), "undesirable"), + (UniCase("revelution"), "revelation"), + (UniCase("tequilia"), "tequila"), + (UniCase("politicisation"), "politicization"), + (UniCase("indivudual"), "individual"), + (UniCase("expentitures"), "expenditures"), + (UniCase("patriarcial"), "patriarchal"), + (UniCase("dependancey"), "dependency"), + (UniCase("aeriels"), "aerials"), + (UniCase("sophosticated"), "sophisticated"), + (UniCase("howver"), "however"), + (UniCase("proprotional"), "proportional"), + (UniCase("inevitible"), "inevitable"), + (UniCase("sufficiant"), "sufficient"), + (UniCase("attritubes"), "attributes"), + (UniCase("reinstaling"), "reinstalling"), + (UniCase("obvoius"), "obvious"), + (UniCase("forntline"), "frontline"), + (UniCase("crosshiar"), "crosshair"), + (UniCase("rightfuly"), "rightfully"), + (UniCase("thubmnails"), "thumbnails"), + (UniCase("analyseres"), "analyses"), + (UniCase("antennaes"), "antennas"), + (UniCase("sensitiviy"), "sensitivity"), + (UniCase("alogrithm"), "algorithm"), + (UniCase("artice"), "article"), + (UniCase("jerusaleum"), "jerusalem"), + (UniCase("reconnoitres"), "reconnoiters"), + (UniCase("invalidades"), "invalidates"), + (UniCase("overclocled"), "overclocked"), + (UniCase("masculenity"), "masculinity"), + (UniCase("compareble"), "comparable"), + (UniCase("disticntly"), "distinctly"), + (UniCase("successing"), "succession"), + (UniCase("photoshope"), "photoshopped"), + (UniCase("efficiantly"), "efficiently"), + (UniCase("enevlopes"), "envelopes"), + (UniCase("travestry"), "travesty"), + (UniCase("ultimatuum"), "ultimatum"), + (UniCase("caramelise"), "caramelize"), + (UniCase("approximitely"), "approximately"), + (UniCase("castleos"), "castles"), + (UniCase("scrolld"), "scrolled"), + (UniCase("prepetuate"), "perpetuate"), + (UniCase("energises"), "energizes"), + (UniCase("centipeed"), "centipede"), + (UniCase("preformers"), "performers"), + (UniCase("cricketts"), "crickets"), + (UniCase("fantasazing"), "fantasizing"), + (UniCase("symmety"), "symmetry"), + (UniCase("illustrato"), "illustration"), + (UniCase("entreprenure"), "entrepreneurs"), + (UniCase("defination"), "definition"), + (UniCase("premits"), "permits"), + (UniCase("emulatin"), "emulation"), + (UniCase("intereactions"), "intersections"), + (UniCase("barabrians"), "barbarians"), + (UniCase("forgivenss"), "forgiveness"), + (UniCase("thoughout"), "throughout"), + (UniCase("contentino"), "contention"), + (UniCase("nessecary"), "necessary"), + (UniCase("empahsize"), "emphasize"), + (UniCase("lifestel"), "lifesteal"), + (UniCase("versatille"), "versatile"), + (UniCase("swastikka"), "swastika"), + (UniCase("rescuecd"), "rescued"), + (UniCase("accomplishemnt"), "accomplishment"), + (UniCase("artificiel"), "artificial"), + (UniCase("conspirancy"), "conspiracy"), + (UniCase("pharmacueticals"), "pharmaceutical"), + (UniCase("miniaturisation"), "miniaturization"), + (UniCase("privelige"), "privilege"), + (UniCase("cumbursome"), "cumbersome"), + (UniCase("supsicious"), "suspicious"), + (UniCase("authorotative"), "authoritative"), + (UniCase("severly"), "severely"), + (UniCase("overhooked"), "overlooked"), + (UniCase("northeat"), "northeast"), + (UniCase("infilitrate"), "infiltrate"), + (UniCase("ceremonije"), "ceremonies"), + (UniCase("rebuplicans"), "republicans"), + (UniCase("orginasation"), "organisation"), + (UniCase("reminescent"), "reminiscent"), + (UniCase("internest"), "internets"), + (UniCase("applicates"), "applicants"), + (UniCase("accomodate"), "accommodate"), + (UniCase("anaylsts"), "analysts"), + (UniCase("controlers"), "controls"), + (UniCase("transparecy"), "transparency"), + (UniCase("dictionare"), "dictionaries"), + (UniCase("psychaitrists"), "psychiatrists"), + (UniCase("psychoanalysed"), "psychoanalyzed"), + (UniCase("persaude"), "persuade"), + (UniCase("pshycologists"), "psychologists"), + (UniCase("durring"), "during"), + (UniCase("laughabley"), "laughably"), + (UniCase("anthropoly"), "anthropology"), + (UniCase("originall"), "original"), + (UniCase("homelesness"), "homelessness"), + (UniCase("cemetary"), "cemetery"), + (UniCase("adequetely"), "adequately"), + (UniCase("traliers"), "trailers"), + (UniCase("unsubscried"), "unsubscribed"), + (UniCase("tlaking"), "talking"), + (UniCase("olmypics"), "olympics"), + (UniCase("anonymousny"), "anonymously"), + (UniCase("terrotorial"), "territorial"), + (UniCase("clairfying"), "clarifying"), + (UniCase("threatended"), "threatened"), + (UniCase("techincians"), "technicians"), + (UniCase("theives"), "thieves"), + (UniCase("pattersn"), "patterson"), + (UniCase("correlacion"), "correlation"), + (UniCase("homepoathy"), "homeopathy"), + (UniCase("infestaton"), "infestation"), + (UniCase("contigents"), "continents"), + (UniCase("arised"), "arose"), + (UniCase("cheesse"), "cheeses"), + (UniCase("tramautic"), "traumatic"), + (UniCase("sociopatch"), "sociopaths"), + (UniCase("culiminating"), "culminating"), + (UniCase("transisioned"), "transitioned"), + (UniCase("distribue"), "distributed"), + (UniCase("publishor"), "publisher"), + (UniCase("jagaurs"), "jaguars"), + (UniCase("afficionado"), "aficionado"), + (UniCase("wordlwide"), "worldwide"), + (UniCase("kubirck"), "kubrick"), + (UniCase("decentralising"), "decentralizing"), + (UniCase("hourgalss"), "hourglass"), + (UniCase("instituion"), "institution"), + (UniCase("continuining"), "continuing"), + (UniCase("buddhsim"), "buddhism"), + (UniCase("natioanlistic"), "nationalistic"), + (UniCase("californica"), "california"), + (UniCase("insectiverous"), "insectivorous"), + (UniCase("aggregious"), "egregious"), + (UniCase("arbitrarilly"), "arbitrarily"), + (UniCase("cardboad"), "cardboard"), + (UniCase("surveilence"), "surveillance"), + (UniCase("proove"), "prove"), + (UniCase("powerlifing"), "powerlifting"), + (UniCase("specialied"), "specialized"), + (UniCase("caclulator"), "calculator"), + (UniCase("outrageuos"), "outrageous"), + (UniCase("battlestsr"), "battlestar"), + (UniCase("declase"), "declares"), + (UniCase("unsubscirbed"), "unsubscribed"), + (UniCase("goddman"), "goddamn"), + (UniCase("governened"), "governed"), + (UniCase("alowed"), "allowed"), + (UniCase("xenophoblic"), "xenophobic"), + (UniCase("pateint"), "patient"), + (UniCase("competiton"), "competition"), + (UniCase("deliberatley"), "deliberately"), + (UniCase("resgination"), "resignation"), + (UniCase("unplayabe"), "unplayable"), + (UniCase("misognyist"), "misogynist"), + (UniCase("phsyicists"), "physicists"), + (UniCase("devasteted"), "devastated"), + (UniCase("disciprine"), "discipline"), + (UniCase("eigtheen"), "eighteen"), + (UniCase("disturbante"), "disturbance"), + (UniCase("braodly"), "broadly"), + (UniCase("phylosophically"), "philosophically"), + (UniCase("fingertops"), "fingertips"), + (UniCase("authenticor"), "authenticator"), + (UniCase("contribuent"), "contribute"), + (UniCase("forgiener"), "foreigner"), + (UniCase("programmmer"), "programme"), + (UniCase("fanservie"), "fanservice"), + (UniCase("officiallly"), "officially"), + (UniCase("survivabiltiy"), "survivability"), + (UniCase("aircarft"), "aircraft"), + (UniCase("severley"), "severely"), + (UniCase("reaveling"), "revealing"), + (UniCase("mothebroard"), "motherboards"), + (UniCase("perpetraron"), "perpetrator"), + (UniCase("divinitiy"), "divinity"), + (UniCase("complicatin"), "complicit"), + (UniCase("senitments"), "sentiments"), + (UniCase("confids"), "confides"), + (UniCase("imaginaton"), "imagination"), + (UniCase("denationalises"), "denationalizes"), + (UniCase("initalizable"), "initializable"), + (UniCase("informatief"), "informative"), + (UniCase("therapeudic"), "therapeutic"), + (UniCase("acknowlegding"), "acknowledging"), + (UniCase("specifed"), "specified"), + (UniCase("interferce"), "interferes"), + (UniCase("soliditary"), "solidarity"), + (UniCase("afircans"), "africans"), + (UniCase("observare"), "observer"), + (UniCase("indefinetly"), "indefinitely"), + (UniCase("proporting"), "proportion"), + (UniCase("occurrencies"), "occurrences"), + (UniCase("continiously"), "continuously"), + (UniCase("motherborads"), "motherboards"), + (UniCase("basnhee"), "banshee"), + (UniCase("unintuive"), "unintuitive"), + (UniCase("ultimae"), "ultimate"), + (UniCase("westernese"), "westerners"), + (UniCase("prarie"), "prairie"), + (UniCase("perpetraters"), "perpetrators"), + (UniCase("entrepreners"), "entrepreneurs"), + (UniCase("calcular"), "calculator"), + (UniCase("dicovering"), "discovering"), + (UniCase("mastermined"), "mastermind"), + (UniCase("unrestrictred"), "unrestricted"), + (UniCase("adquires"), "acquires"), + (UniCase("earlies"), "earliest"), + (UniCase("rapsberry"), "raspberry"), + (UniCase("internetus"), "internets"), + (UniCase("exhuasted"), "exhausted"), + (UniCase("aninteresting"), "uninteresting"), + (UniCase("distingush"), "distinguish"), + (UniCase("congretation"), "congregation"), + (UniCase("classsic"), "classics"), + (UniCase("interioare"), "interior"), + (UniCase("supernatrual"), "supernatural"), + (UniCase("millionarie"), "millionaire"), + (UniCase("pilgrimmage"), "pilgrimage"), + (UniCase("marvelled"), "marveled"), + (UniCase("ukraininans"), "ukrainians"), + (UniCase("manifestaion"), "manifestation"), + (UniCase("matterss"), "mattress"), + (UniCase("simplicitly"), "simplicity"), + (UniCase("realisations"), "realizations"), + (UniCase("republians"), "republicans"), + (UniCase("meditaciones"), "medications"), + (UniCase("characterisitc"), "characteristics"), + (UniCase("metagaem"), "metagame"), + (UniCase("eachtoher"), "eachother"), + (UniCase("commentaar"), "commentary"), + (UniCase("incramental"), "incremental"), + (UniCase("legenday"), "legendary"), + (UniCase("interrogativo"), "interrogation"), + (UniCase("psycholigists"), "psychologists"), + (UniCase("driveris"), "drivers"), + (UniCase("massachucetts"), "massachusetts"), + (UniCase("prerogotive"), "prerogative"), + (UniCase("destinction"), "destination"), + (UniCase("statment"), "statement"), + (UniCase("remignton"), "remington"), + (UniCase("legimitacy"), "legitimacy"), + (UniCase("conciderations"), "considerations"), + (UniCase("planteary"), "planetary"), + (UniCase("repetion"), "repetition"), + (UniCase("becouse"), "because"), + (UniCase("comfortablely"), "comfortably"), + (UniCase("secretley"), "secretly"), + (UniCase("popularily"), "popularity"), + (UniCase("humourless"), "humorless"), + (UniCase("scritpures"), "scriptures"), + (UniCase("respondendo"), "responded"), + (UniCase("preceeds"), "precedes"), + (UniCase("baptise"), "baptize"), + (UniCase("entorpy"), "entropy"), + (UniCase("pyschopaths"), "psychopaths"), + (UniCase("privaticed"), "privatized"), + (UniCase("technicion"), "technician"), + (UniCase("drifitng"), "drifting"), + (UniCase("sacrastically"), "sarcastically"), + (UniCase("photochopped"), "photoshopped"), + (UniCase("striaght"), "straight"), + (UniCase("bachelour"), "bachelor"), + (UniCase("capicator"), "capacitor"), + (UniCase("nagivation"), "navigation"), + (UniCase("sensationalisim"), "sensationalism"), + (UniCase("orthodx"), "orthodox"), + (UniCase("unvierses"), "universes"), + (UniCase("restructed"), "restricted"), + (UniCase("demolision"), "demolition"), + (UniCase("exahust"), "exhaust"), + (UniCase("trainig"), "training"), + (UniCase("glodfish"), "goldfish"), + (UniCase("paragraps"), "paragraphs"), + (UniCase("staoshi"), "satoshi"), + (UniCase("insturments"), "instruments"), + (UniCase("sountrack"), "soundtrack"), + (UniCase("underwolrd"), "underworld"), + (UniCase("hoildays"), "holidays"), + (UniCase("sporstmanship"), "sportsmanship"), + (UniCase("vicotrious"), "victorious"), + (UniCase("concentrant"), "concentrate"), + (UniCase("bretheren"), "brethren"), + (UniCase("phenomenonal"), "phenomenal"), + (UniCase("worhsiping"), "worshiping"), + (UniCase("cambodican"), "cambodia"), + (UniCase("moderateurs"), "moderates"), + (UniCase("illinios"), "illinois"), + (UniCase("grafitti"), "graffiti"), + (UniCase("constitude"), "constitute"), + (UniCase("complaing"), "complaining"), + (UniCase("bombardeado"), "bombarded"), + (UniCase("attemtped"), "attempted"), + (UniCase("decendents"), "descendants"), + (UniCase("propertiary"), "proprietary"), + (UniCase("extrapalate"), "extrapolate"), + (UniCase("alternatieve"), "alternative"), + (UniCase("mechaniclly"), "mechanically"), + (UniCase("squirrelled"), "squirreled"), + (UniCase("forsenic"), "forensic"), + (UniCase("infridging"), "infringing"), + (UniCase("explotacion"), "exploration"), + (UniCase("spectraply"), "spectral"), + (UniCase("complians"), "complains"), + (UniCase("inhabitans"), "inhabitants"), + (UniCase("archaology"), "archeology"), + (UniCase("catholocism"), "catholicism"), + (UniCase("sympathisers"), "sympathizers"), + (UniCase("guiseppe"), "giuseppe"), + (UniCase("inclinacion"), "inclination"), + (UniCase("monatge"), "montage"), + (UniCase("diganosed"), "diagnosed"), + (UniCase("lollipoop"), "lollipop"), + (UniCase("perpatuated"), "perpetuated"), + (UniCase("traditition"), "tradition"), + (UniCase("inequailty"), "inequality"), + (UniCase("ampethamines"), "amphetamines"), + (UniCase("reaponsibility"), "responsibility"), + (UniCase("succesion"), "succession"), + (UniCase("rebuliding"), "rebuilding"), + (UniCase("pedestiran"), "pedestrian"), + (UniCase("rollercoaser"), "rollercoaster"), + (UniCase("misinterpet"), "misinterpret"), + (UniCase("undetecable"), "undetectable"), + (UniCase("oportunity"), "opportunity"), + (UniCase("confidenly"), "confidently"), + (UniCase("componts"), "compost"), + (UniCase("affectionnate"), "affectionate"), + (UniCase("expereince"), "experience"), + (UniCase("countires"), "countries"), + (UniCase("guradian"), "guardian"), + (UniCase("coefficiant"), "coefficient"), + (UniCase("analysises"), "analyses"), + (UniCase("committment"), "commitment"), + (UniCase("percision"), "precision"), + (UniCase("respecatble"), "respectable"), + (UniCase("transformis"), "transforms"), + (UniCase("formual"), "formula"), + (UniCase("honour"), "honor"), + (UniCase("receptionest"), "receptionist"), + (UniCase("containting"), "containing"), + (UniCase("suspicioun"), "suspicion"), + (UniCase("synonamous"), "synonymous"), + (UniCase("contaiminate"), "contaminate"), + (UniCase("adverticement"), "advertisement"), + (UniCase("frequenzies"), "frequencies"), + (UniCase("girlfrined"), "girlfriends"), + (UniCase("desensitised"), "desensitized"), + (UniCase("simpley"), "simply"), + (UniCase("platofrms"), "platforms"), + (UniCase("compotition"), "composition"), + (UniCase("cliamtes"), "climates"), + (UniCase("goalkeepr"), "goalkeeper"), + (UniCase("paradiggum"), "paradigm"), + (UniCase("externalisations"), "externalizations"), + (UniCase("heighest"), "heights"), + (UniCase("guatamalan"), "guatemalan"), + (UniCase("squrtile"), "squirtle"), + (UniCase("malyasian"), "malaysian"), + (UniCase("unoriginial"), "unoriginal"), + (UniCase("sterilise"), "sterilize"), + (UniCase("scannig"), "scanning"), + (UniCase("replayes"), "replays"), + (UniCase("commiteed"), "commited"), + (UniCase("intrewebs"), "interwebs"), + (UniCase("pedophils"), "pedophiles"), + (UniCase("mechanisims"), "mechanism"), + (UniCase("entreprenur"), "entrepreneur"), + (UniCase("outputed"), "outputted"), + (UniCase("penetratin"), "penetration"), + (UniCase("initalizers"), "initializers"), + (UniCase("socialogical"), "sociological"), + (UniCase("investigatio"), "investigator"), + (UniCase("arbitary"), "arbitrary"), + (UniCase("sycther"), "scyther"), + (UniCase("manufatured"), "manufactured"), + (UniCase("synopsies"), "synopsis"), + (UniCase("increadible"), "incredible"), + (UniCase("expalins"), "explains"), + (UniCase("ideologice"), "ideologies"), + (UniCase("challengur"), "challenger"), + (UniCase("inequallity"), "inequality"), + (UniCase("reitrement"), "retirement"), + (UniCase("interseciton"), "intersections"), + (UniCase("malasyian"), "malaysian"), + (UniCase("unisntalling"), "uninstalling"), + (UniCase("ironicly"), "ironically"), + (UniCase("enforcees"), "enforces"), + (UniCase("cheeseburgs"), "cheeseburgers"), + (UniCase("constracts"), "constructs"), + (UniCase("tyrrany"), "tyranny"), + (UniCase("barrackus"), "barracks"), + (UniCase("editorialised"), "editorialized"), + (UniCase("mircowave"), "microwave"), + (UniCase("explusions"), "explosions"), + (UniCase("becomming"), "becoming"), + (UniCase("diagonstic"), "diagnostic"), + (UniCase("cermaic"), "ceramic"), + (UniCase("camrbidge"), "cambridge"), + (UniCase("intsrumental"), "instrumental"), + (UniCase("persumed"), "presumed"), + (UniCase("hatchign"), "hatching"), + (UniCase("synthesises"), "synthesizes"), + (UniCase("comprossor"), "compressor"), + (UniCase("singals"), "signals"), + (UniCase("nationalesl"), "nationals"), + (UniCase("relaxating"), "relaxation"), + (UniCase("consequneces"), "consequence"), + (UniCase("unlcean"), "unclean"), + (UniCase("gravitationnal"), "gravitational"), + (UniCase("parliamentiary"), "parliamentary"), + (UniCase("coordinats"), "coordinates"), + (UniCase("downstar"), "downstairs"), + (UniCase("requeim"), "requiem"), + (UniCase("vinicity"), "vicinity"), + (UniCase("finnsih"), "finnish"), + (UniCase("perspecitves"), "perspectives"), + (UniCase("unfortuneatly"), "unfortunately"), + (UniCase("torchligt"), "torchlight"), + (UniCase("vitmain"), "vitamin"), + (UniCase("unrepetant"), "unrepentant"), + (UniCase("humanitarien"), "humanitarian"), + (UniCase("lunaticos"), "lunatics"), + (UniCase("antiquaited"), "antiquated"), + (UniCase("authorises"), "authorizes"), + (UniCase("surroundign"), "surroundings"), + (UniCase("prohibiton"), "prohibition"), + (UniCase("beaurocratic"), "bureaucratic"), + (UniCase("pronouciation"), "pronunciation"), + (UniCase("masternind"), "mastermind"), + (UniCase("downviting"), "downvoting"), + (UniCase("flutterspy"), "fluttershy"), + (UniCase("messanger"), "messenger"), + (UniCase("ubiqutious"), "ubiquitous"), + (UniCase("movespeeed"), "movespeed"), + (UniCase("portalis"), "portals"), + (UniCase("specialops"), "specials"), + (UniCase("mongoles"), "mongols"), + (UniCase("santorm"), "santorum"), + (UniCase("persective"), "respective"), + (UniCase("plagiarises"), "plagiarizes"), + (UniCase("celebrasion"), "celebrations"), + (UniCase("programms"), "programs"), + (UniCase("apprecited"), "appreciated"), + (UniCase("crucibel"), "crucible"), + (UniCase("paramedicos"), "paramedics"), + (UniCase("addresed"), "addressed"), + (UniCase("comapres"), "compares"), + (UniCase("spirituallity"), "spiritually"), + (UniCase("factorise"), "factorize"), + (UniCase("grahpics"), "graphics"), + (UniCase("punishmet"), "punishments"), + (UniCase("clasically"), "classically"), + (UniCase("matchamking"), "matchmaking"), + (UniCase("alimunium"), "aluminium"), + (UniCase("interpertation"), "interpretation"), + (UniCase("midfiled"), "midfield"), + (UniCase("oppertunities"), "opportunities"), + (UniCase("convuluted"), "convoluted"), + (UniCase("concsience"), "conscience"), + (UniCase("earthqauke"), "earthquake"), + (UniCase("exacberated"), "exacerbated"), + (UniCase("widgest"), "widgets"), + (UniCase("meditationg"), "meditating"), + (UniCase("overhooking"), "overlooking"), + (UniCase("addressess"), "addresses"), + (UniCase("replusive"), "repulsive"), + (UniCase("disnegage"), "disengage"), + (UniCase("corcodile"), "crocodile"), + (UniCase("evolutionarilly"), "evolutionary"), + (UniCase("interactue"), "interacted"), + (UniCase("snowboaring"), "snowboarding"), + (UniCase("invunlerable"), "invulnerable"), + (UniCase("miltary"), "military"), + (UniCase("falmethrower"), "flamethrower"), + (UniCase("cahsiers"), "cashiers"), + (UniCase("vulgarises"), "vulgarizes"), + (UniCase("photogrophers"), "photographers"), + (UniCase("presidental"), "presidential"), + (UniCase("threadd"), "threaded"), + (UniCase("muscial"), "musical"), + (UniCase("protectoras"), "protectors"), + (UniCase("misunderdtanding"), "misunderstandings"), + (UniCase("atain"), "attain"), + (UniCase("succsess"), "success"), + (UniCase("scriptores"), "scriptures"), + (UniCase("mandrian"), "mandarin"), + (UniCase("progresss"), "progresses"), + (UniCase("bluebrints"), "blueprints"), + (UniCase("proprietery"), "proprietary"), + (UniCase("elepahnts"), "elephants"), + (UniCase("dedicacion"), "dedication"), + (UniCase("terorrists"), "terrorists"), + (UniCase("anniversry"), "anniversary"), + (UniCase("snythetic"), "synthetic"), + (UniCase("hostiliy"), "hostility"), + (UniCase("harrasment"), "harassment"), + (UniCase("suppressin"), "suppression"), + (UniCase("ocasion"), "occasion"), + (UniCase("unbreakabie"), "unbreakable"), + (UniCase("uranuim"), "uranium"), + (UniCase("vairable"), "variable"), + (UniCase("skeletos"), "skeletons"), + (UniCase("juggeranut"), "juggernaut"), + (UniCase("constructeds"), "constructs"), + (UniCase("esctasy"), "ecstasy"), + (UniCase("demobilises"), "demobilizes"), + (UniCase("insistince"), "insistence"), + (UniCase("finacial"), "financial"), + (UniCase("desensitzed"), "desensitized"), + (UniCase("wellingtion"), "wellington"), + (UniCase("muscician"), "musician"), + (UniCase("ingeunity"), "ingenuity"), + (UniCase("progressionwise"), "progressions"), + (UniCase("tryannical"), "tyrannical"), + (UniCase("chocloates"), "chocolates"), + (UniCase("antagonistc"), "antagonistic"), + (UniCase("spagehtti"), "spaghetti"), + (UniCase("carbonised"), "carbonized"), + (UniCase("aggresions"), "aggression"), + (UniCase("precedance"), "precedence"), + (UniCase("fundementally"), "fundamentally"), + (UniCase("aproval"), "approval"), + (UniCase("minerales"), "minerals"), + (UniCase("margianlly"), "marginally"), + (UniCase("critisicsm"), "criticisms"), + (UniCase("diplomatisch"), "diplomatic"), + (UniCase("virginas"), "virgins"), + (UniCase("cambodai"), "cambodia"), + (UniCase("privalege"), "privilege"), + (UniCase("humidiy"), "humidity"), + (UniCase("palaeolithic"), "paleolithic"), + (UniCase("chivlary"), "chivalry"), + (UniCase("alligned"), "aligned"), + (UniCase("interlectually"), "intellectually"), + (UniCase("apologiste"), "apologise"), + (UniCase("unbeliveable"), "unbelievable"), + (UniCase("krpytonite"), "kryptonite"), + (UniCase("scince"), "science"), + (UniCase("restaurantes"), "restaurants"), + (UniCase("pshycologist"), "psychologist"), + (UniCase("secuirty"), "security"), + (UniCase("mobilisation"), "mobilization"), + (UniCase("necromanser"), "necromancer"), + (UniCase("simplifiing"), "simplifying"), + (UniCase("palceholder"), "placeholder"), + (UniCase("yementite"), "yemenite"), + (UniCase("monumentul"), "monumental"), + (UniCase("visualising"), "visualizing"), + (UniCase("anitbiotic"), "antibiotic"), + (UniCase("interchangeablity"), "interchangeably"), + (UniCase("internationalise"), "internationalize"), + (UniCase("standardised"), "standardized"), + (UniCase("mindlessely"), "mindlessly"), + (UniCase("misfortunte"), "misfortune"), + (UniCase("clyamore"), "claymore"), + (UniCase("rationallity"), "rationally"), + (UniCase("requeriment"), "requirement"), + (UniCase("mariyln"), "marilyn"), + (UniCase("prestigue"), "prestige"), + (UniCase("assualts"), "assaults"), + (UniCase("horrifing"), "horrifying"), + (UniCase("simulteanously"), "simultaneously"), + (UniCase("introversa"), "introverts"), + (UniCase("improbabile"), "improbable"), + (UniCase("sadning"), "sanding"), + (UniCase("sociopatas"), "sociopaths"), + (UniCase("recrod"), "record"), + (UniCase("percepted"), "perceived"), + (UniCase("gradiating"), "graduating"), + (UniCase("contextl"), "contextual"), + (UniCase("condomes"), "condoms"), + (UniCase("apparenlty"), "apparently"), + (UniCase("gauarana"), "guaraná"), + (UniCase("embezelled"), "embezzled"), + (UniCase("expiers"), "expires"), + (UniCase("morrisound"), "morrison"), + (UniCase("conenctors"), "connectors"), + (UniCase("negociations"), "negotiations"), + (UniCase("inconsecuential"), "inconsequential"), + (UniCase("innovacion"), "innovation"), + (UniCase("stravation"), "starvation"), + (UniCase("observered"), "observed"), + (UniCase("anonmyous"), "anonymous"), + (UniCase("necromaner"), "necromancer"), + (UniCase("corinthias"), "corinthians"), + (UniCase("outsorucing"), "outsourcing"), + (UniCase("dishonours"), "dishonors"), + (UniCase("mathemeticians"), "mathematicians"), + (UniCase("pronoune"), "pronounced"), + (UniCase("trasnformed"), "transformed"), + (UniCase("indugle"), "indulge"), + (UniCase("drotmund"), "dortmund"), + (UniCase("chambres"), "chambers"), + (UniCase("perpetrador"), "perpetrator"), + (UniCase("handbok"), "handbook"), + (UniCase("persceptive"), "perspectives"), + (UniCase("hathcing"), "hatching"), + (UniCase("transpareny"), "transparency"), + (UniCase("overwhemlingly"), "overwhelmingly"), + (UniCase("incompatabile"), "incompatible"), + (UniCase("assimliate"), "assimilate"), + (UniCase("contaigous"), "contagious"), + (UniCase("subsittute"), "substitutes"), + (UniCase("referrs"), "refers"), + (UniCase("defamating"), "defamation"), + (UniCase("prehaps"), "perhaps"), + (UniCase("theologial"), "theological"), + (UniCase("anesthetia"), "anesthesia"), + (UniCase("accreditied"), "accredited"), + (UniCase("eclispe"), "eclipse"), + (UniCase("covenental"), "covenant"), + (UniCase("classificato"), "classification"), + (UniCase("hydropilic"), "hydrophilic"), + (UniCase("thereotically"), "theoretically"), + (UniCase("romanticised"), "romanticized"), + (UniCase("glimspe"), "glimpse"), + (UniCase("plaigarism"), "plagiarism"), + (UniCase("purposefuly"), "purposefully"), + (UniCase("alternitavely"), "alternatively"), + (UniCase("bacehlor"), "bachelor"), + (UniCase("acrlyic"), "acrylic"), + (UniCase("exaggeratting"), "exaggerating"), + (UniCase("misunderstanting"), "misunderstandings"), + (UniCase("chromozome"), "chromosome"), + (UniCase("fashiond"), "fashioned"), + (UniCase("overhwelm"), "overwhelm"), + (UniCase("invulnurable"), "invulnerable"), + (UniCase("resloved"), "resolved"), + (UniCase("flatteur"), "flatter"), + (UniCase("possibillity"), "possibility"), + (UniCase("interpretaiton"), "interpretations"), + (UniCase("interviwer"), "interviewer"), + (UniCase("democratising"), "democratizing"), + (UniCase("undertoker"), "undertaker"), + (UniCase("commercail"), "commercials"), + (UniCase("substancial"), "substantial"), + (UniCase("aribtration"), "arbitration"), + (UniCase("scandlas"), "scandals"), + (UniCase("exceprt"), "excerpt"), + (UniCase("emmision"), "emission"), + (UniCase("competitivly"), "competitively"), + (UniCase("unsubscrbed"), "unsubscribed"), + (UniCase("whipsered"), "whispered"), + (UniCase("degenerare"), "degenerate"), + (UniCase("freindlies"), "friendlies"), + (UniCase("scholarhsips"), "scholarships"), + (UniCase("electrictian"), "electrician"), + (UniCase("emphesizes"), "emphasizes"), + (UniCase("transportng"), "transporting"), + (UniCase("herculees"), "hercules"), + (UniCase("inpsect"), "inspect"), + (UniCase("impuslive"), "impulsive"), + (UniCase("furance"), "furnace"), + (UniCase("theraupetic"), "therapeutic"), + (UniCase("specifiying"), "specifying"), + (UniCase("equivolent"), "equivalent"), + (UniCase("springfiled"), "springfield"), + (UniCase("thirlling"), "thrilling"), + (UniCase("demilitarises"), "demilitarizes"), + (UniCase("fomed"), "formed"), + (UniCase("proceesing"), "proceeding"), + (UniCase("isalmic"), "islamic"), + (UniCase("internalising"), "internalizing"), + (UniCase("hurriance"), "hurricane"), + (UniCase("athesitic"), "atheistic"), + (UniCase("patronised"), "patronized"), + (UniCase("jeopardising"), "jeopardizing"), + (UniCase("resinged"), "resigned"), + (UniCase("impluses"), "impulses"), + (UniCase("represet"), "represents"), + (UniCase("initiales"), "initials"), + (UniCase("corrupcion"), "corruption"), + (UniCase("rehabilitatin"), "rehabilitation"), + (UniCase("welathiest"), "wealthiest"), + (UniCase("vitrual"), "virtual"), + (UniCase("subcatagories"), "subcategories"), + (UniCase("simaltaneously"), "simultaneously"), + (UniCase("pepperocini"), "pepperoni"), + (UniCase("wathcmen"), "watchmen"), + (UniCase("somwhere"), "somewhere"), + (UniCase("sepulchure"), "sepulchre"), + (UniCase("calcualte"), "calculate"), + (UniCase("initaition"), "initiation"), + (UniCase("scrutinity"), "scrutiny"), + (UniCase("comparitve"), "comparative"), + (UniCase("affrimative"), "affirmative"), + (UniCase("transaltions"), "translations"), + (UniCase("invurnerable"), "invulnerable"), + (UniCase("organziations"), "organizations"), + (UniCase("casette"), "cassette"), + (UniCase("prostitition"), "prostitution"), + (UniCase("tyre"), "tire"), + (UniCase("quarintine"), "quarantine"), + (UniCase("baclony"), "balcony"), + (UniCase("investions"), "inventions"), + (UniCase("achivement"), "achievement"), + (UniCase("definitivo"), "definition"), + (UniCase("disproportianately"), "disproportionately"), + (UniCase("ethnaol"), "ethanol"), + (UniCase("proportians"), "proportions"), + (UniCase("masturbe"), "masturbate"), + (UniCase("antagonised"), "antagonized"), + (UniCase("campains"), "campaigns"), + (UniCase("benedickt"), "benedict"), + (UniCase("redeemeed"), "redeemed"), + (UniCase("cheronbyl"), "chernobyl"), + (UniCase("sympathiser"), "sympathizer"), + (UniCase("sweatshits"), "sweatshirt"), + (UniCase("disicplines"), "disciplines"), + (UniCase("plantium"), "platinum"), + (UniCase("unfortunetely"), "unfortunately"), + (UniCase("profressions"), "progressions"), + (UniCase("spiralling"), "spiraling"), + (UniCase("accrediated"), "accredited"), + (UniCase("dishonesy"), "dishonesty"), + (UniCase("comptuers"), "computers"), + (UniCase("carachter"), "character"), + (UniCase("assemblying"), "assembling"), + (UniCase("programes"), "programs"), + (UniCase("paraprhasing"), "paraphrasing"), + (UniCase("underware"), "underwear"), + (UniCase("gamemdoe"), "gamemode"), + (UniCase("sentires"), "sentries"), + (UniCase("politiicans"), "politician"), + (UniCase("evidende"), "evidenced"), + (UniCase("despoited"), "deposited"), + (UniCase("rockerfeller"), "rockefeller"), + (UniCase("mechinisms"), "mechanisms"), + (UniCase("sanlder"), "sandler"), + (UniCase("intimide"), "intimidate"), + (UniCase("scandivania"), "scandinavian"), + (UniCase("procrastibating"), "procrastinating"), + (UniCase("electoraat"), "electorate"), + (UniCase("occasionly"), "occasional"), + (UniCase("hallicunations"), "hallucinations"), + (UniCase("perliminary"), "preliminary"), + (UniCase("mastubrate"), "masturbated"), + (UniCase("autocorret"), "autocorrect"), + (UniCase("intrinisc"), "intrinsic"), + (UniCase("fasicsm"), "fascism"), + (UniCase("estination"), "estimation"), + (UniCase("provincies"), "province"), + (UniCase("concludendo"), "concluded"), + (UniCase("antibiotcs"), "antibiotics"), + (UniCase("traines"), "trainers"), + (UniCase("appenines"), "apennines"), + (UniCase("modeller"), "modeler"), + (UniCase("devided"), "divided"), + (UniCase("recipees"), "recipes"), + (UniCase("indianaoplis"), "indianapolis"), + (UniCase("insurgencey"), "insurgency"), + (UniCase("roundabounts"), "roundabout"), + (UniCase("aniversary"), "anniversary"), + (UniCase("misogyinsts"), "misogynist"), + (UniCase("transmissable"), "transmissible"), + (UniCase("perihperals"), "peripherals"), + (UniCase("condemming"), "condemning"), + (UniCase("inadequet"), "inadequate"), + (UniCase("mariens"), "marines"), + (UniCase("proportionella"), "proportionally"), + (UniCase("throughtput"), "throughput"), + (UniCase("functionailty"), "functionality"), + (UniCase("mkea"), "make"), + (UniCase("professorin"), "profession"), + (UniCase("repalys"), "replays"), + (UniCase("sriraca"), "sriracha"), + (UniCase("pretence"), "pretense"), + (UniCase("malariya"), "malaria"), + (UniCase("landscspe"), "landscapes"), + (UniCase("introspeccion"), "introspection"), + (UniCase("extrimists"), "extremists"), + (UniCase("butterry"), "buttery"), + (UniCase("factorys"), "factors"), + (UniCase("prediceted"), "predicated"), + (UniCase("cluases"), "clauses"), + (UniCase("homewoners"), "homeowners"), + (UniCase("unihabited"), "uninhabited"), + (UniCase("butcherd"), "butchered"), + (UniCase("supervsior"), "supervisors"), + (UniCase("partols"), "patrols"), + (UniCase("dentistes"), "dentists"), + (UniCase("manuever"), "maneuver"), + (UniCase("conceed"), "concede"), + (UniCase("parternships"), "partnership"), + (UniCase("intercontinential"), "intercontinental"), + (UniCase("battlefiend"), "battlefield"), + (UniCase("whcih"), "which"), + (UniCase("generalizng"), "generalizing"), + (UniCase("extremiste"), "extremes"), + (UniCase("slaugterhouses"), "slaughterhouses"), + (UniCase("goegraphy"), "geography"), + (UniCase("celestail"), "celestial"), + (UniCase("brewrey"), "brewery"), + (UniCase("declinining"), "declining"), + (UniCase("promiscous"), "promiscuous"), + (UniCase("consicousness"), "consciousness"), + (UniCase("acceptible"), "acceptable"), + (UniCase("streamear"), "streamer"), + (UniCase("africain"), "african"), + (UniCase("distribuito"), "distribution"), + (UniCase("sacrifises"), "sacrifices"), + (UniCase("supervisin"), "supervision"), + (UniCase("demonstrats"), "demonstrates"), + (UniCase("combins"), "combines"), + (UniCase("dislcaimer"), "disclaimer"), + (UniCase("synonmyous"), "synonymous"), + (UniCase("exhaustin"), "exhaustion"), + (UniCase("emminent"), "eminent"), + (UniCase("alienet"), "alienate"), + (UniCase("relavent"), "relevant"), + (UniCase("investmens"), "investments"), + (UniCase("deafults"), "defaults"), + (UniCase("absolvte"), "absolve"), + (UniCase("counterract"), "counterpart"), + (UniCase("execptional"), "exceptional"), + (UniCase("astronaught"), "astronaut"), + (UniCase("afterthougth"), "afterthought"), + (UniCase("dangerousely"), "dangerously"), + (UniCase("funcitoning"), "functioning"), + (UniCase("ressurrection"), "resurrection"), + (UniCase("pedestrianisation"), "pedestrianization"), + (UniCase("hypothesus"), "hypotheses"), + (UniCase("adjustible"), "adjustable"), + (UniCase("uniquley"), "uniquely"), + (UniCase("torubleshoot"), "troubleshoot"), + (UniCase("excellenet"), "excellence"), + (UniCase("substitudes"), "substitutes"), + (UniCase("insentivises"), "insensitive"), + (UniCase("implementatino"), "implementations"), + (UniCase("privelages"), "privileges"), + (UniCase("cannibalisim"), "cannibalism"), + (UniCase("mansalughter"), "manslaughter"), + (UniCase("clickear"), "clicker"), + (UniCase("champoinship"), "championship"), + (UniCase("qualificato"), "qualification"), + (UniCase("hererosexual"), "heterosexual"), + (UniCase("fetishs"), "fetishes"), + (UniCase("professionalising"), "professionalizing"), + (UniCase("preferabley"), "preferably"), + (UniCase("versitality"), "versatility"), + (UniCase("italianos"), "italians"), + (UniCase("conceptos"), "concepts"), + (UniCase("iresistible"), "irresistible"), + (UniCase("masturbacion"), "masturbation"), + (UniCase("amerliorate"), "ameliorate"), + (UniCase("thereian"), "therein"), + (UniCase("austrija"), "austria"), + (UniCase("socailize"), "socialize"), + (UniCase("baksetball"), "basketball"), + (UniCase("naturalising"), "naturalizing"), + (UniCase("disgustos"), "disgusts"), + (UniCase("commercialy"), "commercially"), + (UniCase("registraion"), "registration"), + (UniCase("feromone"), "pheromone"), + (UniCase("squirrtle"), "squirrel"), + (UniCase("alcoholis"), "alcoholics"), + (UniCase("sacrifise"), "sacrifices"), + (UniCase("auhtenticate"), "authenticate"), + (UniCase("tendencije"), "tendencies"), + (UniCase("machiens"), "machines"), + (UniCase("distinguise"), "distinguished"), + (UniCase("assassinatd"), "assassinated"), + (UniCase("connectiong"), "connecting"), + (UniCase("verticaly"), "vertically"), + (UniCase("disinteresed"), "disinterested"), + (UniCase("reinitalizes"), "reinitializes"), + (UniCase("precautios"), "precautions"), + (UniCase("correlato"), "correlation"), + (UniCase("indifferance"), "indifference"), + (UniCase("terminato"), "termination"), + (UniCase("searchs"), "searches"), + (UniCase("accidentky"), "accidently"), + (UniCase("sedereal"), "sidereal"), + (UniCase("illumianti"), "illuminati"), + (UniCase("sensationalizm"), "sensationalism"), + (UniCase("certaintity"), "certainty"), + (UniCase("picther"), "pitcher"), + (UniCase("warrenties"), "warranties"), + (UniCase("alchimest"), "alchemist"), + (UniCase("paediatrician"), "pediatrician"), + (UniCase("althetics"), "athletics"), + (UniCase("incrediby"), "incredibly"), + (UniCase("cooridnated"), "coordinated"), + (UniCase("shfiting"), "shifting"), + (UniCase("ascneding"), "ascending"), + (UniCase("tablesppons"), "tablespoons"), + (UniCase("hydorgen"), "hydrogen"), + (UniCase("anarchim"), "anarchism"), + (UniCase("incorretly"), "incorrectly"), + (UniCase("philosphy"), "philosophy"), + (UniCase("extremests"), "extremists"), + (UniCase("hopsital"), "hospital"), + (UniCase("conveyered"), "conveyed"), + (UniCase("artefacts"), "artifacts"), + (UniCase("unatteneded"), "unattended"), + (UniCase("weigths"), "weights"), + (UniCase("transmiter"), "transmitter"), + (UniCase("shaprly"), "sharply"), + (UniCase("homeonwer"), "homeowner"), + (UniCase("professionalisim"), "professionalism"), + (UniCase("oxidises"), "oxidizes"), + (UniCase("demogrpahic"), "demographic"), + (UniCase("illegitamte"), "illegitimate"), + (UniCase("exeggeration"), "exaggeration"), + (UniCase("supermarkerts"), "supermarkets"), + (UniCase("rhapsodised"), "rhapsodized"), + (UniCase("tihkn"), "think"), + (UniCase("diphtongs"), "diphthongs"), + (UniCase("condidtions"), "conditions"), + (UniCase("nasueous"), "nauseous"), + (UniCase("limitato"), "limitation"), + (UniCase("immobilzer"), "immobile"), + (UniCase("fecthed"), "fetched"), + (UniCase("analysees"), "analyses"), + (UniCase("transmitor"), "transistor"), + (UniCase("desktopos"), "desktops"), + (UniCase("ethnicaly"), "ethnically"), + (UniCase("detrimentul"), "detrimental"), + (UniCase("insomina"), "insomnia"), + (UniCase("sinse"), "sines"), + (UniCase("acknolwedge"), "acknowledge"), + (UniCase("purchaseing"), "purchasing"), + (UniCase("revovles"), "revolves"), + (UniCase("pateintly"), "patiently"), + (UniCase("eceonomy"), "economy"), + (UniCase("bruiseres"), "bruisers"), + (UniCase("retroactivly"), "retroactively"), + (UniCase("persuated"), "persuade"), + (UniCase("sentinet"), "sentient"), + (UniCase("altho"), "although"), + (UniCase("fundemantalist"), "fundamentalist"), + (UniCase("exeedingly"), "exceedingly"), + (UniCase("tentalce"), "tentacle"), + (UniCase("disrputing"), "disrupting"), + (UniCase("priesthod"), "priesthood"), + (UniCase("assignemnt"), "assignment"), + (UniCase("plethoria"), "plethora"), + (UniCase("cuztomization"), "customization"), + (UniCase("playtrhoughs"), "playthroughs"), + (UniCase("activisits"), "activist"), + (UniCase("championsship"), "championships"), + (UniCase("fomr"), "from"), + (UniCase("nieghbour"), "neighbour"), + (UniCase("disastros"), "disastrous"), + (UniCase("constently"), "constantly"), + (UniCase("dyshporia"), "dysphoria"), + (UniCase("misunderstandigs"), "misunderstandings"), + (UniCase("underhwelming"), "underwhelming"), + (UniCase("assisnate"), "assassinate"), + (UniCase("coutnering"), "countering"), + (UniCase("interperter"), "interpreter"), + (UniCase("tremendos"), "tremendous"), + (UniCase("decriminalises"), "decriminalizes"), + (UniCase("goldamn"), "goldman"), + (UniCase("accessorised"), "accessorized"), + (UniCase("connonations"), "connotations"), + (UniCase("wathcing"), "watching"), + (UniCase("neckneards"), "neckbeards"), + (UniCase("indiffernce"), "indifference"), + (UniCase("apparant"), "apparent"), + (UniCase("mechanicle"), "mechanical"), + (UniCase("affirmitave"), "affirmative"), + (UniCase("festivle"), "festive"), + (UniCase("intergation"), "integration"), + (UniCase("webstie"), "website"), + (UniCase("interestigly"), "interestingly"), + (UniCase("somene"), "someone"), + (UniCase("paitience"), "patience"), + (UniCase("prinicpals"), "principals"), + (UniCase("outraegously"), "outrageously"), + (UniCase("excerised"), "exercised"), + (UniCase("dissopointed"), "dissapointed"), + (UniCase("catholicisim"), "catholicism"), + (UniCase("collaterial"), "collateral"), + (UniCase("distribuem"), "distribute"), + (UniCase("compinsation"), "compensation"), + (UniCase("applaued"), "applaud"), + (UniCase("narcassism"), "narcissism"), + (UniCase("archaeological"), "archeological"), + (UniCase("tylenool"), "tylenol"), + (UniCase("butterlfies"), "butterflies"), + (UniCase("maneveurs"), "maneuvers"), + (UniCase("arithmethic"), "arithmetic"), + (UniCase("desgustingly"), "disgustingly"), + (UniCase("technologicaly"), "technologically"), + (UniCase("inflamable"), "inflatable"), + (UniCase("cavilling"), "caviling"), + (UniCase("spilnter"), "splinter"), + (UniCase("extraordinaly"), "extraordinary"), + (UniCase("weaknesess"), "weaknesses"), + (UniCase("contextura"), "contextual"), + (UniCase("trubines"), "turbines"), + (UniCase("dyas"), "dryas"), + (UniCase("ploretariat"), "proletariat"), + (UniCase("cleanisng"), "cleansing"), + (UniCase("swaetshirt"), "sweatshirt"), + (UniCase("expertos"), "experts"), + (UniCase("phenonema"), "phenomena"), + (UniCase("incomfortable"), "uncomfortable"), + (UniCase("denisty"), "density"), + (UniCase("cataline"), "catiline"), + (UniCase("attractes"), "attracts"), + (UniCase("feministas"), "feminists"), + (UniCase("aggresssion"), "aggression"), + (UniCase("secularisation"), "secularization"), + (UniCase("bitocins"), "bitcoins"), + (UniCase("territores"), "territories"), + (UniCase("socializare"), "socialize"), + (UniCase("fundametal"), "fundamental"), + (UniCase("inquizitor"), "inquisitor"), + (UniCase("prosepct"), "prospect"), + (UniCase("soveregin"), "sovereign"), + (UniCase("commonwelth"), "commonwealth"), + (UniCase("sharpenning"), "sharpening"), + (UniCase("configurate"), "configure"), + (UniCase("cartrdige"), "cartridge"), + (UniCase("metropos"), "metropolis"), + (UniCase("significante"), "significance"), + (UniCase("cooridnator"), "coordinator"), + (UniCase("transcluent"), "translucent"), + (UniCase("desensitisation"), "desensitization"), + (UniCase("iritable"), "irritable"), + (UniCase("plagiarising"), "plagiarizing"), + (UniCase("constanly"), "constantly"), + (UniCase("obstrucion"), "obstruction"), + (UniCase("underwrold"), "underworld"), + (UniCase("alternatve"), "alternate"), + (UniCase("gaurenteed"), "guaranteed"), + (UniCase("retuns"), "returns"), + (UniCase("melieux"), "milieux"), + (UniCase("charasteristic"), "characteristics"), + (UniCase("recrusion"), "recursion"), + (UniCase("pharamceuticals"), "pharmaceutical"), + (UniCase("esle"), "else"), + (UniCase("epihpany"), "epiphany"), + (UniCase("trianlge"), "triangle"), + (UniCase("proclaming"), "proclaiming"), + (UniCase("blasphemey"), "blasphemy"), + (UniCase("carolling"), "caroling"), + (UniCase("reluctently"), "reluctantly"), + (UniCase("dispensarie"), "dispenser"), + (UniCase("unkowningly"), "unknowingly"), + (UniCase("favourtie"), "favourite"), + (UniCase("redistribucion"), "redistribution"), + (UniCase("vicitmized"), "victimized"), + (UniCase("popluations"), "populations"), + (UniCase("princepals"), "principals"), + (UniCase("assassians"), "assassin"), + (UniCase("skpetics"), "skeptics"), + (UniCase("interersting"), "interpreting"), + (UniCase("complicato"), "complication"), + (UniCase("theistc"), "theistic"), + (UniCase("hypertrohy"), "hypertrophy"), + (UniCase("prohibites"), "prohibits"), + (UniCase("intrerupted"), "interrupted"), + (UniCase("obstancles"), "obstacles"), + (UniCase("roestta"), "rosetta"), + (UniCase("infrastracture"), "infrastructure"), + (UniCase("chernoybl"), "chernobyl"), + (UniCase("antibioitic"), "antibiotic"), + (UniCase("vegetarianas"), "vegetarians"), + (UniCase("obvoiusly"), "obviously"), + (UniCase("bethseda"), "bethesda"), + (UniCase("persectued"), "persecuted"), + (UniCase("struggleing"), "struggling"), + (UniCase("facsists"), "fascists"), + (UniCase("insepctions"), "inspections"), + (UniCase("experement"), "experiment"), + (UniCase("sulphide"), "sulfide"), + (UniCase("instals"), "installs"), + (UniCase("experimentaion"), "experimentation"), + (UniCase("rentres"), "renters"), + (UniCase("imbalences"), "imbalances"), + (UniCase("downloadbale"), "downloadable"), + (UniCase("arithmetric"), "arithmetic"), + (UniCase("requriements"), "requirements"), + (UniCase("pseudonyn"), "pseudonym"), + (UniCase("sulphurous"), "sulfurous"), + (UniCase("pushpus"), "pushups"), + (UniCase("adventurious"), "adventurous"), + (UniCase("disappeard"), "disappeared"), + (UniCase("grpahically"), "graphically"), + (UniCase("kroeans"), "koreans"), + (UniCase("avacodos"), "avocados"), + (UniCase("advertisy"), "adversity"), + (UniCase("toursity"), "touristy"), + (UniCase("mouldering"), "moldering"), + (UniCase("impossiblity"), "impossibly"), + (UniCase("downvore"), "downvoters"), + (UniCase("diffrent"), "different"), + (UniCase("euclidian"), "euclidean"), + (UniCase("depressieve"), "depressive"), + (UniCase("boyfried"), "boyfriend"), + (UniCase("demolution"), "demolition"), + (UniCase("previwes"), "previews"), + (UniCase("microtransactios"), "microtransactions"), + (UniCase("refreshr"), "refresher"), + (UniCase("sprinklered"), "sprinkled"), + (UniCase("architypes"), "archetypes"), + (UniCase("juggernat"), "juggernaut"), + (UniCase("midtwon"), "midtown"), + (UniCase("comapny"), "company"), + (UniCase("perdict"), "predict"), + (UniCase("statuse"), "statutes"), + (UniCase("segregaded"), "segregated"), + (UniCase("ciruclar"), "circular"), + (UniCase("jouranlists"), "journalists"), + (UniCase("physcopathic"), "psychopathic"), + (UniCase("sterilisers"), "sterilizers"), + (UniCase("nostaglic"), "nostalgic"), + (UniCase("dissatisfed"), "dissatisfied"), + (UniCase("xenohpobic"), "xenophobic"), + (UniCase("candour"), "candor"), + (UniCase("integirty"), "integrity"), + (UniCase("geneticlly"), "genetically"), + (UniCase("shperical"), "spherical"), + (UniCase("bitocin"), "bitcoin"), + (UniCase("deliviered"), "delivered"), + (UniCase("relevation"), "revelation"), + (UniCase("disapeared"), "disappeared"), + (UniCase("absolutisme"), "absolutes"), + (UniCase("batsita"), "batista"), + (UniCase("generalizaing"), "generalizing"), + (UniCase("avaliable"), "available"), + (UniCase("legendaris"), "legendaries"), + (UniCase("immitate"), "imitate"), + (UniCase("trasncripts"), "transcripts"), + (UniCase("enthrals"), "enthralls"), + (UniCase("billboars"), "billboards"), + (UniCase("kindgoms"), "kingdoms"), + (UniCase("registed"), "registered"), + (UniCase("modificaiton"), "modification"), + (UniCase("supsend"), "suspend"), + (UniCase("nrivana"), "nirvana"), + (UniCase("invloves"), "involves"), + (UniCase("complicare"), "complicate"), + (UniCase("pervailing"), "prevailing"), + (UniCase("restrictes"), "restricts"), + (UniCase("battelship"), "battleship"), + (UniCase("redundany"), "redundancy"), + (UniCase("pretendendo"), "pretended"), + (UniCase("somethinmg"), "somethings"), + (UniCase("initalness"), "initialness"), + (UniCase("imporper"), "improper"), + (UniCase("shperes"), "spheres"), + (UniCase("mechanicsms"), "mechanisms"), + (UniCase("socialiss"), "socialists"), + (UniCase("autogrpah"), "autograph"), + (UniCase("transformered"), "transformed"), + (UniCase("regluar"), "regular"), + (UniCase("airbrone"), "airborne"), + (UniCase("calibraiton"), "calibration"), + (UniCase("imperialisim"), "imperialism"), + (UniCase("paralelly"), "parallelly"), + (UniCase("apolegetic"), "apologetic"), + (UniCase("ubiquitious"), "ubiquitous"), + (UniCase("presentors"), "presents"), + (UniCase("transferrs"), "transfers"), + (UniCase("pebblets"), "pebbles"), + (UniCase("receptionsist"), "receptionist"), + (UniCase("companis"), "companions"), + (UniCase("unconciousness"), "unconsciousness"), + (UniCase("wiht"), "with"), + (UniCase("influense"), "influences"), + (UniCase("intercorse"), "intercourse"), + (UniCase("paraiste"), "parasite"), + (UniCase("protectrons"), "protections"), + (UniCase("alcohal"), "alcohol"), + (UniCase("practisioner"), "practitioner"), + (UniCase("lithuim"), "lithium"), + (UniCase("monogmay"), "monogamy"), + (UniCase("buisnessman"), "businessman"), + (UniCase("oridnary"), "ordinary"), + (UniCase("programas"), "programs"), + (UniCase("concernig"), "concerning"), + (UniCase("cthluhu"), "cthulhu"), + (UniCase("apocaplyse"), "apocalypse"), + (UniCase("profesisonal"), "professionals"), + (UniCase("curtian"), "curtain"), + (UniCase("appareances"), "appearances"), + (UniCase("strucutres"), "structures"), + (UniCase("refernece"), "reference"), + (UniCase("pastural"), "pastoral"), + (UniCase("poreclain"), "porcelain"), + (UniCase("depcitions"), "depictions"), + (UniCase("climateers"), "climates"), + (UniCase("crusiing"), "cruising"), + (UniCase("conquerers"), "conquerors"), + (UniCase("contradiciton"), "contradiction"), + (UniCase("parralel"), "parallel"), + (UniCase("serviceble"), "serviceable"), + (UniCase("aledged"), "alleged"), + (UniCase("documentarse"), "documentaries"), + (UniCase("subredddits"), "subreddits"), + (UniCase("geometricians"), "geometers"), + (UniCase("adreanline"), "adrenaline"), + (UniCase("jounralist"), "journalist"), + (UniCase("intimidant"), "intimidate"), + (UniCase("ampehtamine"), "amphetamine"), + (UniCase("juggarnaut"), "juggernaut"), + (UniCase("determinisitc"), "deterministic"), + (UniCase("rectanlge"), "rectangle"), + (UniCase("generalisation"), "generalization"), + (UniCase("sympathien"), "sympathize"), + (UniCase("chiansaw"), "chainsaw"), + (UniCase("unrepentent"), "unrepentant"), + (UniCase("segergation"), "segregation"), + (UniCase("amercias"), "americas"), + (UniCase("unfortuantely"), "unfortunately"), + (UniCase("collpases"), "collapses"), + (UniCase("flavoursome"), "flavorsome"), + (UniCase("decress"), "decrees"), + (UniCase("subscribir"), "subscriber"), + (UniCase("crytopgraphic"), "cryptographic"), + (UniCase("watiers"), "waiters"), + (UniCase("htis"), "this"), + (UniCase("immedeatly"), "immediately"), + (UniCase("pasteurisation"), "pasteurization"), + (UniCase("prosecuter"), "prosecutor"), + (UniCase("incidentes"), "incidents"), + (UniCase("ellipsical"), "elliptical"), + (UniCase("impusles"), "impulses"), + (UniCase("definettly"), "definately"), + (UniCase("angluar"), "angular"), + (UniCase("decomposits"), "decomposes"), + (UniCase("resolvemos"), "resolves"), + (UniCase("chlesea"), "chelsea"), + (UniCase("htaching"), "hatching"), + (UniCase("newslatter"), "newsletter"), + (UniCase("overlaoded"), "overloaded"), + (UniCase("agravate"), "aggravate"), + (UniCase("cringeworhy"), "cringeworthy"), + (UniCase("interrups"), "interrupts"), + (UniCase("illuminatti"), "illuminati"), + (UniCase("rivarly"), "rivalry"), + (UniCase("seflishness"), "selfishness"), + (UniCase("corrolated"), "correlated"), + (UniCase("fundamentalista"), "fundamentals"), + (UniCase("fingerpints"), "fingertips"), + (UniCase("paladines"), "paladins"), + (UniCase("fraternisation"), "fraternization"), + (UniCase("definotely"), "definately"), + (UniCase("predecessores"), "predecessors"), + (UniCase("persucuted"), "persecuted"), + (UniCase("advirtisement"), "advertisement"), + (UniCase("catholisicm"), "catholicism"), + (UniCase("contestat"), "contestants"), + (UniCase("intoxicted"), "intoxicated"), + (UniCase("enligthening"), "enlightening"), + (UniCase("casltes"), "castles"), + (UniCase("secceeded"), "seceded"), + (UniCase("emphazises"), "emphasizes"), + (UniCase("blacksmitch"), "blacksmith"), + (UniCase("pacifit"), "pacifist"), + (UniCase("demonstartes"), "demonstrates"), + (UniCase("incomptetent"), "incompetent"), + (UniCase("automoblie"), "automobile"), + (UniCase("sourth"), "south"), + (UniCase("consumbales"), "consumables"), + (UniCase("referundum"), "referendum"), + (UniCase("ostrazised"), "ostracized"), + (UniCase("fragmanted"), "fragment"), + (UniCase("guardianes"), "guardians"), + (UniCase("troubelshooting"), "troubleshooting"), + (UniCase("stryofoam"), "styrofoam"), + (UniCase("lubircant"), "lubricant"), + (UniCase("missils"), "missiles"), + (UniCase("anticipatin"), "anticipation"), + (UniCase("respondas"), "responds"), + (UniCase("cerbreus"), "cerberus"), + (UniCase("governmential"), "governmental"), + (UniCase("ermington"), "remington"), + (UniCase("volunatrily"), "voluntarily"), + (UniCase("apartmens"), "apartments"), + (UniCase("condamnation"), "condemnation"), + (UniCase("apperantly"), "apparently"), + (UniCase("proficienct"), "proficient"), + (UniCase("squeakey"), "squeaky"), + (UniCase("unlikey"), "unlikely"), + (UniCase("decisiones"), "decisions"), + (UniCase("firmwear"), "firmware"), + (UniCase("economiclly"), "economically"), + (UniCase("barrells"), "barrels"), + (UniCase("comarde"), "comrade"), + (UniCase("primative"), "primitive"), + (UniCase("desicive"), "decisive"), + (UniCase("inacuraccies"), "inaccuracies"), + (UniCase("compulsorary"), "compulsory"), + (UniCase("shortining"), "shortening"), + (UniCase("recommondation"), "recommendation"), + (UniCase("mormonisim"), "mormonism"), + (UniCase("physcedelic"), "psychedelic"), + (UniCase("compositae"), "composite"), + (UniCase("adroable"), "adorable"), + (UniCase("selfeshness"), "selfishness"), + (UniCase("kingergarten"), "kindergarten"), + (UniCase("spellign"), "spelling"), + (UniCase("incremently"), "incremental"), + (UniCase("consolacion"), "consolation"), + (UniCase("spontaneoulsy"), "spontaneously"), + (UniCase("acknowlege"), "acknowledge"), + (UniCase("highschoool"), "highschool"), + (UniCase("nationalisties"), "nationalists"), + (UniCase("omnipitent"), "omnipotent"), + (UniCase("producting"), "production"), + (UniCase("programmeurs"), "programmer"), + (UniCase("conspiracys"), "conspiracies"), + (UniCase("phenemonal"), "phenomenal"), + (UniCase("perferences"), "preferences"), + (UniCase("eqaulity"), "equality"), + (UniCase("doublelit"), "doublelift"), + (UniCase("fucntional"), "functional"), + (UniCase("pointes"), "pointers"), + (UniCase("respektive"), "respective"), + (UniCase("candidats"), "candidates"), + (UniCase("physicis"), "physicians"), + (UniCase("jounralists"), "journalists"), + (UniCase("terminaron"), "terminator"), + (UniCase("coencidental"), "coincidental"), + (UniCase("courtrooom"), "courtroom"), + (UniCase("maltesian"), "maltese"), + (UniCase("marxisim"), "marxism"), + (UniCase("applicatons"), "applications"), + (UniCase("illumaniti"), "illuminati"), + (UniCase("destoryers"), "destroyers"), + (UniCase("inexpierenced"), "inexperienced"), + (UniCase("entreperure"), "entrepreneur"), + (UniCase("masturbaton"), "masturbation"), + (UniCase("cousines"), "cousins"), + (UniCase("corrosponding"), "corresponding"), + (UniCase("univerity"), "university"), + (UniCase("tyrranies"), "tyrannies"), + (UniCase("procedes"), "proceeds"), + (UniCase("haethen"), "heathen"), + (UniCase("strucutred"), "structured"), + (UniCase("fromerly"), "formerly"), + (UniCase("horizontallly"), "horizontally"), + (UniCase("infulences"), "influences"), + (UniCase("insurgance"), "insurgency"), + (UniCase("pestecides"), "pesticides"), + (UniCase("performens"), "performers"), + (UniCase("immersve"), "immerse"), + (UniCase("amercia"), "america"), + (UniCase("soundtraks"), "soundtracks"), + (UniCase("socialistes"), "socialists"), + (UniCase("pomotion"), "promotion"), + (UniCase("maked"), "marked"), + (UniCase("hesitstion"), "hesitation"), + (UniCase("edbiles"), "edibles"), + (UniCase("involentary"), "involuntary"), + (UniCase("cringeworthey"), "cringeworthy"), + (UniCase("designes"), "designs"), + (UniCase("desigining"), "designing"), + (UniCase("imrpove"), "improve"), + (UniCase("misspellled"), "misspelled"), + (UniCase("satisifed"), "satisfied"), + (UniCase("apprecitae"), "appreciates"), + (UniCase("silenty"), "silently"), + (UniCase("teeangers"), "teenagers"), + (UniCase("exhuastion"), "exhaustion"), + (UniCase("distirbuting"), "distributing"), + (UniCase("collecties"), "collects"), + (UniCase("superviosr"), "supervisors"), + (UniCase("edibels"), "edibles"), + (UniCase("shareholds"), "shareholders"), + (UniCase("parterned"), "partnered"), + (UniCase("portugues"), "portuguese"), + (UniCase("puritannical"), "puritanical"), + (UniCase("cielings"), "ceilings"), + (UniCase("pruposefully"), "purposefully"), + (UniCase("inexperiece"), "inexperience"), + (UniCase("stangant"), "stagnant"), + (UniCase("singpaore"), "singapore"), + (UniCase("institutionalisation"), "institutionalization"), + (UniCase("simulatore"), "simulate"), + (UniCase("monopilies"), "monopolies"), + (UniCase("wich"), "which"), + (UniCase("supporteurs"), "supporters"), + (UniCase("ocasional"), "occasional"), + (UniCase("develpoment"), "developments"), + (UniCase("comparte"), "compare"), + (UniCase("mininterpret"), "misinterpret"), + (UniCase("princesess"), "princesses"), + (UniCase("journalisitic"), "journalistic"), + (UniCase("companines"), "companions"), + (UniCase("integratie"), "integrated"), + (UniCase("argumentate"), "argumentative"), + (UniCase("misinterprate"), "misinterpret"), + (UniCase("demoninations"), "denominations"), + (UniCase("systamatic"), "systematic"), + (UniCase("extactly"), "exactly"), + (UniCase("competitve"), "competitive"), + (UniCase("objectivas"), "objectives"), + (UniCase("reigment"), "regiment"), + (UniCase("interaktion"), "interaction"), + (UniCase("keyboad"), "keyboard"), + (UniCase("refriderator"), "refrigerator"), + (UniCase("doublellift"), "doublelift"), + (UniCase("oposite"), "opposite"), + (UniCase("holocasut"), "holocaust"), + (UniCase("dishcarged"), "discharged"), + (UniCase("voluntered"), "volunteered"), + (UniCase("birthdaymas"), "birthdays"), + (UniCase("glorifierad"), "glorified"), + (UniCase("organizarem"), "organizer"), + (UniCase("unexperience"), "inexperience"), + (UniCase("realisticlly"), "realistically"), + (UniCase("fesiable"), "feasible"), + (UniCase("illnesess"), "illnesses"), + (UniCase("minimises"), "minimizes"), + (UniCase("hollywoood"), "hollywood"), + (UniCase("outisder"), "outsider"), + (UniCase("instabilty"), "instability"), + (UniCase("distribtuion"), "distributions"), + (UniCase("imporving"), "improving"), + (UniCase("overpowred"), "overpowered"), + (UniCase("currenlty"), "currently"), + (UniCase("scripturae"), "scriptures"), + (UniCase("gyspies"), "gypsies"), + (UniCase("platimun"), "platinum"), + (UniCase("stresss"), "stresses"), + (UniCase("anthromorphization"), "anthropomorphization"), + (UniCase("scholership"), "scholarship"), + (UniCase("colourfully"), "colorfully"), + (UniCase("parlaimentary"), "parliamentary"), + (UniCase("bcak"), "back"), + (UniCase("technicolour"), "technicolor"), + (UniCase("whislist"), "wishlist"), + (UniCase("proactivley"), "proactive"), + (UniCase("extint"), "extinct"), + (UniCase("disciplened"), "disciplined"), + (UniCase("objectivitiy"), "objectivity"), + (UniCase("repostd"), "reposted"), + (UniCase("diagnositcs"), "diagnostic"), + (UniCase("immortaly"), "immortality"), + (UniCase("manifacturers"), "manufacturers"), + (UniCase("realistc"), "realistic"), + (UniCase("colloqiual"), "colloquial"), + (UniCase("circumcison"), "circumcision"), + (UniCase("prevolence"), "prevalence"), + (UniCase("caterpilars"), "caterpillars"), + (UniCase("idealisation"), "idealization"), + (UniCase("spritual"), "spiritual"), + (UniCase("conceivablely"), "conceivably"), + (UniCase("contiunity"), "continuity"), + (UniCase("persecucion"), "persecution"), + (UniCase("gauntelt"), "gauntlet"), + (UniCase("intimidades"), "intimidated"), + (UniCase("complexety"), "complexity"), + (UniCase("alleigances"), "allegiance"), + (UniCase("cognizent"), "cognizant"), + (UniCase("packge"), "package"), + (UniCase("comptability"), "compatibility"), + (UniCase("differentiatiors"), "differentiation"), + (UniCase("indoctronated"), "indoctrinated"), + (UniCase("abandomnent"), "abandonment"), + (UniCase("relatation"), "relaxation"), + (UniCase("achiavable"), "achievable"), + (UniCase("incorperated"), "incorporated"), + (UniCase("qaulifications"), "qualification"), + (UniCase("acknowldegement"), "acknowledgement"), + (UniCase("photograhy"), "photography"), + (UniCase("sheilded"), "shielded"), + (UniCase("contreversy"), "controversy"), + (UniCase("intimidative"), "intimidate"), + (UniCase("repeteadly"), "repeatedly"), + (UniCase("inbetweeen"), "inbetween"), + (UniCase("simulatons"), "simulations"), + (UniCase("democracize"), "democracies"), + (UniCase("cinematograpy"), "cinematography"), + (UniCase("necessitites"), "necessities"), + (UniCase("invincil"), "invincible"), + (UniCase("hispter"), "hipster"), + (UniCase("ressits"), "resists"), + (UniCase("irritato"), "irritation"), + (UniCase("phenomonal"), "phenomenal"), + (UniCase("rememebr"), "remember"), + (UniCase("poignat"), "poignant"), + (UniCase("explicatie"), "explicit"), + (UniCase("adhevise"), "adhesive"), + (UniCase("contriction"), "contraction"), + (UniCase("substitite"), "substitute"), + (UniCase("hospitalzed"), "hospitalized"), + (UniCase("generatos"), "generators"), + (UniCase("dystpoian"), "dystopian"), + (UniCase("suposing"), "supposing"), + (UniCase("statictics"), "statistics"), + (UniCase("reiceved"), "recieved"), + (UniCase("subscirbed"), "subscribed"), + (UniCase("visiblly"), "visibly"), + (UniCase("charactor"), "character"), + (UniCase("concreet"), "concrete"), + (UniCase("respiratiory"), "respiratory"), + (UniCase("commandbox"), "commando"), + (UniCase("gunniess"), "guinness"), + (UniCase("boudler"), "boulder"), + (UniCase("westminser"), "westminster"), + (UniCase("turkisch"), "turkish"), + (UniCase("imrpovement"), "improvement"), + (UniCase("garfiled"), "garfield"), + (UniCase("collabore"), "collaborate"), + (UniCase("linguisitc"), "linguistics"), + (UniCase("benefitical"), "beneficial"), + (UniCase("donwgrade"), "downgrade"), + (UniCase("organizaed"), "organize"), + (UniCase("childerns"), "childrens"), + (UniCase("essentailly"), "essentially"), + (UniCase("cringewhorty"), "cringeworthy"), + (UniCase("consentrates"), "concentrates"), + (UniCase("sytle"), "style"), + (UniCase("expeced"), "expected"), + (UniCase("epiloge"), "epilogue"), + (UniCase("sypmathize"), "sympathize"), + (UniCase("unsubstantianted"), "unsubstantiated"), + (UniCase("huanted"), "haunted"), + (UniCase("arbitarily"), "arbitrarily"), + (UniCase("allegely"), "allegedly"), + (UniCase("victorieuse"), "victories"), + (UniCase("vasslas"), "vassals"), + (UniCase("ofcoures"), "ofcourse"), + (UniCase("plateua"), "plateau"), + (UniCase("verbalises"), "verbalizes"), + (UniCase("worshipper"), "worshiper"), + (UniCase("crytsal"), "crystal"), + (UniCase("ludricous"), "ludicrous"), + (UniCase("reevaulated"), "reevaluate"), + (UniCase("patrcik"), "patrick"), + (UniCase("incrementarla"), "incremental"), + (UniCase("wroet"), "wrote"), + (UniCase("lighlty"), "lightly"), + (UniCase("spectrail"), "spectral"), + (UniCase("harvestgain"), "harvesting"), + (UniCase("amphetimines"), "amphetamines"), + (UniCase("determinining"), "determining"), + (UniCase("dymanically"), "dynamically"), + (UniCase("debateable"), "debatable"), + (UniCase("concentrace"), "concentrate"), + (UniCase("inflatabe"), "inflatable"), + (UniCase("eligable"), "eligible"), + (UniCase("punishs"), "punishes"), + (UniCase("spendour"), "splendour"), + (UniCase("professionnals"), "professionals"), + (UniCase("exculdes"), "excludes"), + (UniCase("pedantisch"), "pedantic"), + (UniCase("artmeis"), "artemis"), + (UniCase("successfuly"), "successfully"), + (UniCase("physioligy"), "physiology"), + (UniCase("dinosuar"), "dinosaur"), + (UniCase("exclusie"), "exclusives"), + (UniCase("shitstom"), "shitstorm"), + (UniCase("limitating"), "limitation"), + (UniCase("millenialism"), "millennialism"), + (UniCase("deductiable"), "deductible"), + (UniCase("strenous"), "strenuous"), + (UniCase("buidlings"), "buildings"), + (UniCase("chronoligical"), "chronological"), + (UniCase("consequencies"), "consequence"), + (UniCase("spectre"), "specter"), + (UniCase("dissagreement"), "disagreement"), + (UniCase("businesse"), "businessmen"), + (UniCase("uncomitted"), "uncommitted"), + (UniCase("corinthinans"), "corinthians"), + (UniCase("democrates"), "democrats"), + (UniCase("spreadsheat"), "spreadsheet"), + (UniCase("partsian"), "partisan"), + (UniCase("practial"), "practical"), + (UniCase("brewerks"), "brewers"), + (UniCase("grpahic"), "graphic"), + (UniCase("storelines"), "storylines"), + (UniCase("mutatiohn"), "mutation"), + (UniCase("thorttling"), "throttling"), + (UniCase("insturment"), "instrument"), + (UniCase("ionise"), "ionize"), + (UniCase("devloved"), "devolved"), + (UniCase("shreak"), "shriek"), + (UniCase("ect"), "etc"), + (UniCase("continuons"), "continuous"), + (UniCase("aethists"), "atheists"), + (UniCase("sphereos"), "spheres"), + (UniCase("orientato"), "orientation"), + (UniCase("contenst"), "contents"), + (UniCase("rabbitos"), "rabbits"), + (UniCase("shakespeer"), "shakespeare"), + (UniCase("balckjack"), "blackjack"), + (UniCase("friendzies"), "friendlies"), + (UniCase("rectangulaire"), "rectangular"), + (UniCase("exorbirant"), "exorbitant"), + (UniCase("fragmenot"), "fragment"), + (UniCase("subtitels"), "subtitles"), + (UniCase("arrangerad"), "arranged"), + (UniCase("attemts"), "attempts"), + (UniCase("simplistes"), "simplest"), + (UniCase("perpetue"), "perpetuate"), + (UniCase("incarciration"), "incarceration"), + (UniCase("unconvencional"), "unconventional"), + (UniCase("unprofessionel"), "unprofessional"), + (UniCase("hedeghog"), "hedgehog"), + (UniCase("useing"), "using"), + (UniCase("caluses"), "clauses"), + (UniCase("extention"), "extension"), + (UniCase("exchnages"), "exchanges"), + (UniCase("pensino"), "pension"), + (UniCase("proponants"), "proponents"), + (UniCase("parmenas"), "parmesan"), + (UniCase("italianess"), "italians"), + (UniCase("differentiantion"), "differentiation"), + (UniCase("seziure"), "seizure"), + (UniCase("dravadian"), "dravidian"), + (UniCase("intimidade"), "intimidated"), + (UniCase("corretly"), "correctly"), + (UniCase("nationalisitc"), "nationalistic"), + (UniCase("overwealmed"), "overwhelmed"), + (UniCase("irrationallly"), "irrationally"), + (UniCase("cudgelling"), "cudgeling"), + (UniCase("excpetional"), "exceptional"), + (UniCase("decentralise"), "decentralize"), + (UniCase("pasteurise"), "pasteurize"), + (UniCase("alternativets"), "alternatives"), + (UniCase("insrugency"), "insurgency"), + (UniCase("numerious"), "numerous"), + (UniCase("extremers"), "extremes"), + (UniCase("impeckable"), "impeccable"), + (UniCase("recepient"), "recipient"), + (UniCase("docrtine"), "doctrine"), + (UniCase("explotiative"), "exploitative"), + (UniCase("centuty"), "century"), + (UniCase("reknown"), "renown"), + (UniCase("invertendo"), "inverted"), + (UniCase("deminsion"), "dimension"), + (UniCase("vulnurable"), "vulnerable"), + (UniCase("roganism"), "organism"), + (UniCase("developres"), "develops"), + (UniCase("politiness"), "politeness"), + (UniCase("mediocrety"), "mediocrity"), + (UniCase("thne"), "then"), + (UniCase("generatie"), "generate"), + (UniCase("guardains"), "guardians"), + (UniCase("propeties"), "properties"), + (UniCase("distrubutors"), "distributors"), + (UniCase("chtulhu"), "cthulhu"), + (UniCase("definaty"), "definately"), + (UniCase("discoved"), "discovered"), + (UniCase("districs"), "districts"), + (UniCase("procedger"), "procedure"), + (UniCase("categroized"), "categorized"), + (UniCase("accomplishements"), "accomplishments"), + (UniCase("statuer"), "stature"), + (UniCase("inresponsible"), "irresponsible"), + (UniCase("battailon"), "battalion"), + (UniCase("phenemenon"), "phenomenon"), + (UniCase("pathfidner"), "pathfinder"), + (UniCase("peninsual"), "peninsula"), + (UniCase("misdomeanor"), "misdemeanor"), + (UniCase("mathemetics"), "mathematics"), + (UniCase("celisus"), "celsius"), + (UniCase("substansive"), "substantive"), + (UniCase("formuals"), "formulas"), + (UniCase("beleagured"), "beleaguered"), + (UniCase("confrimed"), "confirmed"), + (UniCase("accomodated"), "accommodated"), + (UniCase("wellignton"), "wellington"), + (UniCase("waggon"), "wagon"), + (UniCase("investiagtion"), "investigation"), + (UniCase("refuelling"), "refueling"), + (UniCase("seniores"), "seniors"), + (UniCase("intrepreted"), "interpreted"), + (UniCase("disenginuous"), "disingenuous"), + (UniCase("trasnport"), "transport"), + (UniCase("redistribuito"), "redistribution"), + (UniCase("manipluate"), "manipulate"), + (UniCase("comaprable"), "comparable"), + (UniCase("playthtough"), "playthrough"), + (UniCase("officaly"), "officially"), + (UniCase("ecomonical"), "economical"), + (UniCase("capaciters"), "capacitors"), + (UniCase("apostrophies"), "apostrophe"), + (UniCase("seguoys"), "segues"), + (UniCase("recompence"), "recompense"), + (UniCase("disuptes"), "disputes"), + (UniCase("comparetive"), "comparative"), + (UniCase("caucasain"), "caucasian"), + (UniCase("areospace"), "aerospace"), + (UniCase("preferental"), "preferential"), + (UniCase("extensie"), "extensive"), + (UniCase("fountan"), "fountain"), + (UniCase("battlescar"), "battlestar"), + (UniCase("comissioner"), "commissioner"), + (UniCase("helikopter"), "helicopter"), + (UniCase("miracoulus"), "miraculous"), + (UniCase("hinudism"), "hinduism"), + (UniCase("negotiatiing"), "negotiating"), + (UniCase("reformerad"), "reformed"), + (UniCase("gunsligner"), "gunslinger"), + (UniCase("transicional"), "transitional"), + (UniCase("reciding"), "residing"), + (UniCase("mathwes"), "mathews"), + (UniCase("ligthers"), "lighters"), + (UniCase("qualificaton"), "qualification"), + (UniCase("rhythem"), "rhythm"), + (UniCase("algoritmos"), "algorithms"), + (UniCase("elcipse"), "eclipse"), + (UniCase("innoculated"), "inoculated"), + (UniCase("manufactores"), "manufactures"), + (UniCase("mosquitto"), "mosquito"), + (UniCase("superivsor"), "supervisors"), + (UniCase("thunderbots"), "thunderbolt"), + (UniCase("quereis"), "queries"), + (UniCase("cutsceens"), "cutscenes"), + (UniCase("simpathizers"), "sympathizers"), + (UniCase("rephrasse"), "rephrase"), + (UniCase("flexbile"), "flexible"), + (UniCase("occasionnal"), "occasional"), + (UniCase("plastis"), "plastics"), + (UniCase("consolitated"), "consolidate"), + (UniCase("storeis"), "stories"), + (UniCase("processs"), "processes"), + (UniCase("materialsm"), "materialism"), + (UniCase("prophacy"), "prophecy"), + (UniCase("efficeint"), "efficient"), + (UniCase("exauhsting"), "exhausting"), + (UniCase("opthalmologist"), "ophthalmologist"), + (UniCase("shineing"), "shining"), + (UniCase("perfomance"), "performance"), + (UniCase("microtransacitons"), "microtransactions"), + (UniCase("cuatiously"), "cautiously"), + (UniCase("constuction"), "construction"), + (UniCase("staidum"), "stadium"), + (UniCase("continuuing"), "continuing"), + (UniCase("parises"), "praises"), + (UniCase("producerats"), "producers"), + (UniCase("witn"), "with"), + (UniCase("vulnerabile"), "vulnerable"), + (UniCase("corresponsing"), "corresponding"), + (UniCase("louisivlle"), "louisville"), + (UniCase("offred"), "offered"), + (UniCase("feministers"), "feminists"), + (UniCase("unbelievibly"), "unbelievably"), + (UniCase("hyperbel"), "hyperbole"), + (UniCase("progressoin"), "progressions"), + (UniCase("persepctives"), "perspectives"), + (UniCase("unneccesarily"), "unnecessarily"), + (UniCase("achievemnts"), "achievements"), + (UniCase("determinisic"), "deterministic"), + (UniCase("disclipined"), "disciplined"), + (UniCase("borderlanders"), "borderlands"), + (UniCase("litterally"), "literally"), + (UniCase("ingrediets"), "ingredient"), + (UniCase("lighnting"), "lightning"), + (UniCase("indisputibly"), "indisputably"), + (UniCase("infrastructre"), "infrastructure"), + (UniCase("unorganised"), "unorganized"), + (UniCase("subjectivelly"), "subjectively"), + (UniCase("divideneds"), "dividend"), + (UniCase("vegetarion"), "vegetarian"), + (UniCase("categoriezed"), "categorized"), + (UniCase("mininalist"), "minimalist"), + (UniCase("asthetic"), "aesthetic"), + (UniCase("contaminato"), "contamination"), + (UniCase("memorialised"), "memorialized"), + (UniCase("meatbals"), "meatballs"), + (UniCase("bangledash"), "bangladesh"), + (UniCase("lifestiles"), "lifestyles"), + (UniCase("inconveniance"), "inconvenience"), + (UniCase("miluwakee"), "milwaukee"), + (UniCase("exceedinly"), "exceedingly"), + (UniCase("signalise"), "signalize"), + (UniCase("microtransations"), "microtransactions"), + (UniCase("accepterad"), "accepted"), + (UniCase("fraudulant"), "fraudulent"), + (UniCase("formalhaut"), "fomalhaut"), + (UniCase("intruiged"), "intrigued"), + (UniCase("frequeny"), "frequency"), + (UniCase("managebale"), "manageable"), + (UniCase("mascarra"), "mascara"), + (UniCase("enviornmentalist"), "environmentalist"), + (UniCase("reciever"), "receiver"), + (UniCase("heavilly"), "heavily"), + (UniCase("happenes"), "happens"), + (UniCase("synthesiser"), "synthesizer"), + (UniCase("distrubutor"), "distributor"), + (UniCase("probablies"), "probable"), + (UniCase("adolence"), "adolescent"), + (UniCase("succedes"), "succeeds"), + (UniCase("paranoa"), "paranoia"), + (UniCase("extravagina"), "extravagant"), + (UniCase("personilized"), "personalized"), + (UniCase("accelarated"), "accelerated"), + (UniCase("propaganada"), "propaganda"), + (UniCase("predescesor"), "predecessors"), + (UniCase("mathematicion"), "mathematician"), + (UniCase("cheeseburgare"), "cheeseburger"), + (UniCase("austira"), "austria"), + (UniCase("subscribber"), "subscriber"), + (UniCase("infiltre"), "infiltrate"), + (UniCase("randomising"), "randomizing"), + (UniCase("straigthen"), "straighten"), + (UniCase("requierments"), "requirements"), + (UniCase("perceded"), "preceded"), + (UniCase("nationalit"), "nationalist"), + (UniCase("existane"), "existance"), + (UniCase("satisfaccion"), "satisfaction"), + (UniCase("densly"), "densely"), + (UniCase("donwloaded"), "downloaded"), + (UniCase("materialisimo"), "materialism"), + (UniCase("technologicially"), "technologically"), + (UniCase("distration"), "distortion"), + (UniCase("eyasr"), "years"), + (UniCase("phenemona"), "phenomena"), + (UniCase("conversare"), "converse"), + (UniCase("invloved"), "involved"), + (UniCase("forntpage"), "frontpage"), + (UniCase("compednium"), "compendium"), + (UniCase("teamfighs"), "teamfights"), + (UniCase("indicatiors"), "indicators"), + (UniCase("revelutionary"), "revolutionary"), + (UniCase("constituite"), "constitute"), + (UniCase("pornograhpy"), "pornography"), + (UniCase("colours"), "colors"), + (UniCase("authorised"), "authorized"), + (UniCase("isdefinitely"), "indefinitely"), + (UniCase("discograhy"), "discography"), + (UniCase("pennslyvania"), "pennsylvania"), + (UniCase("fundemental"), "fundamental"), + (UniCase("monarcy"), "monarchy"), + (UniCase("resoultion"), "resolution"), + (UniCase("environmnet"), "environments"), + (UniCase("cursade"), "crusade"), + (UniCase("refelctive"), "reflective"), + (UniCase("specialice"), "specialize"), + (UniCase("yorkshie"), "yorkshire"), + (UniCase("laboured"), "labored"), + (UniCase("exclusiveity"), "exclusivity"), + (UniCase("uncontrollaby"), "uncontrollably"), + (UniCase("shcizophrenic"), "schizophrenic"), + (UniCase("palesitnians"), "palestinians"), + (UniCase("circulationg"), "circulating"), + (UniCase("interpretare"), "interpreter"), + (UniCase("prototpye"), "prototype"), + (UniCase("requiers"), "requires"), + (UniCase("represantative"), "representative"), + (UniCase("reneagde"), "renegade"), + (UniCase("infiltratred"), "infiltrate"), + (UniCase("testicel"), "testicle"), + (UniCase("moistutizer"), "moisturizer"), + (UniCase("fallatious"), "fallacious"), + (UniCase("hapmshire"), "hampshire"), + (UniCase("verbalised"), "verbalized"), + (UniCase("pedohpilia"), "pedophilia"), + (UniCase("seventen"), "seventeen"), + (UniCase("mordibly"), "morbidly"), + (UniCase("extemely"), "extremely"), + (UniCase("massivley"), "massively"), + (UniCase("dysfunciton"), "dysfunction"), + (UniCase("exlcusivity"), "exclusivity"), + (UniCase("incompetentence"), "incompetence"), + (UniCase("mothreboard"), "motherboards"), + (UniCase("earthquacks"), "earthquakes"), + (UniCase("broacasted"), "broadcast"), + (UniCase("precausion"), "precaution"), + (UniCase("cruicble"), "crucible"), + (UniCase("cheslea"), "chelsea"), + (UniCase("pharmicist"), "pharmacist"), + (UniCase("misdameanor"), "misdemeanor"), + (UniCase("incoherrent"), "incoherent"), + (UniCase("loreplay"), "roleplay"), + (UniCase("inexperiecned"), "inexperience"), + (UniCase("perpertator"), "perpetrators"), + (UniCase("commisison"), "commissions"), + (UniCase("ineffizient"), "inefficient"), + (UniCase("explenations"), "explanations"), + (UniCase("sattelite"), "satellite"), + (UniCase("investigstions"), "investigations"), + (UniCase("defintion"), "definition"), + (UniCase("afforadble"), "affordable"), + (UniCase("ejacualtions"), "ejaculation"), + (UniCase("shirely"), "shirley"), + (UniCase("treatis"), "treaties"), + (UniCase("cataloguing"), "cataloging"), + (UniCase("theocracry"), "theocracy"), + (UniCase("hydropobic"), "hydrophobic"), + (UniCase("illistration"), "illustration"), + (UniCase("straightforwad"), "straightforward"), + (UniCase("parasitter"), "parasite"), + (UniCase("endeavoured"), "endeavored"), + (UniCase("stricty"), "strictly"), + (UniCase("alternater"), "alternator"), + (UniCase("positiviy"), "positivity"), + (UniCase("encyclepedia"), "encyclopedia"), + (UniCase("proselytise"), "proselytize"), + (UniCase("dictaters"), "dictates"), + (UniCase("supermare"), "supermarket"), + (UniCase("improsoned"), "imprisoned"), + (UniCase("trianwreck"), "trainwreck"), + (UniCase("bitcion"), "bitcoin"), + (UniCase("proportionallly"), "proportionally"), + (UniCase("denomenation"), "denomination"), + (UniCase("semseters"), "semesters"), + (UniCase("manuver"), "maneuver"), + (UniCase("rebuplic"), "republic"), + (UniCase("teh"), "the"), + (UniCase("feminint"), "femininity"), + (UniCase("retireds"), "retires"), + (UniCase("circimcised"), "circumcised"), + (UniCase("traditionaly"), "traditionally"), + (UniCase("acclimatising"), "acclimatizing"), + (UniCase("accelarate"), "accelerate"), + (UniCase("assistanse"), "assistants"), + (UniCase("convaluted"), "convoluted"), + (UniCase("narcissim"), "narcissism"), + (UniCase("expensie"), "expense"), + (UniCase("hosthot"), "hotshot"), + (UniCase("caost"), "coast"), + (UniCase("residule"), "residue"), + (UniCase("oublisher"), "publisher"), + (UniCase("psychologysts"), "psychologists"), + (UniCase("suspisions"), "suspicions"), + (UniCase("specailist"), "specialist"), + (UniCase("integratron"), "integration"), + (UniCase("emphazising"), "emphasizing"), + (UniCase("prosperety"), "prosperity"), + (UniCase("advantagious"), "advantageous"), + (UniCase("scandinavan"), "scandinavian"), + (UniCase("docrtines"), "doctrines"), + (UniCase("controversary"), "controversy"), + (UniCase("caricate"), "caricature"), + (UniCase("boyfreind"), "boyfriend"), + (UniCase("aspergerers"), "aspergers"), + (UniCase("herclues"), "hercules"), + (UniCase("capitolist"), "capitalist"), + (UniCase("pricinpals"), "principals"), + (UniCase("mindlessy"), "mindlessly"), + (UniCase("customzied"), "customized"), + (UniCase("sandales"), "sandals"), + (UniCase("absense"), "absence"), + (UniCase("multiplikation"), "multiplication"), + (UniCase("photogropher"), "photographer"), + (UniCase("traumitized"), "traumatized"), + (UniCase("infiltrater"), "infiltrator"), + (UniCase("caluclated"), "calculated"), + (UniCase("backpakcs"), "backpacks"), + (UniCase("comparsions"), "comparisons"), + (UniCase("procrastinaton"), "procrastination"), + (UniCase("explanaiton"), "explanations"), + (UniCase("equilavents"), "equivalents"), + (UniCase("carbohidrates"), "carbohydrates"), + (UniCase("overwhelmigly"), "overwhelmingly"), + (UniCase("supplament"), "supplement"), + (UniCase("ansalization"), "nasalization"), + (UniCase("consitution"), "constitution"), + (UniCase("obersvations"), "observations"), + (UniCase("carefull"), "careful"), + (UniCase("parisitic"), "parasitic"), + (UniCase("introvertie"), "introverted"), + (UniCase("threefor"), "therefor"), + (UniCase("threatining"), "threatening"), + (UniCase("intelligient"), "intelligent"), + (UniCase("adolescant"), "adolescent"), + (UniCase("responsbile"), "responsible"), + (UniCase("disruptin"), "disruption"), + (UniCase("frankenstine"), "frankenstein"), + (UniCase("hegdehog"), "hedgehog"), + (UniCase("teloportation"), "teleportation"), + (UniCase("passionatley"), "passionately"), + (UniCase("nefarios"), "nefarious"), + (UniCase("terminales"), "terminals"), + (UniCase("threatend"), "threatened"), + (UniCase("ipubrofen"), "ibuprofen"), + (UniCase("africaness"), "africans"), + (UniCase("espianoge"), "espionage"), + (UniCase("wishpers"), "whispers"), + (UniCase("buhddism"), "buddhism"), + (UniCase("affliated"), "affiliated"), + (UniCase("caffeinne"), "caffeine"), + (UniCase("accidantly"), "accidently"), + (UniCase("phillipse"), "phillies"), + (UniCase("resturaunts"), "restaurants"), + (UniCase("monopolice"), "monopolies"), + (UniCase("perpenticular"), "perpendicular"), + (UniCase("necromacer"), "necromancer"), + (UniCase("cannibalised"), "cannibalized"), + (UniCase("concervative"), "conservative"), + (UniCase("liberalizm"), "liberalism"), + (UniCase("foreingers"), "foreigners"), + (UniCase("dividened"), "dividend"), + (UniCase("infiltratie"), "infiltrate"), + (UniCase("govermenet"), "goverment"), + (UniCase("emabrassing"), "embarassing"), + (UniCase("reposotory"), "repository"), + (UniCase("scenarious"), "scenarios"), + (UniCase("pateints"), "patients"), + (UniCase("tomatos"), "tomatoes"), + (UniCase("ridicilous"), "ridiculous"), + (UniCase("amoung"), "among"), + (UniCase("futurisitic"), "futuristic"), + (UniCase("terminarla"), "terminal"), + (UniCase("cannibaljim"), "cannibalism"), + (UniCase("demonstraties"), "demonstrate"), + (UniCase("galvanising"), "galvanizing"), + (UniCase("uncontitutional"), "unconstitutional"), + (UniCase("ressurection"), "resurrection"), + (UniCase("amphetmaine"), "amphetamines"), + (UniCase("balconny"), "balcony"), + (UniCase("behaivors"), "behaviors"), + (UniCase("bankrupcy"), "bankruptcy"), + (UniCase("lithuana"), "lithuania"), + (UniCase("unsubscrible"), "unsubscribed"), + (UniCase("fundamentalismos"), "fundamentalists"), + (UniCase("dynsaty"), "dynasty"), + (UniCase("establising"), "establishing"), + (UniCase("cancellato"), "cancellation"), + (UniCase("jewelled"), "jeweled"), + (UniCase("mecahnisms"), "mechanisms"), + (UniCase("expropiation"), "expropriation"), + (UniCase("ahtiest"), "athiest"), + (UniCase("terratories"), "territories"), + (UniCase("substanse"), "substances"), + (UniCase("perputrators"), "perpetrators"), + (UniCase("surley"), "surly"), + (UniCase("enterpreuners"), "entrepreneurs"), + (UniCase("permanentely"), "permanently"), + (UniCase("cologen"), "cologne"), + (UniCase("savouring"), "savoring"), + (UniCase("vegetarianos"), "vegetarians"), + (UniCase("positivs"), "positives"), + (UniCase("motnage"), "montage"), + (UniCase("southernerns"), "southerners"), + (UniCase("indoensian"), "indonesian"), + (UniCase("technologial"), "technological"), + (UniCase("dictionairy"), "dictionary"), + (UniCase("agregates"), "aggregates"), + (UniCase("legendariske"), "legendaries"), + (UniCase("domisticated"), "domesticated"), + (UniCase("prosecuters"), "prosecutors"), + (UniCase("degradead"), "degraded"), + (UniCase("inapporpriately"), "inappropriately"), + (UniCase("quailfy"), "qualify"), + (UniCase("interacte"), "interactive"), + (UniCase("nigthlife"), "nightlife"), + (UniCase("periphiral"), "peripheral"), + (UniCase("shtiless"), "shitless"), + (UniCase("reniassance"), "renaissance"), + (UniCase("intriniscally"), "intrinsically"), + (UniCase("succeds"), "succeeds"), + (UniCase("recommeded"), "recommended"), + (UniCase("bueraucracy"), "bureaucracy"), + (UniCase("accelerato"), "acceleration"), + (UniCase("immidiately"), "immediately"), + (UniCase("thunderbot"), "thunderbolt"), + (UniCase("initaitives"), "initiatives"), + (UniCase("tequlia"), "tequila"), + (UniCase("polutes"), "pollutes"), + (UniCase("facitilies"), "facilities"), + (UniCase("asperges"), "aspergers"), + (UniCase("coordinacion"), "coordination"), + (UniCase("concsious"), "conscious"), + (UniCase("freesytle"), "freestyle"), + (UniCase("squirrelius"), "squirrels"), + (UniCase("democratisation"), "democratization"), + (UniCase("wreckign"), "wrecking"), + (UniCase("wahtever"), "whatever"), + (UniCase("miscellanous"), "miscellaneous"), + (UniCase("nightmarket"), "nightmare"), + (UniCase("intimitate"), "intimidate"), + (UniCase("sympethetic"), "sympathetic"), + (UniCase("regretts"), "regrets"), + (UniCase("politican"), "politician"), + (UniCase("instituto"), "institution"), + (UniCase("uncensord"), "uncensored"), + (UniCase("infograhic"), "infographic"), + (UniCase("signfiy"), "signify"), + (UniCase("containig"), "containing"), + (UniCase("realoding"), "reloading"), + (UniCase("naturens"), "natures"), + (UniCase("discogrophy"), "discography"), + (UniCase("prominenty"), "prominently"), + (UniCase("trafficed"), "trafficked"), + (UniCase("reclami"), "reclaim"), + (UniCase("mushrooom"), "mushroom"), + (UniCase("encylopedia"), "encyclopedia"), + (UniCase("cropses"), "corpses"), + (UniCase("wolrdview"), "worldview"), + (UniCase("mysogynist"), "misogynist"), + (UniCase("posessed"), "possessed"), + (UniCase("disproportiate"), "disproportionate"), + (UniCase("micrpohone"), "microphones"), + (UniCase("upgarde"), "upgrade"), + (UniCase("scarificed"), "sacrificed"), + (UniCase("asiprin"), "aspirin"), + (UniCase("disappiont"), "disappoint"), + (UniCase("subcouncious"), "subconscious"), + (UniCase("bullest"), "bullets"), + (UniCase("personalites"), "personalities"), + (UniCase("savannh"), "savannah"), + (UniCase("vibratoare"), "vibrator"), + (UniCase("specialzes"), "specializes"), + (UniCase("intutively"), "intuitively"), + (UniCase("simplivity"), "simplicity"), + (UniCase("preisthood"), "priesthood"), + (UniCase("asethetic"), "aesthetic"), + (UniCase("infinitley"), "infinitely"), + (UniCase("disaapoint"), "disappoint"), + (UniCase("counsellors"), "counselors"), + (UniCase("exaggeratin"), "exaggeration"), + (UniCase("incentivies"), "incentives"), + (UniCase("moulders"), "molders"), + (UniCase("anaylses"), "analyses"), + (UniCase("apostrephe"), "apostrophe"), + (UniCase("unvulnerable"), "invulnerable"), + (UniCase("inappropriatelly"), "inappropriately"), + (UniCase("overlooming"), "overlooking"), + (UniCase("counseil"), "counsel"), + (UniCase("guniness"), "guinness"), + (UniCase("supervisores"), "supervisors"), + (UniCase("brusseles"), "brussels"), + (UniCase("abritrarily"), "arbitrarily"), + (UniCase("terriroties"), "territories"), + (UniCase("enceclopedia"), "encyclopedia"), + (UniCase("tantalising"), "tantalizing"), + (UniCase("bloodbrone"), "bloodborne"), + (UniCase("advatange"), "advantage"), + (UniCase("plausibe"), "plausible"), + (UniCase("univesity"), "university"), + (UniCase("snippes"), "snippets"), + (UniCase("programmar"), "programmer"), + (UniCase("agressvie"), "agressive"), + (UniCase("galcier"), "glacier"), + (UniCase("gigaybte"), "gigabyte"), + (UniCase("enviormental"), "environmental"), + (UniCase("hypocrytical"), "hypocritical"), + (UniCase("whtielist"), "whitelist"), + (UniCase("sunscren"), "sunscreen"), + (UniCase("enterprenuers"), "entrepreneurs"), + (UniCase("hydropobe"), "hydrophobe"), + (UniCase("brocoli"), "broccoli"), + (UniCase("downvotr"), "downvoters"), + (UniCase("effordlessly"), "effortlessly"), + (UniCase("penerator"), "penetrator"), + (UniCase("playright"), "playwright"), + (UniCase("percente"), "percentile"), + (UniCase("natrually"), "naturally"), + (UniCase("aluminim"), "aluminium"), + (UniCase("narcississt"), "narcissist"), + (UniCase("physisict"), "physicist"), + (UniCase("coincedental"), "coincidental"), + (UniCase("refelcted"), "reflected"), + (UniCase("correspondece"), "correspondence"), + (UniCase("conservanti"), "conservation"), + (UniCase("shleters"), "shelters"), + (UniCase("soveriegn"), "sovereign"), + (UniCase("reaserchers"), "researchers"), + (UniCase("fundamentalistiska"), "fundamentalists"), + (UniCase("binominal"), "binomial"), + (UniCase("portoguese"), "portuguese"), + (UniCase("demilitarisation"), "demilitarization"), + (UniCase("catepillar"), "caterpillar"), + (UniCase("steathly"), "stealthy"), + (UniCase("neutralise"), "neutralize"), + (UniCase("elementay"), "elementary"), + (UniCase("watchign"), "watching"), + (UniCase("unprone"), "unproven"), + (UniCase("trudnle"), "trundle"), + (UniCase("intertwinded"), "intertwined"), + (UniCase("subsricption"), "subscriptions"), + (UniCase("eyebals"), "eyeballs"), + (UniCase("wholeheartely"), "wholeheartedly"), + (UniCase("juggernaunt"), "juggernaut"), + (UniCase("remarkablly"), "remarkably"), + (UniCase("swaers"), "swears"), + (UniCase("presidencial"), "presidential"), + (UniCase("trasnmitted"), "transmitted"), + (UniCase("accumule"), "accumulate"), + (UniCase("catalysing"), "catalyzing"), + (UniCase("mutliply"), "multiply"), + (UniCase("headquaters"), "headquarters"), + (UniCase("sanctiond"), "sanctioned"), + (UniCase("incgonito"), "incognito"), + (UniCase("magnifine"), "magnificent"), + (UniCase("protagonits"), "protagonists"), + (UniCase("cartrigde"), "cartridge"), + (UniCase("conclussive"), "conclusive"), + (UniCase("casulaties"), "casualties"), + (UniCase("necesary"), "necessary"), + (UniCase("delegatie"), "delegate"), + (UniCase("palestein"), "palestine"), + (UniCase("distingquished"), "distinguished"), + (UniCase("pornograpy"), "pornography"), + (UniCase("reconnaisance"), "reconnaissance"), + (UniCase("rationalizating"), "rationalization"), + (UniCase("mirrord"), "mirrored"), + (UniCase("physicits"), "physicist"), + (UniCase("originially"), "originally"), + (UniCase("reversable"), "reversible"), + (UniCase("benefitial"), "beneficial"), + (UniCase("undoubtadly"), "undoubtedly"), + (UniCase("gospells"), "gospels"), + (UniCase("senisble"), "sensible"), + (UniCase("photograps"), "photographs"), + (UniCase("proftiable"), "profitable"), + (UniCase("erroenous"), "erroneous"), + (UniCase("spontaneos"), "spontaneous"), + (UniCase("westbroook"), "westbrook"), + (UniCase("literarly"), "literary"), + (UniCase("continously"), "continuously"), + (UniCase("conferene"), "conferences"), + (UniCase("realtive"), "relative"), + (UniCase("transplat"), "transplant"), + (UniCase("unnecessarilly"), "unnecessarily"), + (UniCase("publikation"), "publication"), + (UniCase("compliations"), "compilation"), + (UniCase("convertirea"), "converter"), + (UniCase("allopone"), "allophone"), + (UniCase("absolutelys"), "absolutes"), + (UniCase("simulatie"), "simulate"), + (UniCase("forsekin"), "foreskin"), + (UniCase("coputer"), "computer"), + (UniCase("traumetized"), "traumatized"), + (UniCase("socttish"), "scottish"), + (UniCase("uncomfertable"), "uncomfortable"), + (UniCase("pittaburgh"), "pittsburgh"), + (UniCase("philosohpical"), "philosophical"), + (UniCase("perverst"), "pervert"), + (UniCase("definltely"), "definately"), + (UniCase("orgainzer"), "organizer"), + (UniCase("inadaquete"), "inadequate"), + (UniCase("compteting"), "completing"), + (UniCase("forhead"), "forehead"), + (UniCase("mysteriosly"), "mysteriously"), + (UniCase("competion"), "competition"), + (UniCase("disrepsect"), "disrespect"), + (UniCase("manipulationg"), "manipulating"), + (UniCase("commericals"), "commercials"), + (UniCase("kentucy"), "kentucky"), + (UniCase("sensibilites"), "sensibilities"), + (UniCase("inherintly"), "inherently"), + (UniCase("bubblews"), "bubbles"), + (UniCase("platfotmer"), "platformer"), + (UniCase("treausres"), "treasures"), + (UniCase("violatin"), "violation"), + (UniCase("mosnters"), "monsters"), + (UniCase("clarinettists"), "clarinetists"), + (UniCase("hyperbollic"), "hyperbolic"), + (UniCase("proficientcy"), "proficiency"), + (UniCase("netural"), "neutral"), + (UniCase("govormental"), "governmental"), + (UniCase("destinationhash"), "destinations"), + (UniCase("claculator"), "calculator"), + (UniCase("sometinh"), "somethin"), + (UniCase("ventelation"), "ventilation"), + (UniCase("horizontaly"), "horizontally"), + (UniCase("playthrougs"), "playthroughs"), + (UniCase("referenses"), "referees"), + (UniCase("dissapoited"), "dissapointed"), + (UniCase("vell"), "well"), + (UniCase("experimantal"), "experimental"), + (UniCase("communicatie"), "communicate"), + (UniCase("hystericaly"), "hysterically"), + (UniCase("percious"), "precious"), + (UniCase("obamination"), "abomination"), + (UniCase("conceps"), "concepts"), + (UniCase("insturcted"), "instructed"), + (UniCase("unhealthly"), "unhealthy"), + (UniCase("attractin"), "attraction"), + (UniCase("donig"), "doing"), + (UniCase("proceededs"), "proceeds"), + (UniCase("roganisms"), "organisms"), + (UniCase("frustrants"), "frustrates"), + (UniCase("reviewtrue"), "reviewer"), + (UniCase("auttoatack"), "autoattack"), + (UniCase("panthen"), "pantheon"), + (UniCase("unwarrented"), "unwarranted"), + (UniCase("termanator"), "terminator"), + (UniCase("alcoholsim"), "alcoholism"), + (UniCase("candidiate"), "candidate"), + (UniCase("vulnarable"), "vulnerable"), + (UniCase("therepeutic"), "therapeutic"), + (UniCase("magneisum"), "magnesium"), + (UniCase("comradets"), "comrades"), + (UniCase("prestes"), "presets"), + (UniCase("additivley"), "additive"), + (UniCase("expolsions"), "explosions"), + (UniCase("relapes"), "relapse"), + (UniCase("percetnage"), "percentages"), + (UniCase("percenatge"), "percentages"), + (UniCase("baptsim"), "baptism"), + (UniCase("clifthanger"), "cliffhanger"), + (UniCase("impossiblly"), "impossibly"), + (UniCase("legitemate"), "legitimate"), + (UniCase("triology"), "trilogy"), + (UniCase("contineous"), "continuous"), + (UniCase("objectivst"), "objectives"), + (UniCase("tremondously"), "tremendously"), + (UniCase("cheesebruger"), "cheeseburgers"), + (UniCase("accessorises"), "accessorizes"), + (UniCase("condolencies"), "condolences"), + (UniCase("narssicistic"), "narcissistic"), + (UniCase("decipting"), "depicting"), + (UniCase("righetous"), "righteous"), + (UniCase("andorid"), "android"), + (UniCase("capicators"), "capacitors"), + (UniCase("demographis"), "demographics"), + (UniCase("incompitent"), "incompetent"), + (UniCase("barvery"), "bravery"), + (UniCase("noth"), "north"), + (UniCase("calcualtor"), "calculator"), + (UniCase("bachleors"), "bachelors"), + (UniCase("crigneworthy"), "cringeworthy"), + (UniCase("acadamy"), "academy"), + (UniCase("staright"), "straight"), + (UniCase("accordian"), "accordion"), + (UniCase("transisioning"), "transitioning"), + (UniCase("pattened"), "patented"), + (UniCase("xenobalde"), "xenoblade"), + (UniCase("exclusivley"), "exclusively"), + (UniCase("existant"), "existent"), + (UniCase("personnell"), "personnel"), + (UniCase("stubmled"), "stumbled"), + (UniCase("fedorahs"), "fedoras"), + (UniCase("inexperince"), "inexperience"), + (UniCase("millilitres"), "milliliters"), + (UniCase("simposn"), "simpson"), + (UniCase("varities"), "varieties"), + (UniCase("pepperin"), "pepperoni"), + (UniCase("tast"), "taste"), + (UniCase("cultrually"), "culturally"), + (UniCase("orthopaedics"), "orthopedics"), + (UniCase("denominatior"), "denominator"), + (UniCase("compeittion"), "competitions"), + (UniCase("neighbour"), "neighbor"), + (UniCase("straightner"), "straighten"), + (UniCase("contradices"), "contradicts"), + (UniCase("immunisation"), "immunization"), + (UniCase("unrealitic"), "unrealistic"), + (UniCase("gaurantees"), "guarantees"), + (UniCase("thryoid"), "thyroid"), + (UniCase("advantageus"), "advantageous"), + (UniCase("infilitration"), "infiltration"), + (UniCase("veganisim"), "veganism"), + (UniCase("conservativo"), "conservation"), + (UniCase("procotol"), "protocol"), + (UniCase("daulity"), "duality"), + (UniCase("voilating"), "violating"), + (UniCase("uncontrollablly"), "uncontrollably"), + (UniCase("algorithsm"), "algorithms"), + (UniCase("reponsible"), "responsible"), + (UniCase("photoshoppade"), "photoshopped"), + (UniCase("chromose"), "chromosome"), + (UniCase("receving"), "receiving"), + (UniCase("vernecular"), "vernacular"), + (UniCase("experimintation"), "experimentation"), + (UniCase("cincinnasti"), "cincinnati"), + (UniCase("tailgatting"), "tailgating"), + (UniCase("efficienctly"), "efficiency"), + (UniCase("bordeom"), "boredom"), + (UniCase("empolyees"), "employees"), + (UniCase("expressview"), "expressive"), + (UniCase("trasnphobic"), "transphobic"), + (UniCase("perfeclty"), "perfectly"), + (UniCase("predominantely"), "predominantly"), + (UniCase("quartlery"), "quarterly"), + (UniCase("metropolies"), "metropolis"), + (UniCase("gunsiinger"), "gunslinger"), + (UniCase("affiars"), "affairs"), + (UniCase("apolegetics"), "apologetics"), + (UniCase("frightining"), "frightening"), + (UniCase("fanatsy"), "fantasy"), + (UniCase("bandwagoon"), "bandwagon"), + (UniCase("responsibile"), "responsible"), + (UniCase("trendig"), "trending"), + (UniCase("spitirually"), "spiritually"), + (UniCase("destrucive"), "destructive"), + (UniCase("forgeiners"), "foreigners"), + (UniCase("outsoursing"), "outsourcing"), + (UniCase("mercentile"), "mercantile"), + (UniCase("completley"), "completely"), + (UniCase("dirvers"), "drivers"), + (UniCase("ariborne"), "airborne"), + (UniCase("massachuestts"), "massachusetts"), + (UniCase("enviormentally"), "environmentally"), + (UniCase("intelligenly"), "intelligently"), + (UniCase("capitas"), "capitals"), + (UniCase("pressureing"), "pressuring"), + (UniCase("adviced"), "advised"), + (UniCase("unicors"), "unicorns"), + (UniCase("experieces"), "experiences"), + (UniCase("recommened"), "recommend"), + (UniCase("claymer"), "claymore"), + (UniCase("pretection"), "protection"), + (UniCase("buddisht"), "buddhist"), + (UniCase("oestrogen"), "estrogen"), + (UniCase("obliteraded"), "obliterated"), + (UniCase("mounment"), "monument"), + (UniCase("straitforward"), "straightforward"), + (UniCase("argentinia"), "argentina"), + (UniCase("uncousciously"), "unconsciously"), + (UniCase("whietlist"), "whitelist"), + (UniCase("househols"), "households"), + (UniCase("incpetion"), "inception"), + (UniCase("qauntum"), "quantum"), + (UniCase("ambiguitiy"), "ambiguity"), + (UniCase("importd"), "imported"), + (UniCase("geneology"), "genealogy"), + (UniCase("implemetnation"), "implementations"), + (UniCase("designet"), "designated"), + (UniCase("logsitics"), "logistics"), + (UniCase("membrances"), "membrane"), + (UniCase("contingancy"), "contingency"), + (UniCase("daugthers"), "daughters"), + (UniCase("indigneous"), "indigenous"), + (UniCase("restrainted"), "restrained"), + (UniCase("metropolitcan"), "metropolitan"), + (UniCase("sqaudron"), "squadron"), + (UniCase("demonstras"), "demonstrates"), + (UniCase("senzationalism"), "sensationalism"), + (UniCase("dispecable"), "despicable"), + (UniCase("procelain"), "porcelain"), + (UniCase("accomadation"), "accommodation"), + (UniCase("relativitly"), "relativity"), + (UniCase("insepction"), "inspection"), + (UniCase("interesction"), "intersection"), + (UniCase("inadeqaute"), "inadequate"), + (UniCase("transeat"), "translates"), + (UniCase("tiolets"), "toilets"), + (UniCase("assassinats"), "assassins"), + (UniCase("umberlla"), "umbrella"), + (UniCase("mercanaries"), "mercenaries"), + (UniCase("misconecption"), "misconceptions"), + (UniCase("nucelar"), "nuclear"), + (UniCase("originaly"), "originally"), + (UniCase("tocuhdown"), "touchdown"), + (UniCase("destorys"), "destroys"), + (UniCase("edoema"), "edema"), + (UniCase("mecernary"), "mercenary"), + (UniCase("countercut"), "counteract"), + (UniCase("traitorus"), "traitors"), + (UniCase("propagandise"), "propagandize"), + (UniCase("singsog"), "singsong"), + (UniCase("theather"), "theater"), + (UniCase("polarisation"), "polarization"), + (UniCase("transpalnt"), "transplants"), + (UniCase("formalises"), "formalizes"), + (UniCase("photographes"), "photographs"), + (UniCase("waitres"), "waiters"), + (UniCase("explicetly"), "explicitly"), + (UniCase("certificato"), "certification"), + (UniCase("immortales"), "immortals"), + (UniCase("frankinstein"), "frankenstein"), + (UniCase("customizible"), "customizable"), + (UniCase("sigantures"), "signatures"), + (UniCase("zepplien"), "zeppelin"), + (UniCase("soemthings"), "somethings"), + (UniCase("moult"), "molt"), + (UniCase("impossibile"), "impossible"), + (UniCase("headquatered"), "headquartered"), + (UniCase("republicians"), "republicans"), + (UniCase("concentartion"), "concentrations"), + (UniCase("mysterous"), "mysterious"), + (UniCase("sentris"), "sentries"), + (UniCase("goitres"), "goiters"), + (UniCase("shrinked"), "shrunk"), + (UniCase("spirituella"), "spiritually"), + (UniCase("volonteering"), "volunteering"), + (UniCase("transformase"), "transforms"), + (UniCase("refrigerater"), "refrigerator"), + (UniCase("extraterrestial"), "extraterrestrial"), + (UniCase("autoattak"), "autoattack"), + (UniCase("explonation"), "exploration"), + (UniCase("transportarme"), "transporter"), + (UniCase("octohedron"), "octahedron"), + (UniCase("imperitive"), "imperative"), + (UniCase("sepulchres"), "sepulchers"), + (UniCase("termendously"), "tremendously"), + (UniCase("approximatley"), "approximately"), + (UniCase("externalises"), "externalizes"), + (UniCase("unvierse"), "universe"), + (UniCase("consumbale"), "consumables"), + (UniCase("projektile"), "projectile"), + (UniCase("exclusivas"), "exclusives"), + (UniCase("artificiella"), "artificial"), + (UniCase("evloves"), "evolves"), + (UniCase("wildreness"), "wilderness"), + (UniCase("utopain"), "utopian"), + (UniCase("availaible"), "available"), + (UniCase("deneirs"), "deniers"), + (UniCase("depictin"), "depictions"), + (UniCase("reprehenisble"), "reprehensible"), + (UniCase("sympithizers"), "sympathizers"), + (UniCase("pertended"), "pretended"), + (UniCase("dispensare"), "dispenser"), + (UniCase("definance"), "defiance"), + (UniCase("airpsace"), "airspace"), + (UniCase("disabeld"), "disabled"), + (UniCase("thermodymamics"), "thermodynamics"), + (UniCase("deposites"), "deposits"), + (UniCase("scrutiney"), "scrutiny"), + (UniCase("illusiones"), "illusions"), + (UniCase("comedias"), "comedians"), + (UniCase("thoerem"), "theorem"), + (UniCase("shotuout"), "shoutout"), + (UniCase("realtivity"), "relativity"), + (UniCase("soildly"), "solidly"), + (UniCase("generalise"), "generalize"), + (UniCase("ininterested"), "uninterested"), + (UniCase("envolutionary"), "evolutionary"), + (UniCase("latitudie"), "latitude"), + (UniCase("tuesdsay"), "tuesdays"), + (UniCase("boslter"), "bolster"), + (UniCase("cancres"), "cancers"), + (UniCase("banhsee"), "banshee"), + (UniCase("escalatin"), "escalation"), + (UniCase("asutrian"), "austrian"), + (UniCase("protaginists"), "protagonists"), + (UniCase("activaste"), "activates"), + (UniCase("arbritary"), "arbitrary"), + (UniCase("succour"), "succor"), + (UniCase("hydratin"), "hydration"), + (UniCase("isntalls"), "installs"), + (UniCase("containered"), "contained"), + (UniCase("buthcered"), "butchered"), + (UniCase("gonewidl"), "gonewild"), + (UniCase("flavourings"), "flavorings"), + (UniCase("surreptiously"), "surreptitiously"), + (UniCase("zealotus"), "zealots"), + (UniCase("formelly"), "formerly"), + (UniCase("helathcare"), "healthcare"), + (UniCase("paramadics"), "paramedics"), + (UniCase("announcemet"), "announcements"), + (UniCase("subjectief"), "subjective"), + (UniCase("athenean"), "athenian"), + (UniCase("mataphysical"), "metaphysical"), + (UniCase("humilitaing"), "humiliating"), + (UniCase("shenanighans"), "shenanigans"), + (UniCase("manipluating"), "manipulating"), + (UniCase("beteshda"), "bethesda"), + (UniCase("pronography"), "pornography"), + (UniCase("interferire"), "interfere"), + (UniCase("cervial"), "cervical"), + (UniCase("knwos"), "knows"), + (UniCase("carthographer"), "cartographer"), + (UniCase("fluroide"), "fluoride"), + (UniCase("neurologia"), "neurological"), + (UniCase("torandoes"), "tornadoes"), + (UniCase("cleanies"), "cleanse"), + (UniCase("pronounched"), "pronounced"), + (UniCase("undecideable"), "undecidable"), + (UniCase("inticrate"), "intricate"), + (UniCase("injustics"), "injustices"), + (UniCase("implamenting"), "implementing"), + (UniCase("exponantially"), "exponentially"), + (UniCase("cardbaord"), "cardboard"), + (UniCase("reproducting"), "reproduction"), + (UniCase("officailly"), "officially"), + (UniCase("containmemt"), "containment"), + (UniCase("togheter"), "together"), + (UniCase("demolation"), "demolition"), + (UniCase("beeing"), "being"), + (UniCase("funciton"), "function"), + (UniCase("concentraing"), "concentrating"), + (UniCase("excrusiating"), "excruciating"), + (UniCase("snivelled"), "sniveled"), + (UniCase("summarising"), "summarizing"), + (UniCase("algoritm"), "algorithm"), + (UniCase("rictatorship"), "dictatorship"), + (UniCase("observarse"), "observers"), + (UniCase("fianite"), "finite"), + (UniCase("thudnerbolt"), "thunderbolt"), + (UniCase("undenyably"), "undeniably"), + (UniCase("behavoural"), "behavioral"), + (UniCase("corspes"), "corpses"), + (UniCase("misogonist"), "misogynist"), + (UniCase("utilizacion"), "utilization"), + (UniCase("injusticas"), "injustices"), + (UniCase("underwaer"), "underwear"), + (UniCase("friendzowned"), "friendzoned"), + (UniCase("montaban"), "montana"), + (UniCase("pervious"), "previous"), + (UniCase("ganerate"), "generate"), + (UniCase("prosperious"), "prosperous"), + (UniCase("talsiman"), "talisman"), + (UniCase("traumatise"), "traumatize"), + (UniCase("milennia"), "millennia"), + (UniCase("adventerous"), "adventures"), + (UniCase("techincian"), "technician"), + (UniCase("anicent"), "ancient"), + (UniCase("organziational"), "organizational"), + (UniCase("archtiects"), "architects"), + (UniCase("paralysing"), "paralyzing"), + (UniCase("councidental"), "coincidental"), + (UniCase("aqcuainted"), "acquainted"), + (UniCase("charactaristic"), "characteristic"), + (UniCase("patryarchy"), "patriarchy"), + (UniCase("highalnder"), "highlander"), + (UniCase("excpetions"), "exceptions"), + (UniCase("throttleing"), "throttling"), + (UniCase("windosr"), "windsor"), + (UniCase("unsibstantiated"), "unsubstantiated"), + (UniCase("fluctuaties"), "fluctuate"), + (UniCase("excalmation"), "exclamation"), + (UniCase("restrcting"), "restarting"), + (UniCase("nostalgija"), "nostalgia"), + (UniCase("chameloen"), "chameleon"), + (UniCase("calculatoare"), "calculator"), + (UniCase("campaiging"), "campaigning"), + (UniCase("inahbitants"), "inhabitants"), + (UniCase("spiritualiy"), "spiritually"), + (UniCase("answeres"), "answers"), + (UniCase("mysoganistic"), "misogynistic"), + (UniCase("practises"), "practices"), + (UniCase("interprating"), "interpreting"), + (UniCase("mininos"), "minions"), + (UniCase("catastrohpic"), "catastrophic"), + (UniCase("transfrom"), "transform"), + (UniCase("conservaton"), "conservation"), + (UniCase("deperecation"), "deprecation"), + (UniCase("executionar"), "executioner"), + (UniCase("caridnals"), "cardinals"), + (UniCase("feminie"), "feminine"), + (UniCase("foetid"), "fetid"), + (UniCase("statisticly"), "statistical"), + (UniCase("proletariet"), "proletariat"), + (UniCase("unawnsered"), "unanswered"), + (UniCase("snowballls"), "snowballs"), + (UniCase("sentimentalise"), "sentimentalize"), + (UniCase("knowlegde"), "knowledge"), + (UniCase("pregressively"), "progressively"), + (UniCase("illumintati"), "illuminati"), + (UniCase("geneological"), "genealogical"), + (UniCase("everwhere"), "everywhere"), + (UniCase("liqiuds"), "liquids"), + (UniCase("interpretier"), "interpreter"), + (UniCase("jackonsville"), "jacksonville"), + (UniCase("sparlking"), "sparkling"), + (UniCase("emphatizes"), "emphasizes"), + (UniCase("phsycologically"), "psychologically"), + (UniCase("wendsay"), "wednesday"), + (UniCase("recognise"), "recognize"), + (UniCase("ploygamy"), "polygamy"), + (UniCase("commercie"), "commerce"), + (UniCase("pscyhological"), "psychological"), + (UniCase("inventarlo"), "inventor"), + (UniCase("pscyhedelic"), "psychedelic"), + (UniCase("abstenance"), "abstinence"), + (UniCase("dementieva"), "dementia"), + (UniCase("respository"), "repository"), + (UniCase("caluclate"), "calculate"), + (UniCase("stereotpying"), "stereotyping"), + (UniCase("compitance"), "compliance"), + (UniCase("absrobs"), "absorbs"), + (UniCase("ocurrence"), "occurrence"), + (UniCase("satistactory"), "satisfactory"), + (UniCase("neighouring"), "neighboring"), + (UniCase("reprtoire"), "repertoire"), + (UniCase("preamde"), "premade"), + (UniCase("dispensories"), "dispensaries"), + (UniCase("consultate"), "consultant"), + (UniCase("sustainible"), "sustainable"), + (UniCase("nautiuls"), "nautilus"), + (UniCase("appretiate"), "appreciate"), + (UniCase("disgustigly"), "disgustingly"), + (UniCase("stereotpye"), "stereotypes"), + (UniCase("portuguease"), "portuguese"), + (UniCase("manufactuered"), "manufactured"), + (UniCase("battlefornt"), "battlefront"), + (UniCase("revovler"), "revolver"), + (UniCase("intergration"), "integration"), + (UniCase("endoresments"), "endorsement"), + (UniCase("hurricance"), "hurricane"), + (UniCase("phenomon"), "phenomenon"), + (UniCase("withold"), "withhold"), + (UniCase("spreadhseets"), "spreadsheets"), + (UniCase("perdators"), "predators"), + (UniCase("reccomending"), "recommending"), + (UniCase("stimulans"), "stimulants"), + (UniCase("perparation"), "preparation"), + (UniCase("pandorra"), "pandora"), + (UniCase("athesits"), "atheists"), + (UniCase("monumentus"), "monuments"), + (UniCase("complicaitons"), "complication"), + (UniCase("convenietly"), "conveniently"), + (UniCase("narcissm"), "narcissism"), + (UniCase("underyling"), "underlying"), + (UniCase("tendancy"), "tendency"), + (UniCase("acquantaince"), "acquaintance"), + (UniCase("guatamala"), "guatemala"), + (UniCase("ventilacion"), "ventilation"), + (UniCase("lithuiana"), "lithuania"), + (UniCase("firts"), "flirts"), + (UniCase("islamisist"), "islamist"), + (UniCase("deomcracies"), "democracies"), + (UniCase("mirgaine"), "migraine"), + (UniCase("summenors"), "summoners"), + (UniCase("eyars"), "years"), + (UniCase("manipulted"), "manipulated"), + (UniCase("misinterperet"), "misinterpret"), + (UniCase("enlsave"), "enslave"), + (UniCase("correctionals"), "corrections"), + (UniCase("denseley"), "densely"), + (UniCase("fabricus"), "fabrics"), + (UniCase("masterpice"), "masterpiece"), + (UniCase("vanadlism"), "vandalism"), + (UniCase("shoulndt"), "shouldnt"), + (UniCase("relfect"), "reflect"), + (UniCase("diablical"), "diabolical"), + (UniCase("vibratie"), "vibrate"), + (UniCase("disatvantage"), "disadvantage"), + (UniCase("differances"), "differences"), + (UniCase("quartery"), "quarterly"), + (UniCase("physcologists"), "psychologists"), + (UniCase("interviewie"), "interviewer"), + (UniCase("influencial"), "influential"), + (UniCase("druming"), "drumming"), + (UniCase("empited"), "emptied"), + (UniCase("contribues"), "contributes"), + (UniCase("roylaties"), "royalties"), + (UniCase("departue"), "departure"), + (UniCase("liberalim"), "liberalism"), + (UniCase("psychopathes"), "psychopaths"), + (UniCase("judgamental"), "judgemental"), + (UniCase("staurdays"), "saturdays"), + (UniCase("indoneisa"), "indonesia"), + (UniCase("socilaized"), "socialized"), + (UniCase("sumbissions"), "submissions"), + (UniCase("introductie"), "introduce"), + (UniCase("forgiviness"), "forgiveness"), + (UniCase("spectaulars"), "spectaculars"), + (UniCase("iunior"), "junior"), + (UniCase("jouranlistic"), "journalistic"), + (UniCase("accompained"), "accompanied"), + (UniCase("troleld"), "trolled"), + (UniCase("encoutnered"), "encountered"), + (UniCase("protals"), "portals"), + (UniCase("segrigated"), "segregated"), + (UniCase("localising"), "localizing"), + (UniCase("acknowladges"), "acknowledges"), + (UniCase("assempling"), "assembling"), + (UniCase("compresssor"), "compressor"), + (UniCase("assasinated"), "assassinated"), + (UniCase("adolencent"), "adolescent"), + (UniCase("metabilism"), "metabolism"), + (UniCase("deficiet"), "deficient"), + (UniCase("sinagpore"), "singapore"), + (UniCase("accelerade"), "accelerated"), + (UniCase("religioners"), "religions"), + (UniCase("indiginous"), "indigenous"), + (UniCase("motivacional"), "motivational"), + (UniCase("sasy"), "says"), + (UniCase("dynamicdns"), "dynamics"), + (UniCase("commmemorated"), "commemorated"), + (UniCase("appraoches"), "approaches"), + (UniCase("artifically"), "artificially"), + (UniCase("chartiable"), "charitable"), + (UniCase("characterised"), "characterized"), + (UniCase("trivialising"), "trivializing"), + (UniCase("brilliany"), "brilliantly"), + (UniCase("kunckles"), "knuckles"), + (UniCase("unsuccessul"), "unsuccessful"), + (UniCase("georiga"), "georgia"), + (UniCase("emphasising"), "emphasizing"), + (UniCase("oilgarchy"), "oligarchy"), + (UniCase("apologistas"), "apologists"), + (UniCase("bathrooom"), "bathroom"), + (UniCase("idealisim"), "idealism"), + (UniCase("extensiones"), "extensions"), + (UniCase("correspondig"), "corresponding"), + (UniCase("micorphones"), "microphones"), + (UniCase("vaulable"), "valuable"), + (UniCase("cabniets"), "cabinets"), + (UniCase("vegetarin"), "vegetarians"), + (UniCase("astonoshing"), "astonishing"), + (UniCase("friendboned"), "friendzoned"), + (UniCase("determinacion"), "determination"), + (UniCase("religiosly"), "religiously"), + (UniCase("califorina"), "california"), + (UniCase("curisers"), "cruisers"), + (UniCase("perpatrated"), "perpetrated"), + (UniCase("internationl"), "international"), + (UniCase("cerbures"), "cerberus"), + (UniCase("breserker"), "berserker"), + (UniCase("blueberris"), "blueberries"), + (UniCase("instinctivley"), "instinctively"), + (UniCase("circumsition"), "circumcision"), + (UniCase("definatelty"), "definately"), + (UniCase("unintellegent"), "unintelligent"), + (UniCase("flexibilty"), "flexibility"), + (UniCase("samuria"), "samurai"), + (UniCase("autistc"), "autistic"), + (UniCase("perimetr"), "perimeter"), + (UniCase("creationsts"), "creationists"), + (UniCase("inadeguate"), "inadequate"), + (UniCase("olmypic"), "olympic"), + (UniCase("plagairism"), "plagiarism"), + (UniCase("neighborhoood"), "neighborhoods"), + (UniCase("orginasations"), "organisations"), + (UniCase("crticised"), "criticised"), + (UniCase("bracelettes"), "bracelets"), + (UniCase("volumne"), "volume"), + (UniCase("hydrualic"), "hydraulic"), + (UniCase("remembed"), "remembered"), + (UniCase("auxilliaries"), "auxiliaries"), + (UniCase("reitres"), "retires"), + (UniCase("prooved"), "proved"), + (UniCase("indianapols"), "indianapolis"), + (UniCase("crystallise"), "crystallize"), + (UniCase("independetn"), "independents"), + (UniCase("negotiatied"), "negotiate"), + (UniCase("philosophics"), "philosophies"), + (UniCase("consilidated"), "consolidated"), + (UniCase("concusssion"), "concussions"), + (UniCase("faboulus"), "fabulous"), + (UniCase("prosectuors"), "prosecutors"), + (UniCase("exclsuives"), "exclusives"), + (UniCase("dysfuncitonal"), "dysfunctional"), + (UniCase("surpress"), "suppress"), + (UniCase("obilterated"), "obliterated"), + (UniCase("favours"), "favors"), + (UniCase("bronocs"), "broncos"), + (UniCase("neckbeardest"), "neckbeards"), + (UniCase("prescients"), "presidents"), + (UniCase("translatio"), "translator"), + (UniCase("congresssman"), "congressman"), + (UniCase("mathematicly"), "mathematical"), + (UniCase("obliverated"), "obliterated"), + (UniCase("interresing"), "interfering"), + (UniCase("uncontrollabley"), "uncontrollably"), + (UniCase("foreshadowning"), "foreshadowing"), + (UniCase("exinct"), "extinct"), + (UniCase("precice"), "precise"), + (UniCase("mechanicallly"), "mechanically"), + (UniCase("despirately"), "desperately"), + (UniCase("maintenaince"), "maintenance"), + (UniCase("fundamentalisme"), "fundamentals"), + (UniCase("streamos"), "streams"), + (UniCase("chinmey"), "chimney"), + (UniCase("solidariety"), "solidarity"), + (UniCase("asshates"), "asshats"), + (UniCase("udnercut"), "undercut"), + (UniCase("percentille"), "percentile"), + (UniCase("profitabillity"), "profitability"), + (UniCase("reciporcated"), "reciprocate"), + (UniCase("demobilise"), "demobilize"), + (UniCase("thanksgivng"), "thanksgiving"), + (UniCase("somethinfg"), "somethings"), + (UniCase("deafeted"), "defeated"), + (UniCase("regocnition"), "recognition"), + (UniCase("actication"), "activation"), + (UniCase("subscribtions"), "subscriptions"), + (UniCase("rationalisation"), "rationalization"), + (UniCase("psychopants"), "psychopaths"), + (UniCase("chihuahau"), "chihuahua"), + (UniCase("stragety"), "strategy"), + (UniCase("stabliize"), "stabilize"), + (UniCase("contracr"), "contractor"), + (UniCase("comtpon"), "compton"), + (UniCase("satsifies"), "satisfies"), + (UniCase("investigatin"), "investigation"), + (UniCase("functionable"), "functional"), + (UniCase("signfies"), "signifies"), + (UniCase("catostrophic"), "catastrophic"), + (UniCase("sentimant"), "sentimental"), + (UniCase("lobbysits"), "lobbyists"), + (UniCase("participati"), "participant"), + (UniCase("homosexuallity"), "homosexuality"), + (UniCase("trinekts"), "trinkets"), + (UniCase("investigativos"), "investigations"), + (UniCase("leftits"), "leftist"), + (UniCase("initalisms"), "initialisms"), + (UniCase("meagtron"), "megatron"), + (UniCase("squirle"), "squirrel"), + (UniCase("pitchfords"), "pitchforks"), + (UniCase("illustraitor"), "illustrator"), + (UniCase("unrealsitic"), "unrealistic"), + (UniCase("accdiently"), "accidently"), + (UniCase("parmsean"), "parmesan"), + (UniCase("varaibles"), "variables"), + (UniCase("reliablely"), "reliably"), + (UniCase("facsist"), "fascist"), + (UniCase("excells"), "excels"), + (UniCase("neuterd"), "neutered"), + (UniCase("parenthises"), "parenthesis"), + (UniCase("impelments"), "implements"), + (UniCase("investegators"), "investigators"), + (UniCase("trhilling"), "thrilling"), + (UniCase("introversi"), "introverts"), + (UniCase("defintaly"), "defiantly"), + (UniCase("rehabilitaion"), "rehabilitation"), + (UniCase("standardising"), "standardizing"), + (UniCase("fermintation"), "fermentation"), + (UniCase("mexicanas"), "mexicans"), + (UniCase("coutnerpoint"), "counterpoint"), + (UniCase("anectode"), "anecdote"), + (UniCase("nationalits"), "nationalist"), + (UniCase("validitiy"), "validity"), + (UniCase("minitaure"), "miniature"), + (UniCase("rezurrection"), "resurrection"), + (UniCase("stabilizier"), "stabilize"), + (UniCase("observating"), "observation"), + (UniCase("clasical"), "classical"), + (UniCase("alrington"), "arlington"), + (UniCase("dumbbellls"), "dumbbells"), + (UniCase("corrospondence"), "correspondence"), + (UniCase("exceptin"), "exceptions"), + (UniCase("habsbourg"), "habsburg"), + (UniCase("energise"), "energize"), + (UniCase("cosmeticas"), "cosmetics"), + (UniCase("controveries"), "controversies"), + (UniCase("recreationnal"), "recreational"), + (UniCase("labour"), "labor"), + (UniCase("theatregoer"), "theatergoer"), + (UniCase("twpo"), "two"), + (UniCase("converstaions"), "conversations"), + (UniCase("radicalise"), "radicalize"), + (UniCase("falesly"), "falsely"), + (UniCase("liberato"), "liberation"), + (UniCase("intentas"), "intents"), + (UniCase("scinece"), "science"), + (UniCase("enveloppes"), "envelope"), + (UniCase("touristey"), "touristy"), + (UniCase("polarises"), "polarizes"), + (UniCase("ukrainains"), "ukrainians"), + (UniCase("moistorizing"), "moisturizing"), + (UniCase("familiarising"), "familiarizing"), + (UniCase("ligthhouse"), "lighthouse"), + (UniCase("challanging"), "challenging"), + (UniCase("winsdor"), "windsor"), + (UniCase("carribean"), "caribbean"), + (UniCase("thriteen"), "thirteen"), + (UniCase("commentars"), "commenters"), + (UniCase("converastions"), "conservation"), + (UniCase("provintial"), "provincial"), + (UniCase("installeer"), "installer"), + (UniCase("cooporative"), "cooperative"), + (UniCase("overclicking"), "overclocking"), + (UniCase("flacons"), "falcons"), + (UniCase("faslely"), "falsely"), + (UniCase("heroe"), "hero"), + (UniCase("sacreligious"), "sacrilegious"), + (UniCase("bulagria"), "bulgaria"), + (UniCase("contradicitng"), "contradicting"), + (UniCase("fulfillling"), "fulfilling"), + (UniCase("superposer"), "superpowers"), + (UniCase("inidans"), "indians"), + (UniCase("outmanoeuvres"), "outmaneuvers"), + (UniCase("sarcastc"), "sarcastic"), + (UniCase("friendzonned"), "friendzoned"), + (UniCase("undercunt"), "undercut"), + (UniCase("expentancy"), "expectancy"), + (UniCase("synonymns"), "synonyms"), + (UniCase("buildins"), "buildings"), + (UniCase("personaes"), "personas"), + (UniCase("conservitive"), "conservative"), + (UniCase("specialites"), "specializes"), + (UniCase("crusdaers"), "crusaders"), + (UniCase("inconsequentual"), "inconsequential"), + (UniCase("fabriacted"), "fabricated"), + (UniCase("capasitors"), "capacitors"), + (UniCase("jailbrake"), "jailbreak"), + (UniCase("lible"), "libel"), + (UniCase("recgonizable"), "recognizable"), + (UniCase("prominant"), "prominent"), + (UniCase("entaglements"), "entanglements"), + (UniCase("acknowleged"), "acknowledge"), + (UniCase("idealsim"), "idealism"), + (UniCase("specias"), "specials"), + (UniCase("cashires"), "cashiers"), + (UniCase("hinderence"), "hindrance"), + (UniCase("ashpalt"), "asphalt"), + (UniCase("obesssion"), "obsession"), + (UniCase("videogams"), "videogames"), + (UniCase("deficiencey"), "deficiency"), + (UniCase("appraochable"), "approachable"), + (UniCase("neruoscience"), "neuroscience"), + (UniCase("occurences"), "occurrences"), + (UniCase("enginnering"), "engineering"), + (UniCase("comeptitors"), "competitors"), + (UniCase("entrepreneuer"), "entrepreneurs"), + (UniCase("polishuset"), "polishes"), + (UniCase("favoured"), "favored"), + (UniCase("stressade"), "stressed"), + (UniCase("systematising"), "systematizing"), + (UniCase("depicitons"), "depictions"), + (UniCase("pronouced"), "pronounced"), + (UniCase("conceivibly"), "conceivably"), + (UniCase("mushroooms"), "mushroom"), + (UniCase("surounds"), "surrounds"), + (UniCase("publisehr"), "publisher"), + (UniCase("fougth"), "fought"), + (UniCase("battalin"), "battalion"), + (UniCase("molestare"), "molester"), + (UniCase("showede"), "showered"), + (UniCase("cautionsly"), "cautiously"), + (UniCase("grantie"), "granite"), + (UniCase("tocuhpad"), "touchpad"), + (UniCase("mypsace"), "myspace"), + (UniCase("wohle"), "whole"), + (UniCase("incarantion"), "incarnation"), + (UniCase("callisthenics"), "calisthenics"), + (UniCase("governmently"), "governmental"), + (UniCase("mutialtion"), "mutilation"), + (UniCase("leaglization"), "legalization"), + (UniCase("tranpshobic"), "transphobic"), + (UniCase("masturbsted"), "masturbated"), + (UniCase("tjpanishad"), "upanishad"), + (UniCase("deadpoool"), "deadpool"), + (UniCase("empathethic"), "empathetic"), + (UniCase("incorpore"), "incorporate"), + (UniCase("interesring"), "interfering"), + (UniCase("uretrha"), "urethra"), + (UniCase("cannibalizm"), "cannibalism"), + (UniCase("positiond"), "positioned"), + (UniCase("vistors"), "visitors"), + (UniCase("sacrificies"), "sacrifice"), + (UniCase("benghzai"), "benghazi"), + (UniCase("goalkepeer"), "goalkeeper"), + (UniCase("rectange"), "rectangle"), + (UniCase("transfomers"), "transforms"), + (UniCase("coyotees"), "coyotes"), + (UniCase("volatily"), "volatility"), + (UniCase("porcelan"), "porcelain"), + (UniCase("esitmates"), "estimates"), + (UniCase("attemtps"), "attempts"), + (UniCase("custamizable"), "customizable"), + (UniCase("hopelessy"), "hopelessly"), + (UniCase("satisfiction"), "satisfaction"), + (UniCase("competetor"), "competitor"), + (UniCase("unanswerd"), "unanswered"), + (UniCase("newcastel"), "newcastle"), + (UniCase("aggravanti"), "aggravating"), + (UniCase("protaginist"), "protagonist"), + (UniCase("burriots"), "burritos"), + (UniCase("pestacides"), "pesticides"), + (UniCase("vectores"), "vectors"), + (UniCase("inaccruate"), "inaccurate"), + (UniCase("pengiuns"), "penguins"), + (UniCase("trasnmitter"), "transmitter"), + (UniCase("chocolatte"), "chocolates"), + (UniCase("contaminted"), "contaminated"), + (UniCase("corinthinas"), "corinthians"), + (UniCase("perpetrar"), "perpetrator"), + (UniCase("repetetion"), "repetition"), + (UniCase("secertary"), "secretary"), + (UniCase("insiginficant"), "insignificant"), + (UniCase("repetation"), "repetition"), + (UniCase("emperical"), "empirical"), + (UniCase("gullbile"), "gullible"), + (UniCase("solidairty"), "solidarity"), + (UniCase("juipter"), "jupiter"), + (UniCase("intellectualising"), "intellectualizing"), + (UniCase("markede"), "marketed"), + (UniCase("affixiation"), "affiliation"), + (UniCase("selectivos"), "selections"), + (UniCase("misterious"), "mysterious"), + (UniCase("manifestus"), "manifests"), + (UniCase("passagens"), "passages"), + (UniCase("superstitiuos"), "superstitious"), + (UniCase("nucular"), "nuclear"), + (UniCase("moleculaire"), "molecular"), + (UniCase("anecdatally"), "anecdotally"), + (UniCase("malfucntions"), "malfunction"), + (UniCase("causacian"), "caucasian"), + (UniCase("reviewr"), "reviewer"), + (UniCase("residencial"), "residential"), + (UniCase("receptores"), "receptors"), + (UniCase("transiten"), "transient"), + (UniCase("contradictons"), "contradicts"), + (UniCase("eearly"), "early"), + (UniCase("intuitivelly"), "intuitively"), + (UniCase("authenticiy"), "authenticity"), + (UniCase("trivialised"), "trivialized"), + (UniCase("deducatble"), "deductible"), + (UniCase("bastardise"), "bastardize"), + (UniCase("exlated"), "exalted"), + (UniCase("dispair"), "despair"), + (UniCase("aramgeddon"), "armageddon"), + (UniCase("baulking"), "balking"), + (UniCase("personalie"), "personalized"), + (UniCase("neolitic"), "neolithic"), + (UniCase("toruisty"), "touristy"), + (UniCase("misinterpretated"), "misinterpreted"), + (UniCase("recongition"), "recognition"), + (UniCase("gourmelt"), "gourmet"), + (UniCase("misunderatanding"), "misunderstandings"), + (UniCase("pticher"), "pitcher"), + (UniCase("miscommuniation"), "miscommunication"), + (UniCase("minimium"), "minimum"), + (UniCase("platformie"), "platformer"), + (UniCase("legalizacion"), "legalization"), + (UniCase("impanelled"), "impaneled"), + (UniCase("netowrk"), "network"), + (UniCase("interlectuals"), "intellectuals"), + (UniCase("cambpell"), "campbell"), + (UniCase("scartched"), "scratched"), + (UniCase("terminalis"), "terminals"), + (UniCase("nonsence"), "nonsense"), + (UniCase("negligiable"), "negligible"), + (UniCase("annuled"), "annulled"), + (UniCase("explaning"), "explaining"), + (UniCase("interruping"), "interrupting"), + (UniCase("idealogies"), "ideologies"), + (UniCase("masuclinity"), "masculinity"), + (UniCase("descenting"), "descending"), + (UniCase("placehoder"), "placeholder"), + (UniCase("infrignement"), "infringement"), + (UniCase("stupiditiy"), "stupidity"), + (UniCase("experianced"), "experienced"), + (UniCase("infinitiy"), "infinity"), + (UniCase("continuarlo"), "continual"), + (UniCase("swtiching"), "switching"), + (UniCase("architechts"), "architect"), + (UniCase("dispencers"), "dispenser"), + (UniCase("ebcuase"), "becuase"), + (UniCase("enamelling"), "enameling"), + (UniCase("sceintist"), "scientist"), + (UniCase("combatibility"), "compatibility"), + (UniCase("funcitons"), "functions"), + (UniCase("surrouned"), "surround"), + (UniCase("computerised"), "computerized"), + (UniCase("contractin"), "contraction"), + (UniCase("briagde"), "brigade"), + (UniCase("merchendise"), "merchandise"), + (UniCase("consenusal"), "consensual"), + (UniCase("infulenced"), "influenced"), + (UniCase("discrimianted"), "discriminated"), + (UniCase("perdictable"), "predictable"), + (UniCase("realises"), "realizes"), + (UniCase("interersted"), "interpreted"), + (UniCase("univerisites"), "universities"), + (UniCase("eyebrowns"), "eyebrows"), + (UniCase("illuminista"), "illuminati"), + (UniCase("fullset"), "fullest"), + (UniCase("paranioa"), "paranoia"), + (UniCase("suprimacist"), "supremacist"), + (UniCase("monstorus"), "monstrous"), + (UniCase("demonstratin"), "demonstration"), + (UniCase("audioboooks"), "audiobook"), + (UniCase("zionistes"), "zionists"), + (UniCase("irelevent"), "irrelevant"), + (UniCase("fabricas"), "fabrics"), + (UniCase("inhabitents"), "inhabitants"), + (UniCase("addittions"), "addictions"), + (UniCase("gravitacional"), "gravitational"), + (UniCase("covnersation"), "conservation"), + (UniCase("metaphyiscal"), "metaphysical"), + (UniCase("amercian"), "american"), + (UniCase("pinteret"), "pinterest"), + (UniCase("developrs"), "develops"), + (UniCase("traileras"), "trailers"), + (UniCase("orientaion"), "orientation"), + (UniCase("cupborad"), "cupboard"), + (UniCase("empahsizes"), "emphasizes"), + (UniCase("custcene"), "cutscene"), + (UniCase("terristrial"), "territorial"), + (UniCase("correnti"), "correcting"), + (UniCase("absolument"), "absolute"), + (UniCase("exludes"), "excludes"), + (UniCase("breathalysing"), "breathalyzing"), + (UniCase("crosair"), "corsair"), + (UniCase("remarkes"), "remarks"), + (UniCase("experimentes"), "experiments"), + (UniCase("filpped"), "flipped"), + (UniCase("industrialise"), "industrialize"), + (UniCase("reseraching"), "researching"), + (UniCase("restorating"), "restoration"), + (UniCase("pacakge"), "package"), + (UniCase("exhalted"), "exalted"), + (UniCase("carniverous"), "carnivorous"), + (UniCase("bedore"), "before"), + (UniCase("renweables"), "renewables"), + (UniCase("touristly"), "touristy"), + (UniCase("insluts"), "insults"), + (UniCase("consicence"), "conscience"), + (UniCase("oarcles"), "oracles"), + (UniCase("friednship"), "friendships"), + (UniCase("patriatchy"), "patriarchy"), + (UniCase("deutchsland"), "deutschland"), + (UniCase("equivlaent"), "equivalents"), + (UniCase("dispositon"), "disposition"), + (UniCase("infiltrarte"), "infiltrate"), + (UniCase("trandgender"), "transgender"), + (UniCase("mucuous"), "mucous"), + (UniCase("guaduloupe"), "guadalupe"), + (UniCase("conservite"), "conserve"), + (UniCase("asapragus"), "asparagus"), + (UniCase("protocolos"), "protocols"), + (UniCase("ariplanes"), "airplanes"), + (UniCase("extensivley"), "extensively"), + (UniCase("referemce"), "reference"), + (UniCase("contradics"), "contradicts"), + (UniCase("apporximate"), "approximate"), + (UniCase("tirbunal"), "tribunal"), + (UniCase("condenmation"), "condemnation"), + (UniCase("combinig"), "combining"), + (UniCase("vitories"), "victories"), + (UniCase("exsited"), "existed"), + (UniCase("complimente"), "complement"), + (UniCase("invulverable"), "invulnerable"), + (UniCase("promotted"), "promoted"), + (UniCase("protocal"), "protocol"), + (UniCase("relazation"), "relaxation"), + (UniCase("practisioners"), "practitioners"), + (UniCase("distincte"), "distinctive"), + (UniCase("geniuss"), "geniuses"), + (UniCase("administartion"), "administration"), + (UniCase("incompatibile"), "incompatible"), + (UniCase("weaknessses"), "weaknesses"), + (UniCase("colubmia"), "columbia"), + (UniCase("socioeconimc"), "socioeconomic"), + (UniCase("acknwoledge"), "acknowledges"), + (UniCase("conenction"), "connection"), + (UniCase("lighthours"), "lighthouse"), + (UniCase("fruitin"), "fruition"), + (UniCase("inaccessble"), "inaccessible"), + (UniCase("advisorys"), "advisors"), + (UniCase("fashoined"), "fashioned"), + (UniCase("calibraton"), "calibration"), + (UniCase("protestat"), "protestant"), + (UniCase("sacrificie"), "sacrificed"), + (UniCase("teleportaton"), "teleportation"), + (UniCase("disporportionate"), "disproportionate"), + (UniCase("unconsiderate"), "inconsiderate"), + (UniCase("compinsating"), "compensating"), + (UniCase("furutistic"), "futuristic"), + (UniCase("creativley"), "creatively"), + (UniCase("womaniser"), "womanizer"), + (UniCase("invinceble"), "invincible"), + (UniCase("corsiar"), "corsair"), + (UniCase("sensationable"), "sensational"), + (UniCase("asnwering"), "answering"), + (UniCase("subcatagory"), "subcategory"), + (UniCase("jennins"), "jennings"), + (UniCase("discolouring"), "discoloring"), + (UniCase("apocalpyse"), "apocalypse"), + (UniCase("dissertaion"), "dissertation"), + (UniCase("breathalyse"), "breathalyze"), + (UniCase("microvaxes"), "microwaves"), + (UniCase("knoweldgable"), "knowledgable"), + (UniCase("demenstration"), "demonstration"), + (UniCase("caculater"), "calculator"), + (UniCase("subjectivley"), "subjectively"), + (UniCase("environemnts"), "environments"), + (UniCase("simulatneously"), "simultaneously"), + (UniCase("introducion"), "introduction"), + (UniCase("euphorica"), "euphoria"), + (UniCase("intracite"), "intricate"), + (UniCase("panelled"), "paneled"), + (UniCase("vientamese"), "vietnamese"), + (UniCase("exectuive"), "executive"), + (UniCase("alumnium"), "aluminum"), + (UniCase("reaplugs"), "earplugs"), + (UniCase("electrolye"), "electrolytes"), + (UniCase("authoroties"), "authorities"), + (UniCase("austrailan"), "australian"), + (UniCase("paradies"), "paradise"), + (UniCase("indonesion"), "indonesian"), + (UniCase("unsubscribbed"), "unsubscribe"), + (UniCase("ultimatelly"), "ultimately"), + (UniCase("forigener"), "foreigner"), + (UniCase("mediocrisy"), "mediocrity"), + (UniCase("pandoria"), "pandora"), + (UniCase("complets"), "completes"), + (UniCase("contradictary"), "contradictory"), + (UniCase("delfation"), "deflation"), + (UniCase("conditionner"), "conditioner"), + (UniCase("psychaitrist"), "psychiatrist"), + (UniCase("unsolocited"), "unsolicited"), + (UniCase("progresion"), "progression"), + (UniCase("disporportionately"), "disproportionately"), + (UniCase("immortaliy"), "immortality"), + (UniCase("interchangeble"), "interchangeable"), + (UniCase("toppins"), "toppings"), + (UniCase("invertibrates"), "invertebrates"), + (UniCase("apocalpytic"), "apocalyptic"), + (UniCase("athetlic"), "athletic"), + (UniCase("repeates"), "repeats"), + (UniCase("faciltiy"), "facility"), + (UniCase("combinining"), "combining"), + (UniCase("acquanitances"), "acquaintance"), + (UniCase("owrk"), "work"), + (UniCase("distribitors"), "distributors"), + (UniCase("employeur"), "employer"), + (UniCase("journalisitc"), "journalistic"), + (UniCase("ventalation"), "ventilation"), + (UniCase("squarley"), "squarely"), + (UniCase("especialy"), "especially"), + (UniCase("janaury"), "january"), + (UniCase("beuatifully"), "beautifully"), + (UniCase("commishioner"), "commissioner"), + (UniCase("persecutted"), "persecuted"), + (UniCase("exploiding"), "exploiting"), + (UniCase("commandpod"), "commando"), + (UniCase("undeinably"), "undeniably"), + (UniCase("jewllery"), "jewellery"), + (UniCase("fliters"), "filters"), + (UniCase("reinitalises"), "reinitialises"), + (UniCase("bullerproof"), "bulletproof"), + (UniCase("soundtrakk"), "soundtrack"), + (UniCase("foundary"), "foundry"), + (UniCase("etmyology"), "etymology"), + (UniCase("intertained"), "intertwined"), + (UniCase("collapes"), "collapse"), + (UniCase("extraordinair"), "extraordinary"), + (UniCase("enameld"), "enameled"), + (UniCase("exlcuding"), "excluding"), + (UniCase("transcations"), "transactions"), + (UniCase("hipothetical"), "hypothetical"), + (UniCase("unemployemnt"), "unemployment"), + (UniCase("healthire"), "healthier"), + (UniCase("characterisitics"), "characteristics"), + (UniCase("manufacturier"), "manufacturer"), + (UniCase("suposes"), "supposes"), + (UniCase("rumuors"), "rumours"), + (UniCase("palaeontologists"), "paleontologists"), + (UniCase("desctiptions"), "descriptions"), + (UniCase("inlcine"), "incline"), + (UniCase("earthquaks"), "earthquakes"), + (UniCase("stereotpyes"), "stereotypes"), + (UniCase("litature"), "literature"), + (UniCase("specialzied"), "specialized"), + (UniCase("confirmas"), "confirms"), + (UniCase("independance"), "independence"), + (UniCase("graudally"), "gradually"), + (UniCase("foreksin"), "foreskin"), + (UniCase("expereincing"), "experiencing"), + (UniCase("regularlos"), "regulars"), + (UniCase("essentiels"), "essentials"), + (UniCase("integreted"), "integrated"), + (UniCase("dabilitating"), "debilitating"), + (UniCase("lenoard"), "leonard"), + (UniCase("responsibities"), "responsibilities"), + (UniCase("homophopic"), "homophobic"), + (UniCase("desentisized"), "desensitized"), + (UniCase("tremendeous"), "tremendous"), + (UniCase("delpoying"), "deploying"), + (UniCase("syncronization"), "synchronization"), + (UniCase("exhuast"), "exhaust"), + (UniCase("bangkock"), "bangkok"), + (UniCase("inpsire"), "inspire"), + (UniCase("comeptitively"), "competitively"), + (UniCase("deffined"), "defined"), + (UniCase("compresser"), "compressor"), + (UniCase("principaly"), "principality"), + (UniCase("appriciated"), "appreciated"), + (UniCase("dynastry"), "dynasty"), + (UniCase("portrayls"), "portrays"), + (UniCase("relaise"), "realise"), + (UniCase("composities"), "composite"), + (UniCase("perminently"), "permanently"), + (UniCase("stagnat"), "stagnant"), + (UniCase("prostite"), "prostitute"), + (UniCase("disproportionaltely"), "disproportionately"), + (UniCase("commodites"), "commodities"), + (UniCase("sylablles"), "syllables"), + (UniCase("govrement"), "goverment"), + (UniCase("recgonition"), "recognition"), + (UniCase("translyvania"), "transylvania"), + (UniCase("morphein"), "morphine"), + (UniCase("initiatie"), "initiatives"), + (UniCase("individul"), "individual"), + (UniCase("particularised"), "particularized"), + (UniCase("imperialims"), "imperialism"), + (UniCase("allergey"), "allergy"), + (UniCase("wednesdsy"), "wednesdays"), + (UniCase("shittoon"), "shitton"), + (UniCase("emphisized"), "emphasized"), + (UniCase("southernest"), "southerners"), + (UniCase("patriarcal"), "patriarchal"), + (UniCase("condesend"), "condensed"), + (UniCase("immedeately"), "immediately"), + (UniCase("merhcant"), "merchant"), + (UniCase("loepard"), "leopard"), + (UniCase("fortuantely"), "fortunately"), + (UniCase("peppermit"), "peppermint"), + (UniCase("centre"), "center"), + (UniCase("qaulifiers"), "qualifiers"), + (UniCase("reknowned"), "renowned"), + (UniCase("activaters"), "activates"), + (UniCase("ancilliary"), "ancillary"), + (UniCase("tantalisingly"), "tantalizingly"), + (UniCase("toruney"), "tourney"), + (UniCase("contenants"), "continents"), + (UniCase("apporaching"), "approaching"), + (UniCase("toritllas"), "tortillas"), + (UniCase("fundamentalismo"), "fundamentals"), + (UniCase("exculde"), "exclude"), + (UniCase("bowdlerises"), "bowdlerizes"), + (UniCase("undertoe"), "undertones"), + (UniCase("grammaticaal"), "grammatical"), + (UniCase("buddah"), "buddha"), + (UniCase("symhpony"), "symphony"), + (UniCase("registerd"), "registered"), + (UniCase("intellectualls"), "intellectuals"), + (UniCase("intersecton"), "intersection"), + (UniCase("centrase"), "centres"), + (UniCase("documentory"), "documentary"), + (UniCase("gaoler"), "jailer"), + (UniCase("initialising"), "initializing"), + (UniCase("simplificaiton"), "simplification"), + (UniCase("publlisher"), "publisher"), + (UniCase("maximazing"), "maximizing"), + (UniCase("archetypus"), "archetypes"), + (UniCase("vendeta"), "vendetta"), + (UniCase("sparklie"), "sparkle"), + (UniCase("gautnlet"), "gauntlet"), + (UniCase("configurato"), "configuration"), + (UniCase("distatesful"), "distasteful"), + (UniCase("romanticaly"), "romantically"), + (UniCase("addresable"), "addressable"), + (UniCase("denomintor"), "denominator"), + (UniCase("israleis"), "israelis"), + (UniCase("dynamiclly"), "dynamically"), + (UniCase("suprass"), "surpass"), + (UniCase("reptition"), "repetition"), + (UniCase("srriacha"), "sriracha"), + (UniCase("perference"), "preference"), + (UniCase("typcially"), "typically"), + (UniCase("sensacionalist"), "sensationalist"), + (UniCase("sandviches"), "sandwiches"), + (UniCase("apologised"), "apologized"), + (UniCase("virbation"), "vibration"), + (UniCase("medicinens"), "medicines"), + (UniCase("sufficently"), "sufficiently"), + (UniCase("acquited"), "acquitted"), + (UniCase("cesspol"), "cesspool"), + (UniCase("barbarina"), "barbarian"), + (UniCase("savoured"), "savored"), + (UniCase("pakistanais"), "pakistani"), + (UniCase("vesseles"), "vessels"), + (UniCase("warrantly"), "warranty"), + (UniCase("incentivare"), "incentive"), + (UniCase("unvelievably"), "unbelievably"), + (UniCase("squsihy"), "squishy"), + (UniCase("buddist"), "buddhist"), + (UniCase("acclimatises"), "acclimatizes"), + (UniCase("interfers"), "interferes"), + (UniCase("demonstrativos"), "demonstrations"), + (UniCase("throughtout"), "throughout"), + (UniCase("demosntrating"), "demonstrating"), + (UniCase("amphetemines"), "amphetamines"), + (UniCase("barracs"), "barracks"), + (UniCase("persecusion"), "persecution"), + (UniCase("indifferente"), "indifference"), + (UniCase("obversations"), "observations"), + (UniCase("insipres"), "inspires"), + (UniCase("accomodation"), "accommodation"), + (UniCase("skillshoot"), "skillshots"), + (UniCase("passionatly"), "passionately"), + (UniCase("reinfornced"), "reinforced"), + (UniCase("neighbourood"), "neighbourhood"), + (UniCase("clerification"), "clarification"), + (UniCase("pacakged"), "packaged"), + (UniCase("teampseak"), "teamspeak"), + (UniCase("contianers"), "containers"), + (UniCase("millioniares"), "millionaires"), + (UniCase("mencaing"), "menacing"), + (UniCase("balanse"), "balances"), + (UniCase("rememberes"), "remembers"), + (UniCase("acedemic"), "academic"), + (UniCase("antarctida"), "antarctica"), + (UniCase("curcible"), "crucible"), + (UniCase("interro"), "interior"), + (UniCase("masturbathe"), "masturbated"), + (UniCase("affiliction"), "affiliation"), + (UniCase("attemting"), "attempting"), + (UniCase("converst"), "converts"), + (UniCase("corinthains"), "corinthians"), + (UniCase("unjustifyed"), "unjustified"), + (UniCase("inexpencive"), "inexpensive"), + (UniCase("regresso"), "regression"), + (UniCase("maintians"), "maintains"), + (UniCase("compairson"), "comparison"), + (UniCase("referemdum"), "referendum"), + (UniCase("anounced"), "announced"), + (UniCase("babysittting"), "babysitting"), + (UniCase("introveted"), "introverted"), + (UniCase("apparantely"), "apparently"), + (UniCase("investigater"), "investigator"), + (UniCase("preferes"), "prefers"), + (UniCase("complainging"), "complaining"), + (UniCase("supermarkedet"), "supermarket"), + (UniCase("effectionate"), "affectionate"), + (UniCase("invonvenient"), "inconvenient"), + (UniCase("militarised"), "militarized"), + (UniCase("transistion"), "transition"), + (UniCase("costumization"), "customization"), + (UniCase("settlment"), "settlement"), + (UniCase("responsile"), "responsive"), + (UniCase("fantazise"), "fantasize"), + (UniCase("rectangualr"), "rectangular"), + (UniCase("practicarlo"), "practical"), + (UniCase("norhtwest"), "northwest"), + (UniCase("boycottting"), "boycotting"), + (UniCase("conqeuring"), "conquering"), + (UniCase("initiatin"), "initiation"), + (UniCase("freedos"), "freedoms"), + (UniCase("chirstmas"), "christmas"), + (UniCase("brightn"), "brighten"), + (UniCase("skywalkr"), "skywalker"), + (UniCase("stickes"), "stickers"), + (UniCase("uncomftorably"), "uncomfortably"), + (UniCase("demonstartion"), "demonstration"), + (UniCase("counterpaly"), "counterplay"), + (UniCase("ther"), "there"), + (UniCase("awesoneness"), "awesomeness"), + (UniCase("artillerly"), "artillery"), + (UniCase("originas"), "origins"), + (UniCase("tencaity"), "tenacity"), + (UniCase("dinosuars"), "dinosaurs"), + (UniCase("resoltuions"), "resolutions"), + (UniCase("paradimes"), "paradise"), + (UniCase("merchandies"), "merchandise"), + (UniCase("synomyns"), "synonyms"), + (UniCase("possibile"), "possible"), + (UniCase("equivlanets"), "equivalents"), + (UniCase("indluge"), "indulge"), + (UniCase("fatc"), "fact"), + (UniCase("curreny"), "currency"), + (UniCase("inquisiton"), "inquisition"), + (UniCase("avodacos"), "avocados"), + (UniCase("perpetrater"), "perpetrator"), + (UniCase("neighbourhoood"), "neighbourhood"), + (UniCase("recurits"), "recruits"), + (UniCase("comparativly"), "comparatively"), + (UniCase("annoucne"), "announce"), + (UniCase("wholy"), "wholly"), + (UniCase("dracual"), "dracula"), + (UniCase("philadalphia"), "philadelphia"), + (UniCase("exprensive"), "expressive"), + (UniCase("cleints"), "clients"), + (UniCase("relaoded"), "reloaded"), + (UniCase("operationnal"), "operational"), + (UniCase("monumentous"), "monuments"), + (UniCase("intervation"), "integration"), + (UniCase("regulatr"), "regulator"), + (UniCase("nominato"), "nomination"), + (UniCase("secrety"), "secretly"), + (UniCase("psychiatrisch"), "psychiatric"), + (UniCase("nationas"), "nationals"), + (UniCase("regulary"), "regularly"), + (UniCase("characterizarion"), "characterization"), + (UniCase("bougainvillaea"), "bougainvillea"), + (UniCase("inaugures"), "inaugurates"), + (UniCase("irrelavant"), "irrelevant"), + (UniCase("regresssive"), "regressive"), + (UniCase("glithced"), "glitched"), + (UniCase("punctiation"), "punctuation"), + (UniCase("specialisations"), "specializations"), + (UniCase("overshadowered"), "overshadowed"), + (UniCase("bealtes"), "beatles"), + (UniCase("seziures"), "seizures"), + (UniCase("crosshar"), "crosshair"), + (UniCase("rythyms"), "rhythms"), + (UniCase("pressurise"), "pressurize"), + (UniCase("amature"), "armature"), + (UniCase("participe"), "participate"), + (UniCase("flexibillity"), "flexibility"), + (UniCase("hydogen"), "hydrogen"), + (UniCase("guarunteed"), "guaranteed"), + (UniCase("symphonity"), "symphony"), + (UniCase("iceforg"), "icefrog"), + (UniCase("indepednent"), "independents"), + (UniCase("enchentments"), "enchantments"), + (UniCase("mediterranen"), "mediterranean"), + (UniCase("barbarions"), "barbarians"), + (UniCase("patronas"), "patrons"), + (UniCase("astronimical"), "astronomical"), + (UniCase("isolatie"), "isolate"), + (UniCase("visualizaton"), "visualization"), + (UniCase("refusla"), "refusal"), + (UniCase("alltogether"), "altogether"), + (UniCase("uncomfortablity"), "uncomfortably"), + (UniCase("epsiode"), "episode"), + (UniCase("nutritinal"), "nutritional"), + (UniCase("clacium"), "calcium"), + (UniCase("vigliant"), "vigilant"), + (UniCase("unconstitutionnal"), "unconstitutional"), + (UniCase("lantren"), "lantern"), + (UniCase("entrepreneus"), "entrepreneurs"), + (UniCase("conclsuions"), "concussions"), + (UniCase("structered"), "structured"), + (UniCase("munbers"), "numbers"), + (UniCase("fingerpint"), "fingerprint"), + (UniCase("ressembled"), "resembled"), + (UniCase("badnwidth"), "bandwidth"), + (UniCase("procederal"), "procedural"), + (UniCase("detectivs"), "detectives"), + (UniCase("doens"), "does"), + (UniCase("referere"), "referee"), + (UniCase("decomposited"), "decomposed"), + (UniCase("easthetics"), "aesthetics"), + (UniCase("outnumbred"), "outnumbered"), + (UniCase("disconnecters"), "disconnects"), + (UniCase("concened"), "concede"), + (UniCase("complictaed"), "complicate"), + (UniCase("moistruizer"), "moisturizer"), + (UniCase("phenomanal"), "phenomenal"), + (UniCase("transitiong"), "transitioning"), + (UniCase("simultainously"), "simultaneously"), + (UniCase("conceptul"), "conceptual"), + (UniCase("militians"), "militias"), + (UniCase("hemishpere"), "hemisphere"), + (UniCase("uncomfortablly"), "uncomfortably"), + (UniCase("homogenenous"), "homogeneous"), + (UniCase("squirel"), "squirtle"), + (UniCase("executionor"), "executioner"), + (UniCase("frome"), "from"), + (UniCase("sucess"), "success"), + (UniCase("electricrain"), "electrician"), + (UniCase("premanent"), "permanent"), + (UniCase("communit"), "communist"), + (UniCase("reaserch"), "research"), + (UniCase("reminscent"), "reminiscent"), + (UniCase("desitned"), "destined"), + (UniCase("billionairres"), "billionaire"), + (UniCase("paralely"), "parallelly"), + (UniCase("fanaticas"), "fanatics"), + (UniCase("omniverous"), "omnivorous"), + (UniCase("chrsitmas"), "christmas"), + (UniCase("consolide"), "consolidate"), + (UniCase("cirticise"), "criticise"), + (UniCase("affulent"), "affluent"), + (UniCase("pregancies"), "pregnancies"), + (UniCase("subscirption"), "subscriptions"), + (UniCase("sluaghter"), "slaughter"), + (UniCase("maintainence"), "maintenance"), + (UniCase("contridict"), "contradict"), + (UniCase("invicinble"), "invincible"), + (UniCase("appal"), "appall"), + (UniCase("equivolence"), "equivalence"), + (UniCase("ligthroom"), "lightroom"), + (UniCase("olypmic"), "olympic"), + (UniCase("succees"), "succeeds"), + (UniCase("obtaineble"), "obtainable"), + (UniCase("compartmentalise"), "compartmentalize"), + (UniCase("contian"), "contain"), + (UniCase("artical"), "article"), + (UniCase("candidatxs"), "candidates"), + (UniCase("siutational"), "situational"), + (UniCase("mercanery"), "mercenary"), + (UniCase("breakdows"), "breakdowns"), + (UniCase("supermakert"), "supermarkets"), + (UniCase("attension"), "attention"), + (UniCase("negativy"), "negativity"), + (UniCase("recreatie"), "recreate"), + (UniCase("techanically"), "mechanically"), + (UniCase("occaisons"), "occasions"), + (UniCase("clarfiy"), "clarify"), + (UniCase("negativelly"), "negatively"), + (UniCase("jugdements"), "judgements"), + (UniCase("criticisme"), "criticise"), + (UniCase("touchdwon"), "touchdown"), + (UniCase("interwebers"), "interwebs"), + (UniCase("califorian"), "californian"), + (UniCase("preliminarly"), "preliminary"), + (UniCase("membrance"), "membrane"), + (UniCase("acquaintace"), "acquaintance"), + (UniCase("explaination"), "explanation"), + (UniCase("digitise"), "digitize"), + (UniCase("whatosever"), "whatsoever"), + (UniCase("inquisistor"), "inquisitor"), + (UniCase("agurement"), "arguement"), + (UniCase("cholestoral"), "cholesterol"), + (UniCase("invisibiliy"), "invisibility"), + (UniCase("girlfried"), "girlfriend"), + (UniCase("homosexualls"), "homosexuals"), + (UniCase("contemporaneus"), "contemporaneous"), + (UniCase("atatchments"), "attachments"), + (UniCase("establishmet"), "establishments"), + (UniCase("overclocing"), "overclocking"), + (UniCase("considertaion"), "considerations"), + (UniCase("compulosry"), "compulsory"), + (UniCase("outsouring"), "outsourcing"), + (UniCase("tralier"), "trailer"), + (UniCase("assimile"), "assimilate"), + (UniCase("capitilists"), "capitalists"), + (UniCase("methematical"), "mathematical"), + (UniCase("concorrent"), "concurrent"), + (UniCase("blueprients"), "blueprints"), + (UniCase("encouraing"), "encouraging"), + (UniCase("algorithem"), "algorithm"), + (UniCase("complicaed"), "complicate"), + (UniCase("syraucse"), "syracuse"), + (UniCase("conveneince"), "convenience"), + (UniCase("meagre"), "meager"), + (UniCase("mexicants"), "mexicans"), + (UniCase("produceras"), "produces"), + (UniCase("cartrdiges"), "cartridges"), + (UniCase("revoltuion"), "revolution"), + (UniCase("coordenate"), "coordinate"), + (UniCase("correponding"), "corresponding"), + (UniCase("sponsorhsip"), "sponsorship"), + (UniCase("steroetyping"), "stereotyping"), + (UniCase("salavge"), "salvage"), + (UniCase("electrodan"), "electron"), + (UniCase("repulics"), "republics"), + (UniCase("omnsicient"), "omniscient"), + (UniCase("demograhpics"), "demographics"), + (UniCase("frecklers"), "freckles"), + (UniCase("strategicaly"), "strategically"), + (UniCase("deragotory"), "derogatory"), + (UniCase("neighborehood"), "neighbourhood"), + (UniCase("scorpoin"), "scorpion"), + (UniCase("norwiegan"), "norwegian"), + (UniCase("registeries"), "registers"), + (UniCase("embarissing"), "embarassing"), + (UniCase("satsohi"), "satoshi"), + (UniCase("orginally"), "originally"), + (UniCase("agression"), "aggression"), + (UniCase("restrictons"), "restricts"), + (UniCase("simultaneus"), "simultaneous"), + (UniCase("atmosphir"), "atmospheric"), + (UniCase("diamons"), "diamonds"), + (UniCase("downlaoded"), "downloaded"), + (UniCase("underestimeted"), "underestimated"), + (UniCase("remoulding"), "remolding"), + (UniCase("quantuum"), "quantum"), + (UniCase("aleinating"), "alienating"), + (UniCase("possbily"), "possibly"), + (UniCase("introdus"), "introduces"), + (UniCase("bloodboner"), "bloodborne"), + (UniCase("challege"), "challenge"), + (UniCase("reconnaissence"), "reconnaissance"), + (UniCase("devovled"), "devolved"), + (UniCase("expantions"), "expansions"), + (UniCase("conversaiton"), "conversations"), + (UniCase("lightrooom"), "lightroom"), + (UniCase("crusdae"), "crusade"), + (UniCase("princesas"), "princess"), + (UniCase("sasauges"), "sausages"), + (UniCase("providee"), "providence"), + (UniCase("deficienty"), "deficiency"), + (UniCase("reflextion"), "reflection"), + (UniCase("birgading"), "brigading"), + (UniCase("uniquiness"), "uniqueness"), + (UniCase("abandonnent"), "abandonment"), + (UniCase("isntantly"), "instantly"), + (UniCase("inpsection"), "inspection"), + (UniCase("newspapaers"), "newspapers"), + (UniCase("mathimatically"), "mathematically"), + (UniCase("roomate"), "roommate"), + (UniCase("continous"), "continuous"), + (UniCase("globalised"), "globalized"), + (UniCase("egytpians"), "egyptians"), + (UniCase("nationalistista"), "nationalists"), + (UniCase("interpretating"), "interpretation"), + (UniCase("funtion"), "function"), + (UniCase("philippenes"), "philippines"), + (UniCase("graduaste"), "graduates"), + (UniCase("oxidise"), "oxidize"), + (UniCase("crsytal"), "crystal"), + (UniCase("credentails"), "credentials"), + (UniCase("physicallity"), "physically"), + (UniCase("generationals"), "generations"), + (UniCase("socialises"), "socializes"), + (UniCase("impossibul"), "impossibly"), + (UniCase("throium"), "thorium"), + (UniCase("immediantly"), "immediately"), + (UniCase("unopenend"), "unopened"), + (UniCase("strengtened"), "strengthened"), + (UniCase("anarchsits"), "anarchists"), + (UniCase("watn"), "want"), + (UniCase("inspiraste"), "inspires"), + (UniCase("rasbperry"), "raspberry"), + (UniCase("temporarly"), "temporary"), + (UniCase("choosen"), "chosen"), + (UniCase("parnters"), "partners"), + (UniCase("ampehtamines"), "amphetamines"), + (UniCase("persepctive"), "perspective"), + (UniCase("normalises"), "normalizes"), + (UniCase("nutritian"), "nutritional"), + (UniCase("conclusie"), "conclusive"), + (UniCase("explotiation"), "exploitation"), + (UniCase("prolateriat"), "proletariat"), + (UniCase("profitibality"), "profitability"), + (UniCase("porportionally"), "proportionally"), + (UniCase("iornman"), "ironman"), + (UniCase("practicioner"), "practitioner"), + (UniCase("wheras"), "whereas"), + (UniCase("acornyms"), "acronyms"), + (UniCase("hurricanefps"), "hurricanes"), + (UniCase("metabolizm"), "metabolism"), + (UniCase("sponsord"), "sponsored"), + (UniCase("withing"), "within"), + (UniCase("hypotheticly"), "hypothetical"), + (UniCase("incraments"), "increments"), + (UniCase("relativily"), "relativity"), + (UniCase("immoratlity"), "immortality"), + (UniCase("ideologiset"), "ideologies"), + (UniCase("socializng"), "socializing"), + (UniCase("competend"), "competed"), + (UniCase("cletics"), "celtics"), + (UniCase("orcehstra"), "orchestra"), + (UniCase("succesful"), "successful"), + (UniCase("mccarthyst"), "mccarthyist"), + (UniCase("benghazhi"), "benghazi"), + (UniCase("snowflaek"), "snowflake"), + (UniCase("dymanics"), "dynamics"), + (UniCase("implicilty"), "implicitly"), + (UniCase("abusrdly"), "absurdly"), + (UniCase("impressons"), "impressions"), + (UniCase("demosntrate"), "demonstrate"), + (UniCase("cauilflower"), "cauliflower"), + (UniCase("conjonction"), "conjunction"), + (UniCase("wresters"), "wrestlers"), + (UniCase("iranains"), "iranians"), + (UniCase("subtitel"), "subtitle"), + (UniCase("minsiter"), "minister"), + (UniCase("sampels"), "samples"), + (UniCase("accidentely"), "accidently"), + (UniCase("progressivo"), "progression"), + (UniCase("overlcocked"), "overclocked"), + (UniCase("foregroud"), "foreground"), + (UniCase("colliquial"), "colloquial"), + (UniCase("jursidiction"), "jurisdiction"), + (UniCase("bureuacratic"), "bureaucratic"), + (UniCase("bitcoints"), "bitcoins"), + (UniCase("powrrlifting"), "powerlifting"), + (UniCase("restricters"), "restricts"), + (UniCase("clinicaly"), "clinically"), + (UniCase("incrimental"), "incremental"), + (UniCase("inteferring"), "interfering"), + (UniCase("insentivised"), "insensitive"), + (UniCase("quanitfy"), "quantify"), + (UniCase("merucry"), "mercury"), + (UniCase("curriculim"), "curriculum"), + (UniCase("miscairrage"), "miscarriage"), + (UniCase("omnisicent"), "omniscient"), + (UniCase("similarites"), "similarities"), + (UniCase("unpreparred"), "unprepared"), + (UniCase("speciallity"), "specially"), + (UniCase("oversimplificaton"), "oversimplification"), + (UniCase("congradulate"), "congratulate"), + (UniCase("frontapge"), "frontpage"), + (UniCase("agressie"), "agressive"), + (UniCase("contradice"), "contradicted"), + (UniCase("undenialbly"), "undeniably"), + (UniCase("disciplenary"), "disciplinary"), + (UniCase("collpasing"), "collapsing"), + (UniCase("industrail"), "industrial"), + (UniCase("perservation"), "preservation"), + (UniCase("alternatr"), "alternator"), + (UniCase("vanugard"), "vanguard"), + (UniCase("assosication"), "assassination"), + (UniCase("missorui"), "missouri"), + (UniCase("playthrougth"), "playthroughs"), + (UniCase("proposicion"), "proposition"), + (UniCase("companians"), "companions"), + (UniCase("cheerlearder"), "cheerleader"), + (UniCase("dissapoined"), "dissapointed"), + (UniCase("similart"), "similarity"), + (UniCase("mangitude"), "magnitude"), + (UniCase("monglos"), "mongols"), + (UniCase("criticisied"), "criticise"), + (UniCase("subscribbing"), "subscribing"), + (UniCase("fossilised"), "fossilized"), + (UniCase("guarentees"), "guarantees"), + (UniCase("algorithym"), "algorithm"), + (UniCase("scandinvia"), "scandinavia"), + (UniCase("volativity"), "volatility"), + (UniCase("councillor"), "councilor"), + (UniCase("normalising"), "normalizing"), + (UniCase("presicion"), "precision"), + (UniCase("trohpies"), "trophies"), + (UniCase("polgyon"), "polygon"), + (UniCase("appreciaite"), "appreciative"), + (UniCase("initiaitive"), "initiative"), + (UniCase("suasage"), "sausage"), + (UniCase("incorported"), "incorporated"), + (UniCase("counterprodutive"), "counterproductive"), + (UniCase("downvoteur"), "downvoters"), + (UniCase("phillipines"), "philippines"), + (UniCase("fictionalising"), "fictionalizing"), + (UniCase("legilsation"), "legislation"), + (UniCase("repubic"), "republic"), + (UniCase("shortenning"), "shortening"), + (UniCase("conveniece"), "convenience"), + (UniCase("impossibe"), "impossible"), + (UniCase("evolutionnary"), "evolutionary"), + (UniCase("windshied"), "windshield"), + (UniCase("intergrated"), "integrated"), + (UniCase("inpersonating"), "impersonating"), + (UniCase("introduceres"), "introduces"), + (UniCase("fundamentalt"), "fundamentalist"), + (UniCase("businessemen"), "businessmen"), + (UniCase("uruguary"), "uruguay"), + (UniCase("differientation"), "differentiation"), + (UniCase("progressioin"), "progressions"), + (UniCase("powerprint"), "powerpoint"), + (UniCase("cartdrige"), "cartridge"), + (UniCase("environmentaly"), "environmentally"), + (UniCase("moruning"), "mourning"), + (UniCase("automomous"), "autonomous"), + (UniCase("illitarate"), "illiterate"), + (UniCase("presitgious"), "prestigious"), + (UniCase("disgustosa"), "disgusts"), + (UniCase("leage"), "league"), + (UniCase("attachemnt"), "attachment"), + (UniCase("tendencias"), "tendencies"), + (UniCase("imbalancers"), "imbalances"), + (UniCase("photoshoppad"), "photoshopped"), + (UniCase("playhtroughs"), "playthroughs"), + (UniCase("rythmic"), "rhythmic"), + (UniCase("informella"), "informal"), + (UniCase("technicials"), "technicians"), + (UniCase("abbreviato"), "abbreviation"), + (UniCase("optimim"), "optimism"), + (UniCase("contestans"), "contests"), + (UniCase("pyschopathic"), "psychopathic"), + (UniCase("critisising"), "criticising"), + (UniCase("recreacional"), "recreational"), + (UniCase("assoicate"), "associate"), + (UniCase("earpluggs"), "earplugs"), + (UniCase("questiond"), "questioned"), + (UniCase("discources"), "discourse"), + (UniCase("emmisarry"), "emissary"), + (UniCase("diganostic"), "diagnostic"), + (UniCase("criminalty"), "criminally"), + (UniCase("intimidatie"), "intimidated"), + (UniCase("examind"), "examined"), + (UniCase("conselation"), "consolation"), + (UniCase("substitutue"), "substitutes"), + (UniCase("penatgon"), "pentagon"), + (UniCase("permissin"), "permissions"), + (UniCase("degrase"), "degrasse"), + (UniCase("suspenso"), "suspension"), + (UniCase("proposse"), "proposes"), + (UniCase("provokative"), "provocative"), + (UniCase("constitutn"), "constituents"), + (UniCase("miserablely"), "miserably"), + (UniCase("wnat"), "want"), + (UniCase("occaisonal"), "occasional"), + (UniCase("counsellor"), "counselor"), + (UniCase("prestigieus"), "prestigious"), + (UniCase("mediterainnean"), "mediterranean"), + (UniCase("indepentent"), "independent"), + (UniCase("prostetution"), "prostitution"), + (UniCase("characteritics"), "characteristic"), + (UniCase("darnkess"), "darkness"), + (UniCase("generationnal"), "generational"), + (UniCase("beardude"), "bearded"), + (UniCase("fingernals"), "fingernails"), + (UniCase("severide"), "severed"), + (UniCase("misogynystic"), "misogynistic"), + (UniCase("intangibile"), "intangible"), + (UniCase("temperment"), "temperament"), + (UniCase("supplemant"), "supplemental"), + (UniCase("randomez"), "randomized"), + (UniCase("cleareance"), "clearance"), + (UniCase("laundrey"), "laundry"), + (UniCase("homosexuels"), "homosexuals"), + (UniCase("illegitamate"), "illegitimate"), + (UniCase("energised"), "energized"), + (UniCase("anaolgue"), "analogue"), + (UniCase("unprepaired"), "unprepared"), + (UniCase("scandianvians"), "scandinavian"), + (UniCase("consumation"), "consumption"), + (UniCase("bankrutpcy"), "bankruptcy"), + (UniCase("particpiate"), "participated"), + (UniCase("bartendars"), "bartenders"), + (UniCase("unavoidble"), "unavoidable"), + (UniCase("petrolem"), "petroleum"), + (UniCase("suppreses"), "suppress"), + (UniCase("algorithyms"), "algorithm"), + (UniCase("mitre"), "miter"), + (UniCase("accomodating"), "accommodating"), + (UniCase("delutional"), "delusional"), + (UniCase("restricing"), "restricting"), + (UniCase("campiagns"), "campaigns"), + (UniCase("feminisim"), "feminism"), + (UniCase("wokr"), "work"), + (UniCase("santroum"), "santorum"), + (UniCase("ciruclating"), "circulating"), + (UniCase("dismentled"), "dismantled"), + (UniCase("cuddleys"), "cuddles"), + (UniCase("strangreal"), "strangle"), + (UniCase("administraion"), "administration"), + (UniCase("characterz"), "characterize"), + (UniCase("procotols"), "protocols"), + (UniCase("hambruger"), "hamburger"), + (UniCase("chronicels"), "chronicles"), + (UniCase("separacion"), "separation"), + (UniCase("unifroms"), "uniforms"), + (UniCase("steroetypes"), "stereotypes"), + (UniCase("arguabley"), "arguably"), + (UniCase("formery"), "formerly"), + (UniCase("consenquently"), "consequently"), + (UniCase("distirbutor"), "distributor"), + (UniCase("emotionella"), "emotionally"), + (UniCase("definetely"), "definitely"), + (UniCase("periphreal"), "peripheral"), + (UniCase("laborotory"), "laboratory"), + (UniCase("provinence"), "providence"), + (UniCase("nominatino"), "nominations"), + (UniCase("paediatrics"), "pediatrics"), + (UniCase("sprayade"), "sprayed"), + (UniCase("completen"), "complement"), + (UniCase("prograstination"), "procrastination"), + (UniCase("introduse"), "introduces"), + (UniCase("rhaspody"), "rhapsody"), + (UniCase("peircing"), "piercing"), + (UniCase("illustraton"), "illustration"), + (UniCase("surronded"), "surrounded"), + (UniCase("redistributin"), "redistribution"), + (UniCase("confederecy"), "confederacy"), + (UniCase("recgonized"), "recognized"), + (UniCase("apostropes"), "apostrophe"), + (UniCase("atrittion"), "attrition"), + (UniCase("conencts"), "connects"), + (UniCase("massivelly"), "massively"), + (UniCase("mchanics"), "mechanics"), + (UniCase("explorating"), "exploration"), + (UniCase("specialices"), "specializes"), + (UniCase("recommens"), "recommends"), + (UniCase("positve"), "positive"), + (UniCase("cpatains"), "captains"), + (UniCase("narhwal"), "narwhal"), + (UniCase("prostituye"), "prostitute"), + (UniCase("maintance"), "maintenance"), + (UniCase("photograpgh"), "photographs"), + (UniCase("influenses"), "influences"), + (UniCase("prologe"), "prologue"), + (UniCase("littlefigner"), "littlefinger"), + (UniCase("inexperiened"), "inexperienced"), + (UniCase("faggotus"), "faggots"), + (UniCase("recruites"), "recruits"), + (UniCase("misunterstood"), "misunderstood"), + (UniCase("intermitent"), "intermittent"), + (UniCase("esponiage"), "espionage"), + (UniCase("sednetary"), "sedentary"), + (UniCase("tongiht"), "tonight"), + (UniCase("porcelian"), "porcelain"), + (UniCase("coincidente"), "coincidence"), + (UniCase("baptised"), "baptized"), + (UniCase("fanaticos"), "fanatics"), + (UniCase("mouldy"), "moldy"), + (UniCase("preimums"), "premiums"), + (UniCase("stressers"), "stresses"), + (UniCase("plough"), "plow"), + (UniCase("depresso"), "depression"), + (UniCase("burrtio"), "burrito"), + (UniCase("decentraliced"), "decentralized"), + (UniCase("disupted"), "disputed"), + (UniCase("absintence"), "abstinence"), + (UniCase("technichan"), "technician"), + (UniCase("surounding"), "surrounding"), + (UniCase("magnicifent"), "magnificent"), + (UniCase("ellpitical"), "elliptical"), + (UniCase("regularised"), "regularized"), + (UniCase("plagarisim"), "plagiarism"), + (UniCase("giltchy"), "glitchy"), + (UniCase("moderacion"), "moderation"), + (UniCase("suspicians"), "suspicions"), + (UniCase("independense"), "independents"), + (UniCase("techicians"), "technicians"), + (UniCase("commishioned"), "commissioned"), + (UniCase("convinceing"), "convincing"), + (UniCase("contimplating"), "contemplating"), + (UniCase("memorise"), "memorize"), + (UniCase("presumibly"), "presumably"), + (UniCase("unconsciouslly"), "unconsciously"), + (UniCase("resonet"), "resonate"), + (UniCase("manslaugher"), "manslaughter"), + (UniCase("precisie"), "precise"), + (UniCase("tourmanent"), "tournaments"), + (UniCase("willfuly"), "willfully"), + (UniCase("alcoholc"), "alcoholics"), + (UniCase("miracalous"), "miraculous"), + (UniCase("goitre"), "goiter"), + (UniCase("translater"), "translator"), + (UniCase("presumabely"), "presumably"), + (UniCase("substatial"), "substantial"), + (UniCase("sterilises"), "sterilizes"), + (UniCase("formallize"), "formalize"), + (UniCase("snigles"), "singles"), + (UniCase("preferablly"), "preferably"), + (UniCase("transitionnal"), "transitional"), + (UniCase("frigthening"), "frightening"), + (UniCase("whrilwind"), "whirlwind"), + (UniCase("mathemagically"), "mathematically"), + (UniCase("intriuging"), "intriguing"), + (UniCase("suposed"), "supposed"), + (UniCase("yoghurt"), "yogurt"), + (UniCase("launchered"), "launched"), + (UniCase("judgemet"), "judgements"), + (UniCase("invinvible"), "invincible"), + (UniCase("currentusa"), "currents"), + (UniCase("executiner"), "executioner"), + (UniCase("rehtorical"), "rhetorical"), + (UniCase("earliet"), "earliest"), + (UniCase("microtranscations"), "microtransactions"), + (UniCase("generalizate"), "generalize"), + (UniCase("milion"), "million"), + (UniCase("morgatges"), "mortgages"), + (UniCase("identifible"), "identifiable"), + (UniCase("literatre"), "literate"), + (UniCase("arbitrairly"), "arbitrarily"), + (UniCase("emabssy"), "embassy"), + (UniCase("persicution"), "persecution"), + (UniCase("monstorsity"), "monstrosity"), + (UniCase("mroe"), "more"), + (UniCase("observabil"), "observable"), + (UniCase("perscribe"), "prescribe"), + (UniCase("resaurant"), "restaurant"), + (UniCase("quarterbackers"), "quarterbacks"), + (UniCase("predicitng"), "predicting"), + (UniCase("anaesthetises"), "anesthetizes"), + (UniCase("continentes"), "continents"), + (UniCase("explanetory"), "explanatory"), + (UniCase("badnwagon"), "bandwagon"), + (UniCase("awakend"), "awakened"), + (UniCase("affliation"), "affliction"), + (UniCase("construciton"), "construction"), + (UniCase("processos"), "processors"), + (UniCase("bodybuliding"), "bodybuilding"), + (UniCase("ridicilousness"), "ridiculousness"), + (UniCase("createin"), "creatine"), + (UniCase("penninsular"), "peninsular"), + (UniCase("sepulcre"), "sepulchre"), + (UniCase("aboslve"), "absolve"), + (UniCase("misspellng"), "misspelling"), + (UniCase("recgonizes"), "recognizes"), + (UniCase("fromed"), "formed"), + (UniCase("devilers"), "delivers"), + (UniCase("transalted"), "translated"), + (UniCase("occasioanlly"), "occasionally"), + (UniCase("grandchildern"), "grandchildren"), + (UniCase("manoeuvrings"), "maneuverings"), + (UniCase("reboudning"), "rebounding"), + (UniCase("clarskon"), "clarkson"), + (UniCase("appriciate"), "appreciate"), + (UniCase("insecuritites"), "insecurities"), + (UniCase("distribuite"), "distribute"), + (UniCase("servans"), "servants"), + (UniCase("countertrap"), "counterpart"), + (UniCase("litres"), "liters"), + (UniCase("challeneged"), "challenged"), + (UniCase("continuemos"), "continues"), + (UniCase("initalising"), "initialising"), + (UniCase("responsiblities"), "responsibilities"), + (UniCase("negligeble"), "negligible"), + (UniCase("brimingham"), "birmingham"), + (UniCase("emphacized"), "emphasized"), + (UniCase("intereaction"), "intersection"), + (UniCase("calcualtions"), "calculations"), + (UniCase("instrumentul"), "instrumental"), + (UniCase("sheild"), "shield"), + (UniCase("equalisers"), "equalizers"), + (UniCase("satrically"), "satirically"), + (UniCase("invesitgate"), "investigate"), + (UniCase("periphirals"), "peripherals"), + (UniCase("mouldings"), "moldings"), + (UniCase("cinematogrpahy"), "cinematography"), + (UniCase("inexpierence"), "inexperienced"), + (UniCase("sympothize"), "sympathize"), + (UniCase("componant"), "component"), + (UniCase("definitlty"), "definitly"), + (UniCase("expolitation"), "exploitation"), + (UniCase("adjectiveus"), "adjectives"), + (UniCase("incunabla"), "incunabula"), + (UniCase("pubisher"), "publisher"), + (UniCase("verisions"), "revisions"), + (UniCase("prematurly"), "prematurely"), + (UniCase("noticabley"), "noticeably"), + (UniCase("progressivey"), "progressively"), + (UniCase("unbelievabley"), "unbelievably"), + (UniCase("chipest"), "chipset"), + (UniCase("intestins"), "intestines"), + (UniCase("consqeuences"), "consequence"), + (UniCase("crystalisation"), "crystallisation"), + (UniCase("crystsl"), "crystals"), + (UniCase("crocodille"), "crocodile"), + (UniCase("chequered"), "checkered"), + (UniCase("demonstrationens"), "demonstrations"), + (UniCase("obssesion"), "obsession"), + (UniCase("toursits"), "tourists"), + (UniCase("interchangeablely"), "interchangeably"), + (UniCase("moderatley"), "moderately"), + (UniCase("dungoen"), "dungeon"), + (UniCase("afghansitan"), "afghanistan"), + (UniCase("characterisitic"), "characteristic"), + (UniCase("covenat"), "covenant"), + (UniCase("bitterwseet"), "bittersweet"), + (UniCase("capteurs"), "captures"), + (UniCase("adaptes"), "adapters"), + (UniCase("retardatron"), "retardation"), + (UniCase("contributons"), "contributors"), + (UniCase("afircan"), "african"), + (UniCase("atmopsheric"), "atmospheric"), + (UniCase("encalve"), "enclave"), + (UniCase("dignitiy"), "dignity"), + (UniCase("discriminatoire"), "discriminate"), + (UniCase("allegiancies"), "allegiance"), + (UniCase("mexicain"), "mexican"), + (UniCase("innovaiton"), "innovations"), + (UniCase("mounring"), "mourning"), + (UniCase("sufferring"), "suffering"), + (UniCase("sexulaized"), "sexualized"), + (UniCase("intruige"), "intrigue"), + (UniCase("reminiscant"), "reminiscent"), + (UniCase("indocrtinated"), "indoctrinated"), + (UniCase("disturben"), "disturbance"), + (UniCase("lenghts"), "lengths"), + (UniCase("collobaration"), "collaboration"), + (UniCase("ytou"), "you"), + (UniCase("cardinales"), "cardinals"), + (UniCase("miligram"), "milligram"), + (UniCase("intimidante"), "intimidate"), + (UniCase("offisde"), "offside"), + (UniCase("masturbaing"), "masturbating"), + (UniCase("whther"), "whether"), + (UniCase("miniaturise"), "miniaturize"), + (UniCase("institutionilized"), "institutionalized"), + (UniCase("transkript"), "transcript"), + (UniCase("installus"), "installs"), + (UniCase("equivolents"), "equivalents"), + (UniCase("interesant"), "interest"), + (UniCase("masturabted"), "masturbated"), + (UniCase("contingecy"), "contingency"), + (UniCase("normalis"), "normals"), + (UniCase("specularite"), "speculative"), + (UniCase("bargaing"), "bargaining"), + (UniCase("lectureres"), "lectures"), + (UniCase("wehn"), "when"), + (UniCase("outrageouly"), "outrageously"), + (UniCase("asphlat"), "asphalt"), + (UniCase("soley"), "solely"), + (UniCase("moults"), "molts"), + (UniCase("exhibitons"), "exhibits"), + (UniCase("exclimation"), "exclamation"), + (UniCase("basilcy"), "basicly"), + (UniCase("presidenty"), "presidency"), + (UniCase("alchoolic"), "alcoholic"), + (UniCase("defenderes"), "defenders"), + (UniCase("jouranlism"), "journalism"), + (UniCase("aleniate"), "alienate"), + (UniCase("stong"), "strong"), + (UniCase("consending"), "consenting"), + (UniCase("biseuxal"), "bisexual"), + (UniCase("philippins"), "philippines"), + (UniCase("representatie"), "representatives"), + (UniCase("thundervolt"), "thunderbolt"), + (UniCase("idealises"), "idealizes"), + (UniCase("terrorsim"), "terrorism"), + (UniCase("sidleine"), "sideline"), + (UniCase("scrambeld"), "scrambled"), + (UniCase("redefinine"), "redefine"), + (UniCase("inapporpriate"), "inappropriate"), + (UniCase("equivilence"), "equivalence"), + (UniCase("apoligetic"), "apologetic"), + (UniCase("overvlocked"), "overclocked"), + (UniCase("synposis"), "synopsis"), + (UniCase("iritated"), "irritated"), + (UniCase("hamburgurs"), "hamburgers"), + (UniCase("psychedellic"), "psychedelic"), + (UniCase("actulay"), "actualy"), + (UniCase("historicans"), "historians"), + (UniCase("implicatii"), "implicit"), + (UniCase("hystorically"), "hysterically"), + (UniCase("promtply"), "promptly"), + (UniCase("legitimatelly"), "legitimately"), + (UniCase("contriceptives"), "contraceptives"), + (UniCase("heightend"), "heightened"), + (UniCase("phenonmena"), "phenomena"), + (UniCase("scientifc"), "scientific"), + (UniCase("uninterupted"), "uninterrupted"), + (UniCase("anceints"), "ancients"), + (UniCase("childrenis"), "childrens"), + (UniCase("prononciation"), "pronunciation"), + (UniCase("contentuous"), "contentious"), + (UniCase("politiikan"), "politician"), + (UniCase("guarnateed"), "guaranteed"), + (UniCase("devolopments"), "developments"), + (UniCase("thridly"), "thirdly"), + (UniCase("negilgence"), "negligence"), + (UniCase("transcripto"), "transcription"), + (UniCase("pruchase"), "purchase"), + (UniCase("brocolli"), "broccoli"), + (UniCase("comapany"), "company"), + (UniCase("emtpy"), "empty"), + (UniCase("multiplicaiton"), "multiplication"), + (UniCase("responibilities"), "responsibilities"), + (UniCase("asutria"), "austria"), + (UniCase("compartent"), "compartment"), + (UniCase("contextos"), "contexts"), + (UniCase("birgade"), "brigade"), + (UniCase("marskman"), "marksman"), + (UniCase("recognizible"), "recognizable"), + (UniCase("messaih"), "messiah"), + (UniCase("confilcts"), "conflicts"), + (UniCase("simplfy"), "simplify"), + (UniCase("volunteerd"), "volunteered"), + (UniCase("imaginatie"), "imaginative"), + (UniCase("restrictied"), "restrictive"), + (UniCase("tangeld"), "tangled"), + (UniCase("halloweeen"), "halloween"), + (UniCase("victimisation"), "victimization"), + (UniCase("hispters"), "hipsters"), + (UniCase("algoriths"), "algorithms"), + (UniCase("minisucle"), "miniscule"), + (UniCase("fragement"), "fragment"), + (UniCase("acknowlegde"), "acknowledge"), + (UniCase("cthuluh"), "cthulhu"), + (UniCase("mirorred"), "mirrored"), + (UniCase("almsot"), "almost"), + (UniCase("alomst"), "almost"), + (UniCase("specifiy"), "specify"), + (UniCase("philippinas"), "philippines"), + (UniCase("priviliged"), "privileged"), + (UniCase("constiutents"), "constituents"), + (UniCase("personis"), "persons"), + (UniCase("buhddist"), "buddhist"), + (UniCase("belives"), "believes"), + (UniCase("springfied"), "springfield"), + (UniCase("microscoptic"), "microscopic"), + (UniCase("sigthstone"), "sightstone"), + (UniCase("discriminted"), "discriminated"), + (UniCase("reconized"), "recognized"), + (UniCase("hospitolized"), "hospitalized"), + (UniCase("straightenend"), "straightened"), + (UniCase("vehemantly"), "vehemently"), + (UniCase("grammer"), "grammar"), + (UniCase("projecticle"), "projectile"), + (UniCase("pakistnai"), "pakistani"), + (UniCase("introduccion"), "introduction"), + (UniCase("graduacion"), "graduation"), + (UniCase("relasped"), "relapsed"), + (UniCase("vicseral"), "visceral"), + (UniCase("morroccan"), "moroccan"), + (UniCase("ehtically"), "ethically"), + (UniCase("preventitive"), "preventative"), + (UniCase("adherance"), "adherence"), + (UniCase("signleplayer"), "singleplayer"), + (UniCase("conjecutre"), "conjecture"), + (UniCase("adviseur"), "adviser"), + (UniCase("negiotate"), "negotiate"), + (UniCase("primordal"), "primordial"), + (UniCase("aquairum"), "aquarium"), + (UniCase("obsidain"), "obsidian"), + (UniCase("achilleous"), "achilles"), + (UniCase("interupt"), "interrupt"), + (UniCase("clincial"), "clinical"), + (UniCase("reyonlds"), "reynolds"), + (UniCase("resistes"), "resists"), + (UniCase("texutres"), "textures"), + (UniCase("stichted"), "stitched"), + (UniCase("functionaly"), "functionally"), + (UniCase("commtiment"), "commitments"), + (UniCase("replase"), "replaces"), + (UniCase("complination"), "complication"), + (UniCase("genrates"), "generates"), + (UniCase("invinsible"), "invincible"), + (UniCase("innocens"), "innocents"), + (UniCase("collaboratin"), "collaboration"), + (UniCase("legitematly"), "legitimately"), + (UniCase("assemblare"), "assemble"), + (UniCase("inrested"), "inserted"), + (UniCase("orchestrial"), "orchestra"), + (UniCase("componentes"), "components"), + (UniCase("lannistars"), "lannisters"), + (UniCase("definatlely"), "definately"), + (UniCase("assagne"), "assange"), + (UniCase("economicaly"), "economically"), + (UniCase("experimentan"), "experimentation"), + (UniCase("comdemnation"), "condemnation"), + (UniCase("woodowrking"), "woodworking"), + (UniCase("vaccume"), "vacuum"), + (UniCase("ethniticies"), "ethnicities"), + (UniCase("muscially"), "musically"), + (UniCase("compartmet"), "compartment"), + (UniCase("identificato"), "identification"), + (UniCase("academis"), "academics"), + (UniCase("everyteim"), "everytime"), + (UniCase("maneuveur"), "maneuver"), + (UniCase("presest"), "presets"), + (UniCase("prophesie"), "prophecies"), + (UniCase("briused"), "bruised"), + (UniCase("brutallity"), "brutally"), + (UniCase("abomonation"), "abomination"), + (UniCase("nationalises"), "nationalizes"), + (UniCase("springfeild"), "springfield"), + (UniCase("playthtoughs"), "playthroughs"), + (UniCase("neckbearders"), "neckbeards"), + (UniCase("extraordiary"), "extraordinary"), + (UniCase("idaeidae"), "idea"), + (UniCase("contemple"), "contemplate"), + (UniCase("equilibrim"), "equilibrium"), + (UniCase("varaint"), "variant"), + (UniCase("pressurises"), "pressurizes"), + (UniCase("tranzitions"), "transitions"), + (UniCase("newlsetter"), "newsletter"), + (UniCase("hweaton"), "wheaton"), + (UniCase("transylmania"), "transylvania"), + (UniCase("contenental"), "continental"), + (UniCase("expedicion"), "expedition"), + (UniCase("impractial"), "impractical"), + (UniCase("gimmickly"), "gimmicky"), + (UniCase("scandinacian"), "scandinavian"), + (UniCase("continuuity"), "continuity"), + (UniCase("charecterization"), "characterization"), + (UniCase("predisposte"), "predisposed"), + (UniCase("sumary"), "summary"), + (UniCase("characterising"), "characterizing"), + (UniCase("ligitation"), "litigation"), + (UniCase("monogymous"), "monogamous"), + (UniCase("contriubte"), "contributes"), + (UniCase("automonous"), "autonomous"), + (UniCase("techincally"), "technically"), + (UniCase("melatonion"), "melatonin"), + (UniCase("invulnarable"), "invulnerable"), + (UniCase("norhtwestern"), "northwestern"), + (UniCase("vectros"), "vectors"), + (UniCase("moisterizer"), "moisturizer"), + (UniCase("condradictions"), "contradictions"), + (UniCase("suppliementing"), "supplementing"), + (UniCase("defualts"), "defaults"), + (UniCase("imbalanaces"), "imbalances"), + (UniCase("accidantely"), "accidently"), + (UniCase("bueraucrats"), "bureaucrats"), + (UniCase("metropolitain"), "metropolitan"), + (UniCase("spoace"), "space"), + (UniCase("infiltrase"), "infiltrate"), + (UniCase("propertional"), "proportional"), + (UniCase("auther"), "author"), + (UniCase("curriculm"), "curriculum"), + (UniCase("roiters"), "rioters"), + (UniCase("periwankle"), "periwinkle"), + (UniCase("incompetance"), "incompetence"), + (UniCase("manifacturer"), "manufacturer"), + (UniCase("brusses"), "brussels"), + (UniCase("immobilisers"), "immobilizers"), + (UniCase("marginaal"), "marginal"), + (UniCase("trememdous"), "tremendous"), + (UniCase("rewachted"), "rewatched"), + (UniCase("mechanisim"), "mechanism"), + (UniCase("miscarridge"), "miscarriage"), + (UniCase("circuitos"), "circuits"), + (UniCase("palyable"), "playable"), + (UniCase("connecs"), "connects"), + (UniCase("dictarorship"), "dictatorship"), + (UniCase("destabilises"), "destabilizes"), + (UniCase("uncensorred"), "uncensored"), + (UniCase("authenitcation"), "authentication"), + (UniCase("heirachy"), "hierarchy"), + (UniCase("berkelely"), "berkeley"), + (UniCase("concious"), "conscious"), + (UniCase("interactes"), "interacts"), + (UniCase("notificaitons"), "notifications"), + (UniCase("cigeratte"), "cigarette"), + (UniCase("negoitations"), "negotiations"), + (UniCase("pyschotic"), "psychotic"), + (UniCase("summonr"), "summoner"), + (UniCase("sopohmore"), "sophomore"), + (UniCase("prohpets"), "prophets"), + (UniCase("vessells"), "vessels"), + (UniCase("prostitutiei"), "prostitute"), + (UniCase("explanatin"), "explanations"), + (UniCase("phongraph"), "phonograph"), + (UniCase("hafltime"), "halftime"), + (UniCase("vandalisim"), "vandalism"), + (UniCase("depserately"), "desperately"), + (UniCase("comprimise"), "compromise"), + (UniCase("sensitising"), "sensitizing"), + (UniCase("practhett"), "pratchett"), + (UniCase("paramaters"), "parameters"), + (UniCase("defectus"), "defects"), + (UniCase("imperialst"), "imperialist"), + (UniCase("instraments"), "instruments"), + (UniCase("frementation"), "fermentation"), + (UniCase("existenta"), "existential"), + (UniCase("halfiax"), "halifax"), + (UniCase("vandalise"), "vandalize"), + (UniCase("sermonise"), "sermonize"), + (UniCase("conviccion"), "conviction"), + (UniCase("bussiness"), "business"), + (UniCase("broadcat"), "broadcasts"), + (UniCase("sweetshart"), "sweetheart"), + (UniCase("reseptionist"), "receptionist"), + (UniCase("tradicional"), "traditional"), + (UniCase("garantee"), "guarantee"), + (UniCase("alturism"), "altruism"), + (UniCase("sihlouette"), "silhouette"), + (UniCase("intercoarse"), "intercourse"), + (UniCase("programmets"), "programmers"), + (UniCase("expliciet"), "explicit"), + (UniCase("commissionees"), "commissions"), + (UniCase("anecdotale"), "anecdote"), + (UniCase("flavorade"), "flavored"), + (UniCase("complecations"), "complications"), + (UniCase("candiens"), "candies"), + (UniCase("facsinated"), "fascinated"), + (UniCase("superstitios"), "superstitious"), + (UniCase("morhpine"), "morphine"), + (UniCase("miscommuniction"), "miscommunication"), + (UniCase("disciplinera"), "disciplinary"), + (UniCase("autonomos"), "autonomous"), + (UniCase("contiunation"), "continuation"), + (UniCase("assistanat"), "assistants"), + (UniCase("photoshipped"), "photoshopped"), + (UniCase("intrest"), "interest"), + (UniCase("realiest"), "earliest"), + (UniCase("singature"), "signature"), + (UniCase("informativo"), "information"), + (UniCase("weakensses"), "weaknesses"), + (UniCase("persistant"), "persistent"), + (UniCase("athleticisim"), "athleticism"), + (UniCase("judgementals"), "judgements"), + (UniCase("controvery"), "controversy"), + (UniCase("capitalises"), "capitalizes"), + (UniCase("progidy"), "prodigy"), + (UniCase("domiantes"), "dominates"), + (UniCase("discovere"), "discoveries"), + (UniCase("accidenlty"), "accidently"), + (UniCase("urainum"), "uranium"), + (UniCase("offesnively"), "offensively"), + (UniCase("coucil"), "council"), + (UniCase("narrativos"), "narratives"), + (UniCase("progatonists"), "protagonists"), + (UniCase("tranlsating"), "translating"), + (UniCase("subtitltes"), "subtitle"), + (UniCase("implosed"), "implode"), + (UniCase("agnostisim"), "agnosticism"), + (UniCase("bacehlors"), "bachelors"), + (UniCase("molestered"), "molested"), + (UniCase("qualitying"), "qualifying"), + (UniCase("anntenas"), "antennas"), + (UniCase("mercurcy"), "mercury"), + (UniCase("illustartor"), "illustrator"), + (UniCase("caramelising"), "caramelizing"), + (UniCase("differentiaton"), "differentiation"), + (UniCase("businessen"), "businessmen"), + (UniCase("implicati"), "implicit"), + (UniCase("teached"), "taught"), + (UniCase("plagierism"), "plagiarism"), + (UniCase("humouros"), "humorous"), + (UniCase("intoxinated"), "intoxicated"), + (UniCase("womanise"), "womanize"), + (UniCase("fundemantals"), "fundamentals"), + (UniCase("exhibicion"), "exhibition"), + (UniCase("propsect"), "prospect"), + (UniCase("trialers"), "trailers"), + (UniCase("deopsited"), "deposited"), + (UniCase("inticracies"), "intricacies"), + (UniCase("prostituate"), "prostitute"), + (UniCase("microwavees"), "microwaves"), + (UniCase("calculatin"), "calculations"), + (UniCase("vigourosly"), "vigorously"), + (UniCase("capabilites"), "capabilities"), + (UniCase("peripheria"), "peripheral"), + (UniCase("expalin"), "explain"), + (UniCase("tangencially"), "tangentially"), + (UniCase("wealthly"), "wealthy"), + (UniCase("unreasonablly"), "unreasonably"), + (UniCase("consecuently"), "consequently"), + (UniCase("arlingotn"), "arlington"), + (UniCase("movei"), "movie"), + (UniCase("pendulm"), "pendulum"), + (UniCase("transational"), "transitional"), + (UniCase("manifestating"), "manifestation"), + (UniCase("dubsetp"), "dubstep"), + (UniCase("distributiors"), "distributors"), + (UniCase("legitamitely"), "legitimately"), + (UniCase("favour"), "favor"), + (UniCase("terminalogy"), "terminology"), + (UniCase("downvotres"), "downvoters"), + (UniCase("procedings"), "proceedings"), + (UniCase("objectivety"), "objectivity"), + (UniCase("circuncised"), "circumcised"), + (UniCase("apologistics"), "apologists"), + (UniCase("phenominon"), "phenomenon"), + (UniCase("arragned"), "arranged"), + (UniCase("neighbores"), "neighbours"), + (UniCase("benchmakrs"), "benchmarks"), + (UniCase("disception"), "discretion"), + (UniCase("reactionairy"), "reactionary"), + (UniCase("euthanazia"), "euthanasia"), + (UniCase("scriputres"), "scriptures"), + (UniCase("skepticisim"), "skepticism"), + (UniCase("abusrdity"), "absurdity"), + (UniCase("accomodates"), "accommodates"), + (UniCase("activatin"), "activation"), + (UniCase("tengentially"), "tangentially"), + (UniCase("blizzcoin"), "blizzcon"), + (UniCase("instantaneu"), "instantaneous"), + (UniCase("confidencial"), "confidential"), + (UniCase("liuetenant"), "lieutenant"), + (UniCase("generaties"), "generate"), + (UniCase("assasinations"), "assassinations"), + (UniCase("renteris"), "renters"), + (UniCase("creationis"), "creations"), + (UniCase("legitamate"), "legitimate"), + (UniCase("formativos"), "formations"), + (UniCase("achievemnt"), "achievement"), + (UniCase("momentairly"), "momentarily"), + (UniCase("protray"), "portray"), + (UniCase("treasue"), "treasure"), + (UniCase("brutallly"), "brutally"), + (UniCase("intrepret"), "interpret"), + (UniCase("fractales"), "fractals"), + (UniCase("contintent"), "contingent"), + (UniCase("respiritory"), "respiratory"), + (UniCase("plaestine"), "palestine"), + (UniCase("cessationalism"), "sensationalism"), + (UniCase("introspectin"), "introspection"), + (UniCase("syphyllis"), "syphilis"), + (UniCase("fetishiste"), "fetishes"), + (UniCase("quantitites"), "quantities"), + (UniCase("lifetimers"), "lifetimes"), + (UniCase("manoeuvred"), "maneuvered"), + (UniCase("questionalbe"), "questionable"), + (UniCase("insistenze"), "insistence"), + (UniCase("mortailty"), "mortality"), + (UniCase("emblamatic"), "emblematic"), + (UniCase("adminastrator"), "administrator"), + (UniCase("infectin"), "infections"), + (UniCase("enterprice"), "enterprise"), + (UniCase("orginazational"), "organizational"), + (UniCase("competitioners"), "competitions"), + (UniCase("sincerelly"), "sincerely"), + (UniCase("reparied"), "repaired"), + (UniCase("reproducable"), "reproducible"), + (UniCase("catacyslm"), "cataclysm"), + (UniCase("casued"), "caused"), + (UniCase("cleverleys"), "cleverly"), + (UniCase("poenis"), "penis"), + (UniCase("comfrotable"), "comfortable"), + (UniCase("fundumentalists"), "fundamentalists"), + (UniCase("prothsetic"), "prosthetic"), + (UniCase("steriotype"), "stereotype"), + (UniCase("initaled"), "initialed"), + (UniCase("definaltey"), "definately"), + (UniCase("propriotary"), "proprietary"), + (UniCase("prejucide"), "prejudice"), + (UniCase("cheesecave"), "cheesecake"), + (UniCase("inevtiably"), "inevitably"), + (UniCase("comfirmation"), "confirmation"), + (UniCase("communite"), "communities"), + (UniCase("uncompetive"), "uncompetitive"), + (UniCase("imapcts"), "impacts"), + (UniCase("aproximate"), "approximate"), + (UniCase("concentrato"), "concentration"), + (UniCase("repersentations"), "representations"), + (UniCase("professionel"), "professional"), + (UniCase("refereneced"), "referenced"), + (UniCase("catastrphe"), "catastrophe"), + (UniCase("regulats"), "regulators"), + (UniCase("vulernable"), "vulnerable"), + (UniCase("weaselled"), "weaseled"), + (UniCase("headphoens"), "headphones"), + (UniCase("finsihes"), "finishes"), + (UniCase("alternatly"), "alternately"), + (UniCase("enahncing"), "enhancing"), + (UniCase("libertariansm"), "libertarianism"), + (UniCase("girzzly"), "grizzly"), + (UniCase("horriblely"), "horribly"), + (UniCase("deflektion"), "deflection"), + (UniCase("probablybe"), "probable"), + (UniCase("recipiant"), "recipient"), + (UniCase("irrationnal"), "irrational"), + (UniCase("crystalisk"), "crystals"), + (UniCase("republicons"), "republicans"), + (UniCase("infalability"), "infallibility"), + (UniCase("ofocurse"), "ofcourse"), + (UniCase("corralates"), "correlates"), + (UniCase("consentrated"), "concentrated"), + (UniCase("marignal"), "marginal"), + (UniCase("constarints"), "constraint"), + (UniCase("sloughtering"), "slaughtering"), + (UniCase("descirption"), "descriptions"), + (UniCase("glicthed"), "glitched"), + (UniCase("cataclysim"), "cataclysm"), + (UniCase("genitales"), "genitals"), + (UniCase("demobilisation"), "demobilization"), + (UniCase("disclipine"), "discipline"), + (UniCase("asteriods"), "asteroids"), + (UniCase("analysise"), "analyses"), + (UniCase("oragnes"), "oranges"), + (UniCase("anticipare"), "anticipate"), + (UniCase("inevitablely"), "inevitably"), + (UniCase("introduceras"), "introduces"), + (UniCase("straightden"), "straightened"), + (UniCase("propenents"), "proponents"), + (UniCase("wrekcing"), "wrecking"), + (UniCase("compassione"), "compassionate"), + (UniCase("spontanes"), "spontaneous"), + (UniCase("fraudelant"), "fraudulent"), + (UniCase("pretentieus"), "pretentious"), + (UniCase("messagease"), "messages"), + (UniCase("demeanour"), "demeanor"), + (UniCase("complacient"), "complacent"), + (UniCase("accessibily"), "accessibility"), + (UniCase("honeymon"), "honeymoon"), + (UniCase("systemetic"), "systematic"), + (UniCase("perspectie"), "perspectives"), + (UniCase("legendarisk"), "legendaries"), + (UniCase("instutition"), "institution"), + (UniCase("vulberability"), "vulnerability"), + (UniCase("medacine"), "medicine"), + (UniCase("gaoling"), "jailing"), + (UniCase("incentivice"), "incentive"), + (UniCase("counterpary"), "counterplay"), + (UniCase("misinterperting"), "misinterpreting"), + (UniCase("vibratin"), "vibration"), + (UniCase("presuasion"), "persuasion"), + (UniCase("apostrophie"), "apostrophe"), + (UniCase("propagandising"), "propagandizing"), + (UniCase("aposltes"), "apostles"), + (UniCase("onmiscient"), "omniscient"), + (UniCase("homogeneus"), "homogeneous"), + (UniCase("disperportionate"), "disproportionate"), + (UniCase("composicion"), "composition"), + (UniCase("imperialstic"), "imperialist"), + (UniCase("marevlous"), "marvelous"), + (UniCase("scracthed"), "scratched"), + (UniCase("inflexion"), "inflection"), + (UniCase("preformer"), "performer"), + (UniCase("considerble"), "considerable"), + (UniCase("centruies"), "centuries"), + (UniCase("aleged"), "alleged"), + (UniCase("thirstay"), "thirsty"), + (UniCase("dicitonaries"), "dictionaries"), + (UniCase("extermely"), "extremely"), + (UniCase("negotiaton"), "negotiation"), + (UniCase("antisipated"), "anticipated"), + (UniCase("fundimental"), "fundamental"), + (UniCase("delegaties"), "delegate"), + (UniCase("notificatons"), "notifications"), + (UniCase("aggrandisement"), "aggrandizement"), + (UniCase("absolutiste"), "absolutes"), + (UniCase("ahev"), "have"), + (UniCase("screenshit"), "screenshot"), + (UniCase("termianls"), "terminals"), + (UniCase("towelled"), "toweled"), + (UniCase("discoloured"), "discolored"), + (UniCase("udnerestimate"), "underestimated"), + (UniCase("victimising"), "victimizing"), + (UniCase("convertirle"), "convertible"), + (UniCase("desperatedly"), "desperately"), + (UniCase("assymetrical"), "asymmetrical"), + (UniCase("narcisissm"), "narcissism"), + (UniCase("sarcams"), "sarcasm"), + (UniCase("yoursleves"), "yourselves"), + (UniCase("representatief"), "representative"), + (UniCase("upsteam"), "upstream"), + (UniCase("socialistos"), "socialists"), + (UniCase("mechaninc"), "mechanic"), + (UniCase("legitamicy"), "legitimacy"), + (UniCase("impusle"), "impulse"), + (UniCase("australina"), "australians"), + (UniCase("islmaic"), "islamic"), + (UniCase("engramms"), "engrams"), + (UniCase("patriarical"), "patriarchal"), + (UniCase("athiets"), "athiest"), + (UniCase("ionised"), "ionized"), + (UniCase("accomondating"), "accommodating"), + (UniCase("psichological"), "psychological"), + (UniCase("professionalisme"), "professionals"), + (UniCase("ocurred"), "occurred"), + (UniCase("casion"), "caisson"), + (UniCase("extered"), "exerted"), + (UniCase("indigenos"), "indigenous"), + (UniCase("despiste"), "despise"), + (UniCase("commuications"), "communications"), + (UniCase("beastley"), "beastly"), + (UniCase("professin"), "professions"), + (UniCase("contribue"), "contribute"), + (UniCase("temporarity"), "temporarily"), + (UniCase("aroud"), "around"), + (UniCase("inititiave"), "initiatives"), + (UniCase("desintegration"), "disintegration"), + (UniCase("sweatshrit"), "sweatshirt"), + (UniCase("extermist"), "extremist"), + (UniCase("reciprocant"), "reciprocate"), + (UniCase("laucnhes"), "launches"), + (UniCase("acceptes"), "accepts"), + (UniCase("exteriour"), "exterior"), + (UniCase("blulets"), "bullets"), + (UniCase("sophmore"), "sophomore"), + (UniCase("drivelled"), "driveled"), + (UniCase("realistisch"), "realistic"), + (UniCase("complainig"), "complaining"), + (UniCase("playofs"), "playoffs"), + (UniCase("girlfreinds"), "girlfriends"), + (UniCase("accpets"), "accepts"), + (UniCase("metabolising"), "metabolizing"), + (UniCase("vegitables"), "vegetables"), + (UniCase("fullscrean"), "fullscreen"), + (UniCase("budgest"), "budgets"), + (UniCase("tunnles"), "tunnels"), + (UniCase("uncontrolablly"), "uncontrollably"), + (UniCase("crystalls"), "crystals"), + (UniCase("vehementely"), "vehemently"), + (UniCase("drasticaly"), "drastically"), + (UniCase("denomitator"), "denominator"), + (UniCase("obstructin"), "obstruction"), + (UniCase("secularising"), "secularizing"), + (UniCase("diasspointed"), "dissapointed"), + (UniCase("incluse"), "includes"), + (UniCase("orginazation"), "organization"), + (UniCase("dichomoty"), "dichotomy"), + (UniCase("sulphates"), "sulfates"), + (UniCase("benglas"), "bengals"), + (UniCase("overclokcing"), "overclocking"), + (UniCase("goldfisch"), "goldfish"), + (UniCase("theature"), "theater"), + (UniCase("worhsipping"), "worshipping"), + (UniCase("percaution"), "precaution"), + (UniCase("capatilist"), "capitalist"), + (UniCase("includ"), "include"), + (UniCase("interveen"), "intervene"), + (UniCase("acoutsic"), "acoustic"), + (UniCase("bodybuildig"), "bodybuilding"), + (UniCase("subconsiously"), "subconsciously"), + (UniCase("haematologist"), "hematologist"), + (UniCase("refeeres"), "referees"), + (UniCase("politicas"), "politics"), + (UniCase("concencrate"), "concentrate"), + (UniCase("molestaion"), "molestation"), + (UniCase("hostpot"), "hotspot"), + (UniCase("collegaue"), "colleague"), + (UniCase("fraudelent"), "fraudulent"), + (UniCase("accumilation"), "accumulation"), + (UniCase("availablity"), "availability"), + (UniCase("periperhals"), "peripherals"), + (UniCase("aforementiond"), "aforementioned"), + (UniCase("photogrpahy"), "photography"), + (UniCase("conciders"), "considers"), + (UniCase("lubicrant"), "lubricant"), + (UniCase("fabrices"), "fabrics"), + (UniCase("dingity"), "dignity"), + (UniCase("gymnasitcs"), "gymnastics"), + (UniCase("rectanglar"), "rectangular"), + (UniCase("heartborne"), "heartbroken"), + (UniCase("krankenstein"), "frankenstein"), + (UniCase("forumla"), "formula"), + (UniCase("antagonisitc"), "antagonistic"), + (UniCase("seach"), "search"), + (UniCase("muncipalities"), "municipalities"), + (UniCase("electricion"), "electrician"), + (UniCase("westmnister"), "westminster"), + (UniCase("homogenised"), "homogenized"), + (UniCase("distributie"), "distributed"), + (UniCase("sustainble"), "sustainable"), + (UniCase("dargons"), "dragons"), + (UniCase("grifeing"), "griefing"), + (UniCase("conviced"), "convinced"), + (UniCase("refereneces"), "references"), + (UniCase("confederatie"), "confederate"), + (UniCase("alsot"), "also"), + (UniCase("anecdots"), "anecdotes"), + (UniCase("inconveinence"), "inconvenience"), + (UniCase("cincinnatti"), "cincinnati"), + (UniCase("permitts"), "permits"), + (UniCase("noveau"), "nouveau"), + (UniCase("tacticts"), "tactics"), + (UniCase("unnecassarily"), "unnecessarily"), + (UniCase("imaganative"), "imaginative"), + (UniCase("overtunred"), "overturned"), + (UniCase("dunegon"), "dungeon"), + (UniCase("organismus"), "organisms"), + (UniCase("overtunned"), "overturned"), + (UniCase("helicpoter"), "helicopter"), + (UniCase("remnans"), "remnants"), + (UniCase("preinitalize"), "preinitialize"), + (UniCase("alochol"), "alcohol"), + (UniCase("strangets"), "strangest"), + (UniCase("distastful"), "distasteful"), + (UniCase("cursaders"), "crusaders"), + (UniCase("parametros"), "parameters"), + (UniCase("veiwership"), "viewership"), + (UniCase("haorder"), "hoarder"), + (UniCase("manufacter"), "manufacture"), + (UniCase("detectaron"), "detector"), + (UniCase("supportes"), "supports"), + (UniCase("phenomenonly"), "phenomenally"), + (UniCase("shenanigins"), "shenanigans"), + (UniCase("astromonical"), "astronomical"), + (UniCase("commemmorating"), "commemorating"), + (UniCase("nominet"), "nominate"), + (UniCase("sucesfuly"), "successfully"), + (UniCase("muktitasking"), "multitasking"), + (UniCase("analyses"), "analyzes"), + (UniCase("vaporises"), "vaporizes"), + (UniCase("subtelty"), "subtlety"), + (UniCase("remasterd"), "remastered"), + (UniCase("apocalipse"), "apocalypse"), + (UniCase("againnst"), "against"), + (UniCase("disproportionatly"), "disproportionately"), + (UniCase("organsim"), "organism"), + (UniCase("ocarnia"), "ocarina"), + (UniCase("apsotles"), "apostles"), + (UniCase("rebouns"), "rebounds"), + (UniCase("segragation"), "segregation"), + (UniCase("interferred"), "interfere"), + (UniCase("temptetion"), "temptation"), + (UniCase("ulitmatum"), "ultimatum"), + (UniCase("jugdement"), "judgement"), + (UniCase("underfaker"), "undertaker"), + (UniCase("corrisponding"), "corresponding"), + (UniCase("regularis"), "regulars"), + (UniCase("ethincally"), "ethnically"), + (UniCase("confise"), "confines"), + (UniCase("recognices"), "recognizes"), + (UniCase("capmbell"), "campbell"), + (UniCase("realisitc"), "realistic"), + (UniCase("discrapency"), "discrepancy"), + (UniCase("restrittive"), "restrictive"), + (UniCase("connatation"), "connotation"), + (UniCase("mouthpeice"), "mouthpiece"), + (UniCase("rewriet"), "rewrite"), + (UniCase("apsirations"), "aspirations"), + (UniCase("omnipotant"), "omnipotent"), + (UniCase("decentrilized"), "decentralized"), + (UniCase("counterpont"), "counterpoint"), + (UniCase("defauls"), "defaults"), + (UniCase("dishonord"), "dishonored"), + (UniCase("neice"), "niece"), + (UniCase("documentacion"), "documentation"), + (UniCase("densitiy"), "density"), + (UniCase("transimssion"), "transmissions"), + (UniCase("savanha"), "savannah"), + (UniCase("tempermeant"), "temperament"), + (UniCase("addtion"), "addition"), + (UniCase("ourselvs"), "ourselves"), + (UniCase("parlaiment"), "parliament"), + (UniCase("definatily"), "definately"), + (UniCase("contacs"), "contacts"), + (UniCase("goergia"), "georgia"), + (UniCase("unexplaind"), "unexplained"), + (UniCase("sentiers"), "sentries"), + (UniCase("minimise"), "minimize"), + (UniCase("gigabtye"), "gigabyte"), + (UniCase("instade"), "instead"), + (UniCase("convertables"), "convertibles"), + (UniCase("exponentiella"), "exponential"), + (UniCase("saturdsy"), "saturdays"), + (UniCase("environmetal"), "environmental"), + (UniCase("touristes"), "tourists"), + (UniCase("industiral"), "industrial"), + (UniCase("acquantainces"), "acquaintances"), + (UniCase("gamepaly"), "gameplay"), + (UniCase("girafffe"), "giraffe"), + (UniCase("advocats"), "advocates"), + (UniCase("againts"), "against"), + (UniCase("fundamentaly"), "fundamentally"), + (UniCase("pennsilvania"), "pennsylvania"), + (UniCase("drivelling"), "driveling"), + (UniCase("magnetising"), "magnetizing"), + (UniCase("amphetemine"), "amphetamine"), + (UniCase("efficientcy"), "efficiently"), + (UniCase("unsolicitied"), "unsolicited"), + (UniCase("appreciatin"), "appreciation"), + (UniCase("economicas"), "economics"), + (UniCase("scholarhips"), "scholarship"), + (UniCase("creater"), "creature"), + (UniCase("intrepretation"), "interpretation"), + (UniCase("perpretated"), "perpetrated"), + (UniCase("completent"), "complement"), + (UniCase("substituion"), "substitution"), + (UniCase("armstorng"), "armstrong"), + (UniCase("negiotating"), "negotiating"), + (UniCase("indefineable"), "undefinable"), + (UniCase("cruical"), "crucial"), + (UniCase("feilding"), "fielding"), + (UniCase("poingant"), "poignant"), + (UniCase("fermentaion"), "fermentation"), + (UniCase("anglicises"), "anglicizes"), + (UniCase("turbins"), "turbines"), + (UniCase("gynaecologists"), "gynecologists"), + (UniCase("intraverted"), "introverted"), + (UniCase("unbelieveble"), "unbelievable"), + (UniCase("infograhpic"), "infographic"), + (UniCase("humanaties"), "humanities"), + (UniCase("dependened"), "depended"), + (UniCase("delporable"), "deplorable"), + (UniCase("paraphraseing"), "paraphrasing"), + (UniCase("disatisfied"), "dissatisfied"), + (UniCase("atheisim"), "atheism"), + (UniCase("seperate"), "separate"), + (UniCase("settlemets"), "settlements"), + (UniCase("accessoire"), "accessories"), + (UniCase("vaccinae"), "vaccinated"), + (UniCase("adealide"), "adelaide"), + (UniCase("geneologies"), "genealogies"), + (UniCase("cricitising"), "criticising"), + (UniCase("armagedden"), "armageddon"), + (UniCase("ressurected"), "resurrected"), + (UniCase("buisness"), "business"), + (UniCase("umbrela"), "umbrella"), + (UniCase("profitabilty"), "profitability"), + (UniCase("filmmakes"), "filmmakers"), + (UniCase("oppositition"), "opposition"), + (UniCase("reevaulate"), "reevaluate"), + (UniCase("emergend"), "emerged"), + (UniCase("strucutre"), "structure"), + (UniCase("exagerrating"), "exaggerating"), + (UniCase("collapsers"), "collapses"), + (UniCase("bookamrks"), "bookmarks"), + (UniCase("observeres"), "observers"), + (UniCase("fingersi"), "fingertips"), + (UniCase("professers"), "professors"), + (UniCase("intriguied"), "intrigue"), + (UniCase("homeopothy"), "homeopathy"), + (UniCase("cinematograhy"), "cinematography"), + (UniCase("diosese"), "diocese"), + (UniCase("schozophrenia"), "schizophrenia"), + (UniCase("authobiography"), "autobiography"), + (UniCase("inlcudes"), "includes"), + (UniCase("auxilliary"), "auxiliary"), + (UniCase("controvesy"), "controversy"), + (UniCase("scritped"), "scripted"), + (UniCase("mesmerising"), "mesmerizing"), + (UniCase("interesing"), "interesting"), + (UniCase("unaccaptable"), "unacceptable"), + (UniCase("prestigous"), "prestigious"), + (UniCase("inheirted"), "inherited"), + (UniCase("morphie"), "morphine"), + (UniCase("tentalces"), "tentacles"), + (UniCase("xenophibia"), "xenophobia"), + (UniCase("adovcated"), "advocated"), + (UniCase("intelectual"), "intellectual"), + (UniCase("motorcicles"), "motorcycles"), + (UniCase("incldue"), "include"), + (UniCase("appartment"), "apartment"), + (UniCase("disastorus"), "disastrous"), + (UniCase("sryacuse"), "syracuse"), + (UniCase("beginnig"), "beginning"), + (UniCase("discosure"), "discourse"), + (UniCase("nostriles"), "nostrils"), + (UniCase("magicain"), "magician"), + (UniCase("almighy"), "almighty"), + (UniCase("optimise"), "optimize"), + (UniCase("orpahns"), "orphans"), + (UniCase("sykwalker"), "skywalker"), + (UniCase("practiclly"), "practically"), + (UniCase("reveller"), "reveler"), + (UniCase("provoactive"), "provocative"), + (UniCase("catholicsim"), "catholicism"), + (UniCase("playthrouhgs"), "playthroughs"), + (UniCase("regeneraton"), "regeneration"), + (UniCase("deceptivley"), "deceptive"), + (UniCase("inquiriy"), "inquiry"), + (UniCase("flavour"), "flavor"), + (UniCase("independentiste"), "independents"), + (UniCase("prescripcion"), "prescription"), + (UniCase("enrolement"), "enrollment"), + (UniCase("rewritte"), "rewrite"), + (UniCase("sacrificas"), "sacrifices"), + (UniCase("phantoom"), "phantom"), + (UniCase("futurers"), "futures"), + (UniCase("travellerhd"), "travelled"), + (UniCase("eyebros"), "eyebrows"), + (UniCase("animatte"), "animate"), + (UniCase("improvie"), "improvised"), + (UniCase("jailbrek"), "jailbreak"), + (UniCase("capitolized"), "capitalized"), + (UniCase("victoriuous"), "victorious"), + (UniCase("complimenty"), "complimentary"), + (UniCase("confederancy"), "confederacy"), + (UniCase("meidcare"), "medicare"), + (UniCase("decendants"), "descendants"), + (UniCase("hospitible"), "hospitable"), + (UniCase("hallunication"), "hallucination"), + (UniCase("acknowlegded"), "acknowledged"), + (UniCase("disciplies"), "disciplines"), + (UniCase("stressende"), "stressed"), + (UniCase("liecester"), "leicester"), + (UniCase("trundel"), "trundle"), + (UniCase("healither"), "healthier"), + (UniCase("ampethamine"), "amphetamine"), + (UniCase("genuienly"), "genuinely"), + (UniCase("bianry"), "binary"), + (UniCase("disocgraphy"), "discography"), + (UniCase("demandas"), "demands"), + (UniCase("coalese"), "coalesce"), + (UniCase("forsting"), "frosting"), + (UniCase("ultimely"), "ultimately"), + (UniCase("photoshoppped"), "photoshopped"), + (UniCase("sweathsirt"), "sweatshirt"), + (UniCase("correctivo"), "correction"), + (UniCase("improvments"), "improvements"), + (UniCase("recoves"), "recovers"), + (UniCase("catacylsm"), "cataclysm"), + (UniCase("cathderal"), "cathedral"), + (UniCase("manipualtive"), "manipulative"), + (UniCase("allopones"), "allophones"), + (UniCase("physciatrists"), "psychiatrists"), + (UniCase("incorproate"), "incorporated"), + (UniCase("cathloics"), "catholics"), + (UniCase("browine"), "brownie"), + (UniCase("expolited"), "exploited"), + (UniCase("difficulites"), "difficulties"), + (UniCase("coudlnt"), "couldnt"), + (UniCase("atheltic"), "athletic"), + (UniCase("cruetly"), "cruelty"), + (UniCase("urbanised"), "urbanized"), + (UniCase("somethinhg"), "somethings"), + (UniCase("psychemedics"), "psychedelics"), + (UniCase("encarceration"), "incarceration"), + (UniCase("californiaman"), "californian"), + (UniCase("exercizes"), "exercise"), + (UniCase("liveatream"), "livestream"), + (UniCase("soveits"), "soviets"), + (UniCase("obligitary"), "obligatory"), + (UniCase("transmorfers"), "transformer"), + (UniCase("manipluation"), "manipulation"), + (UniCase("frustrsted"), "frustrates"), + (UniCase("confrentational"), "confrontational"), + (UniCase("enivitable"), "inevitable"), + (UniCase("ommiting"), "omitting"), + (UniCase("snythesis"), "synthesis"), + (UniCase("parliamantary"), "parliamentary"), + (UniCase("predescesors"), "predecessors"), + (UniCase("substutite"), "substitutes"), + (UniCase("dishonour"), "dishonor"), + (UniCase("definatetly"), "definately"), + (UniCase("wlacott"), "walcott"), + (UniCase("efficeintly"), "efficiently"), + (UniCase("recognised"), "recognized"), + (UniCase("bannisters"), "banisters"), + (UniCase("ciriculum"), "curriculum"), + (UniCase("underestamate"), "underestimate"), + (UniCase("favoruites"), "favourites"), + (UniCase("monitoreada"), "monitored"), + (UniCase("downloadbel"), "downloadable"), + (UniCase("proleteriat"), "proletariat"), + (UniCase("personalises"), "personalizes"), + (UniCase("fractalius"), "fractals"), + (UniCase("americares"), "americas"), + (UniCase("wrestlewar"), "wrestler"), + (UniCase("transmittor"), "transmitter"), + (UniCase("starnation"), "starvation"), + (UniCase("relaibility"), "reliability"), + (UniCase("vegtable"), "vegetable"), + (UniCase("comisioning"), "commissioning"), + (UniCase("imploed"), "implode"), + (UniCase("condolensces"), "condolences"), + (UniCase("fanfcition"), "fanfiction"), + (UniCase("terrorities"), "territories"), + (UniCase("earthquackes"), "earthquakes"), + (UniCase("insturctor"), "instructor"), + (UniCase("temerature"), "temperature"), + (UniCase("manifactured"), "manufactured"), + (UniCase("tawainese"), "taiwanese"), + (UniCase("condeferacy"), "confederacy"), + (UniCase("computacional"), "computational"), + (UniCase("irresistably"), "irresistibly"), + (UniCase("legitimitely"), "legitimately"), + (UniCase("intermittient"), "intermittent"), + (UniCase("initiaitve"), "initiatives"), + (UniCase("foriegn"), "foreign"), + (UniCase("naturalise"), "naturalize"), + (UniCase("neutraly"), "neutrality"), + (UniCase("secratery"), "secretary"), + (UniCase("attirbute"), "attribute"), + (UniCase("stratigically"), "strategically"), + (UniCase("particiapnts"), "participant"), + (UniCase("fortunetely"), "fortunately"), + (UniCase("sotrmfront"), "stormfront"), + (UniCase("distrubitions"), "distributions"), + (UniCase("refrigerar"), "refrigerator"), + (UniCase("rolepaly"), "roleplay"), + (UniCase("marchmallows"), "marshmallows"), + (UniCase("sufferage"), "suffrage"), + (UniCase("conceved"), "concede"), + (UniCase("metahpor"), "metaphor"), + (UniCase("aplication"), "application"), + (UniCase("gaolbreak"), "jailbreak"), + (UniCase("undertunes"), "undertones"), + (UniCase("tatoo"), "tattoo"), + (UniCase("pavillion"), "pavilion"), + (UniCase("defintiion"), "definitions"), + (UniCase("celebirty"), "celebrity"), + (UniCase("caucaisan"), "caucasian"), + (UniCase("cardaic"), "cardiac"), + (UniCase("messgaed"), "messaged"), + (UniCase("completaste"), "completes"), + (UniCase("destinaton"), "destination"), + (UniCase("manifastation"), "manifestation"), + (UniCase("playgroud"), "playground"), + (UniCase("extraploate"), "extrapolate"), + (UniCase("insufficiant"), "insufficient"), + (UniCase("voleyball"), "volleyball"), + (UniCase("improsonment"), "imprisonment"), + (UniCase("artificialy"), "artificially"), + (UniCase("traumatises"), "traumatizes"), + (UniCase("altnerately"), "alternately"), + (UniCase("vandalises"), "vandalizes"), + (UniCase("nationella"), "national"), + (UniCase("parenthasis"), "parenthesis"), + (UniCase("unrealisitc"), "unrealistic"), + (UniCase("correspondants"), "correspondents"), + (UniCase("donwloading"), "downloading"), + (UniCase("conlcuded"), "concluded"), + (UniCase("reconicle"), "reconcile"), + (UniCase("disagreeed"), "disagreed"), + (UniCase("negativaty"), "negativity"), + (UniCase("suspencion"), "suspension"), + (UniCase("protrayal"), "portrayal"), + (UniCase("retroactivley"), "retroactively"), + (UniCase("catalogued"), "cataloged"), + (UniCase("belligerant"), "belligerent"), + (UniCase("discoverys"), "discovers"), + (UniCase("exising"), "existing"), + (UniCase("hypcorite"), "hypocrite"), + (UniCase("stragetic"), "strategic"), + (UniCase("legitimt"), "legitimate"), + (UniCase("photograpy"), "photography"), + (UniCase("mechanise"), "mechanize"), + (UniCase("marixsm"), "marxism"), + (UniCase("collectief"), "collective"), + (UniCase("procede"), "proceed"), + (UniCase("homoepathy"), "homeopathy"), + (UniCase("physiciens"), "physicians"), + (UniCase("compliacted"), "complicate"), + (UniCase("densley"), "densely"), + (UniCase("multiplebgs"), "multiples"), + (UniCase("heretosexual"), "heterosexual"), + (UniCase("lifesytles"), "lifestyles"), + (UniCase("fireballls"), "fireballs"), + (UniCase("pertians"), "pertains"), + (UniCase("ukrainiens"), "ukrainians"), + (UniCase("degridation"), "degradation"), + (UniCase("diplomancy"), "diplomacy"), + (UniCase("materialises"), "materializes"), + (UniCase("concelaer"), "concealer"), + (UniCase("repeatadly"), "repeatedly"), + (UniCase("armenain"), "armenian"), + (UniCase("authorititive"), "authoritative"), + (UniCase("massachusettes"), "massachusetts"), + (UniCase("downloas"), "downloads"), + (UniCase("handlade"), "handled"), + (UniCase("openess"), "openness"), + (UniCase("overwhlemed"), "overwhelmed"), + (UniCase("referendim"), "referendum"), + (UniCase("prosocuted"), "prosecuted"), + (UniCase("princessses"), "princesses"), + (UniCase("absolue"), "absolute"), + (UniCase("adversiting"), "advertising"), + (UniCase("franchices"), "franchises"), + (UniCase("festivalens"), "festivals"), + (UniCase("oesophagus"), "esophagus"), + (UniCase("puplications"), "publications"), + (UniCase("combinatins"), "combinations"), + (UniCase("representitve"), "representative"), + (UniCase("conduiting"), "conducting"), + (UniCase("voicemal"), "voicemail"), + (UniCase("overhpyed"), "overhyped"), + (UniCase("adres"), "address"), + (UniCase("unrelaible"), "unreliable"), + (UniCase("deocrative"), "decorative"), + (UniCase("subsidezed"), "subsidized"), + (UniCase("convincente"), "convenient"), + (UniCase("decentralisation"), "decentralization"), + (UniCase("inlcuded"), "included"), + (UniCase("mabyelline"), "maybelline"), + (UniCase("supermarkeds"), "supermarkets"), + (UniCase("docrines"), "doctrines"), + (UniCase("whic"), "which"), + (UniCase("mircocenter"), "microcenter"), + (UniCase("oppressiun"), "oppressing"), + (UniCase("cognitivie"), "cognitive"), + (UniCase("gentials"), "genitals"), + (UniCase("charecteristic"), "characteristic"), + (UniCase("haristyle"), "hairstyle"), + (UniCase("smarpthone"), "smartphones"), + (UniCase("sucessot"), "successor"), + (UniCase("reveiwers"), "reviewers"), + (UniCase("distatse"), "distaste"), + (UniCase("celebirties"), "celebrities"), + (UniCase("internationalised"), "internationalized"), + (UniCase("pointeres"), "pointers"), + (UniCase("deminsions"), "dimensions"), + (UniCase("devasted"), "devastated"), + (UniCase("inflatible"), "inflatable"), + (UniCase("competitoin"), "competitions"), + (UniCase("pertoleum"), "petroleum"), + (UniCase("imprisonned"), "imprisoned"), + (UniCase("guantanano"), "guantanamo"), + (UniCase("paedophile"), "pedophile"), + (UniCase("tranlsate"), "translate"), + (UniCase("substraction"), "subtraction"), + (UniCase("breatsfeeding"), "breastfeeding"), + (UniCase("millon"), "million"), + (UniCase("falcones"), "falcons"), + (UniCase("supermarkten"), "supermarket"), + (UniCase("inprovements"), "improvements"), + (UniCase("ubsubscribed"), "unsubscribed"), + (UniCase("commentsry"), "commenters"), + (UniCase("thermodynamcis"), "thermodynamics"), + (UniCase("implementating"), "implementation"), + (UniCase("ilness"), "illness"), + (UniCase("progressivsm"), "progressives"), + (UniCase("archetipes"), "archetypes"), + (UniCase("rudimentatry"), "rudimentary"), + (UniCase("confriming"), "confirming"), + (UniCase("interpretatin"), "interpretations"), + (UniCase("phycisian"), "physician"), + (UniCase("unnistalling"), "uninstalling"), + (UniCase("overemphasised"), "overemphasized"), + (UniCase("powerhorse"), "powerhouse"), + (UniCase("circunvent"), "circumvent"), + (UniCase("laguages"), "languages"), + (UniCase("agains"), "against"), + (UniCase("misunderstanidng"), "misunderstandings"), + (UniCase("counterfeight"), "counterfeit"), + (UniCase("formallity"), "formally"), + (UniCase("inspireras"), "inspires"), + (UniCase("beyoncye"), "beyonce"), + (UniCase("valdiated"), "validated"), + (UniCase("dissspointed"), "dissapointed"), + (UniCase("publsih"), "publish"), + (UniCase("qualificaitons"), "qualifications"), + (UniCase("distincion"), "distinction"), + (UniCase("flutterhsy"), "fluttershy"), + (UniCase("nutriens"), "nutrients"), + (UniCase("appreciste"), "appreciates"), + (UniCase("jewellery"), "jewelry"), + (UniCase("undertsand"), "understands"), + (UniCase("constasnt"), "constants"), + (UniCase("minituare"), "miniature"), + (UniCase("opprotunities"), "opportunities"), + (UniCase("accrediation"), "accreditation"), + (UniCase("conescutive"), "consecutive"), + (UniCase("rienforcements"), "reinforcements"), + (UniCase("dominaton"), "domination"), + (UniCase("upcomming"), "upcoming"), + (UniCase("combusion"), "combustion"), + (UniCase("isalmists"), "islamists"), + (UniCase("thyat"), "that"), + (UniCase("appetities"), "appetite"), + (UniCase("thernodynamics"), "thermodynamics"), + (UniCase("affilate"), "affiliate"), + (UniCase("sinsiter"), "sinister"), + (UniCase("regenarate"), "regenerate"), + (UniCase("auctioners"), "auctions"), + (UniCase("attemp"), "attempt"), + (UniCase("forgieners"), "foreigners"), + (UniCase("placeholdr"), "placeholder"), + (UniCase("airosft"), "airsoft"), + (UniCase("sportmansship"), "sportsmanship"), + (UniCase("armageddin"), "armageddon"), + (UniCase("disterbance"), "disturbance"), + (UniCase("paralells"), "parallels"), + (UniCase("physcology"), "psychology"), + (UniCase("contribuit"), "contribute"), + (UniCase("sunfiber"), "sunfire"), + (UniCase("umpredictable"), "unpredictable"), + (UniCase("rectangual"), "rectangular"), + (UniCase("depersonalises"), "depersonalizes"), + (UniCase("tailgateing"), "tailgating"), + (UniCase("participents"), "participants"), + (UniCase("anonymos"), "anonymous"), + (UniCase("tyhat"), "that"), + (UniCase("contrictions"), "contractions"), + (UniCase("neckbeardese"), "neckbeards"), + (UniCase("convirtible"), "convertible"), + (UniCase("surplanted"), "supplanted"), + (UniCase("cancelled"), "canceled"), + (UniCase("brisben"), "brisbane"), + (UniCase("rationalises"), "rationalizes"), + (UniCase("accidentes"), "accidents"), + (UniCase("comitting"), "committing"), + (UniCase("nauseuos"), "nauseous"), + (UniCase("doctirne"), "doctrine"), + (UniCase("confrontaion"), "confrontation"), + (UniCase("revoultion"), "revolution"), + (UniCase("kilomoters"), "kilometers"), + (UniCase("romanmania"), "romanian"), + (UniCase("atomsphere"), "atmosphere"), + (UniCase("compainons"), "companions"), + (UniCase("modernise"), "modernize"), + (UniCase("beethoveen"), "beethoven"), + (UniCase("herione"), "heroine"), + (UniCase("theroist"), "theorist"), + (UniCase("linguisitic"), "linguistic"), + (UniCase("alternatiely"), "alternately"), + (UniCase("enviromental"), "environmental"), + (UniCase("anyhting"), "anything"), + (UniCase("dortumnd"), "dortmund"), + (UniCase("reciprociate"), "reciprocate"), + (UniCase("tailord"), "tailored"), + (UniCase("racistas"), "racists"), + (UniCase("experiemnted"), "experimented"), + (UniCase("concersation"), "conservation"), + (UniCase("esitmate"), "estimate"), + (UniCase("midfieldiers"), "midfielders"), + (UniCase("bilsters"), "blisters"), + (UniCase("tenderise"), "tenderize"), + (UniCase("complciated"), "complicate"), + (UniCase("unsusbtantiated"), "unsubstantiated"), + (UniCase("sharkening"), "sharpening"), + (UniCase("smarthpone"), "smartphone"), + (UniCase("ryenolds"), "reynolds"), + (UniCase("uninterneted"), "uninterested"), + (UniCase("subtances"), "substances"), + (UniCase("generalizaton"), "generalization"), + (UniCase("ocasioned"), "occasioned"), + (UniCase("gypises"), "gypsies"), + (UniCase("electrinic"), "electrician"), + (UniCase("stealthely"), "stealthy"), + (UniCase("transfere"), "transferred"), + (UniCase("congratulatons"), "congratulations"), + (UniCase("pyramind"), "pyramid"), + (UniCase("neckbeardus"), "neckbeards"), + (UniCase("religiousy"), "religiously"), + (UniCase("enxt"), "next"), + (UniCase("convencional"), "conventional"), + (UniCase("execising"), "exercising"), + (UniCase("recomended"), "recommended"), + (UniCase("irresponsibe"), "irresponsible"), + (UniCase("altruisitic"), "altruistic"), + (UniCase("importently"), "importantly"), + (UniCase("segretation"), "segregation"), + (UniCase("projectin"), "projection"), + (UniCase("galdiator"), "gladiator"), + (UniCase("retierment"), "retirement"), + (UniCase("compatibiliy"), "compatibility"), + (UniCase("lightining"), "lighting"), + (UniCase("pulverised"), "pulverized"), + (UniCase("agnostacism"), "agnosticism"), + (UniCase("archictect"), "architect"), + (UniCase("revelead"), "revealed"), + (UniCase("arguemnet"), "arguement"), + (UniCase("invitating"), "invitation"), + (UniCase("confilct"), "conflict"), + (UniCase("assmebly"), "assembly"), + (UniCase("prairy"), "prairie"), + (UniCase("philosophised"), "philosophized"), + (UniCase("sacarstic"), "sarcastic"), + (UniCase("institutiei"), "institute"), + (UniCase("branier"), "brainer"), + (UniCase("histarical"), "historical"), + (UniCase("interchangably"), "interchangeably"), + (UniCase("implicacion"), "implication"), + (UniCase("insertos"), "inserts"), + (UniCase("inexplicabley"), "inexplicably"), + (UniCase("dissatsified"), "dissatisfied"), + (UniCase("starwberries"), "strawberries"), + (UniCase("harrased"), "harassed"), + (UniCase("autoatttack"), "autoattack"), + (UniCase("abrutply"), "abruptly"), + (UniCase("competitivos"), "competitions"), + (UniCase("resintalled"), "reinstalled"), + (UniCase("stubborness"), "stubbornness"), + (UniCase("torrentors"), "torrents"), + (UniCase("platfromer"), "platformer"), + (UniCase("exportas"), "exports"), + (UniCase("promethues"), "prometheus"), + (UniCase("specialises"), "specializes"), + (UniCase("switserland"), "switzerland"), + (UniCase("threadened"), "threaded"), + (UniCase("convertire"), "converter"), + (UniCase("reformes"), "reforms"), + (UniCase("noteworty"), "noteworthy"), + (UniCase("transferers"), "transfers"), + (UniCase("misunderstantings"), "misunderstandings"), + (UniCase("incognitio"), "incognito"), + (UniCase("chidlish"), "childish"), + (UniCase("desgining"), "designing"), + (UniCase("ploughmen"), "plowmen"), + (UniCase("inexplicaby"), "inexplicably"), + (UniCase("starined"), "strained"), + (UniCase("necessites"), "necessities"), + (UniCase("invalubale"), "invaluable"), + (UniCase("universaly"), "universally"), + (UniCase("humitidy"), "humidity"), + (UniCase("fideling"), "fielding"), + (UniCase("permamently"), "permanently"), + (UniCase("steriliser"), "sterilizer"), + (UniCase("ghettoising"), "ghettoizing"), + (UniCase("obliderated"), "obliterated"), + (UniCase("vicotries"), "victories"), + (UniCase("bodybuiling"), "bodybuilding"), + (UniCase("marshmalows"), "marshmallows"), + (UniCase("hemipsheres"), "hemisphere"), + (UniCase("contestais"), "contests"), + (UniCase("flawlessley"), "flawlessly"), + (UniCase("coloured"), "colored"), + (UniCase("patronos"), "patrons"), + (UniCase("japanes"), "japanese"), + (UniCase("argumentitive"), "argumentative"), + (UniCase("parameteres"), "parameters"), + (UniCase("pbulisher"), "publisher"), + (UniCase("bomberos"), "bombers"), + (UniCase("awared"), "awarded"), + (UniCase("yodelling"), "yodeling"), + (UniCase("elimanation"), "elimination"), + (UniCase("introductury"), "introductory"), + (UniCase("printerest"), "printers"), + (UniCase("privilegier"), "privilege"), + (UniCase("synonymis"), "synonyms"), + (UniCase("gimmics"), "gimmicks"), + (UniCase("depolying"), "deploying"), + (UniCase("pracitcally"), "practically"), + (UniCase("narcisisstic"), "narcissistic"), + (UniCase("facinated"), "fascinated"), + (UniCase("comfortabley"), "comfortably"), + (UniCase("fascits"), "fascist"), + (UniCase("raelly"), "really"), + (UniCase("apacolypse"), "apocalypse"), + (UniCase("deinitalized"), "deinitialized"), + (UniCase("politey"), "politely"), + (UniCase("intruduction"), "introduction"), + (UniCase("victorios"), "victorious"), + (UniCase("sociologial"), "sociological"), + (UniCase("womanises"), "womanizes"), + (UniCase("indoensia"), "indonesia"), + (UniCase("aprehensive"), "apprehensive"), + (UniCase("powerlisting"), "powerlifting"), + (UniCase("unnecesarily"), "unnecessarily"), + (UniCase("consdidered"), "considered"), + (UniCase("statits"), "statist"), + (UniCase("cynicisim"), "cynicism"), + (UniCase("fashoinable"), "fashionable"), + (UniCase("verical"), "vertical"), + (UniCase("problimatic"), "problematic"), + (UniCase("supermaket"), "supermarket"), + (UniCase("substanitally"), "substantially"), + (UniCase("exacarbated"), "exacerbated"), + (UniCase("metrolopis"), "metropolis"), + (UniCase("conversoin"), "conversions"), + (UniCase("concurrect"), "concurrent"), + (UniCase("refrubished"), "refurbished"), + (UniCase("chatedral"), "cathedral"), + (UniCase("theoritical"), "theoretical"), + (UniCase("compressio"), "compressor"), + (UniCase("mormones"), "mormons"), + (UniCase("scrambe"), "scramble"), + (UniCase("anitsocial"), "antisocial"), + (UniCase("illnesss"), "illnesses"), + (UniCase("decriminalise"), "decriminalize"), + (UniCase("astronaunts"), "astronaut"), + (UniCase("exceptionaly"), "exceptionally"), + (UniCase("mosqutio"), "mosquito"), + (UniCase("restructing"), "restricting"), + (UniCase("downvotees"), "downvoters"), + (UniCase("offically"), "officially"), + (UniCase("craotia"), "croatia"), + (UniCase("harbouring"), "harboring"), + (UniCase("diminsihing"), "diminishing"), + (UniCase("famousy"), "famously"), + (UniCase("bowdlerised"), "bowdlerized"), + (UniCase("statememts"), "statements"), + (UniCase("recongizable"), "recognizable"), + (UniCase("actresss"), "actresses"), + (UniCase("libertariaism"), "libertarianism"), + (UniCase("worshipped"), "worshiped"), + (UniCase("apprentise"), "apprentice"), + (UniCase("automodorator"), "automoderator"), + (UniCase("backfeild"), "backfield"), + (UniCase("participativo"), "participation"), + (UniCase("pithces"), "pitches"), + (UniCase("paramiters"), "parameters"), + (UniCase("christiaan"), "christian"), + (UniCase("completeion"), "completion"), + (UniCase("culrpit"), "culprit"), + (UniCase("thirteeen"), "thirteen"), + (UniCase("terminacion"), "termination"), + (UniCase("imablanced"), "imbalanced"), + (UniCase("ideologisen"), "ideologies"), + (UniCase("garnison"), "garrison"), + (UniCase("infromed"), "informed"), + (UniCase("supportied"), "supported"), + (UniCase("archaeologist"), "archeologist"), + (UniCase("acquifer"), "acquire"), + (UniCase("amplifiy"), "amplify"), + (UniCase("characteristc"), "characteristics"), + (UniCase("trianers"), "trainers"), + (UniCase("criticising"), "criticizing"), + (UniCase("dangeroulsy"), "dangerously"), + (UniCase("gunslanger"), "gunslinger"), + (UniCase("beachead"), "beachhead"), + (UniCase("dispence"), "dispense"), + (UniCase("compartmentalising"), "compartmentalizing"), + (UniCase("organims"), "organism"), + (UniCase("cashies"), "cashiers"), + (UniCase("commentries"), "commenters"), + (UniCase("passiones"), "passions"), + (UniCase("neglectn"), "neglecting"), + (UniCase("privitized"), "privatized"), + (UniCase("affiliaton"), "affiliation"), + (UniCase("expectionally"), "exceptionally"), + (UniCase("counterfest"), "counterfeit"), + (UniCase("projectie"), "projectile"), + (UniCase("aggreed"), "agreed"), + (UniCase("rythm"), "rhythm"), + (UniCase("compones"), "compose"), + (UniCase("statiskt"), "statist"), + (UniCase("lonley"), "lonely"), + (UniCase("designade"), "designated"), + (UniCase("commecen"), "commence"), + (UniCase("chillead"), "chilled"), + (UniCase("categorising"), "categorizing"), + (UniCase("infromative"), "informative"), + (UniCase("respektable"), "respectable"), + (UniCase("manoeuvres"), "maneuvers"), + (UniCase("reportedy"), "reportedly"), + (UniCase("absuridty"), "absurdity"), + (UniCase("hypotehtically"), "hypothetically"), + (UniCase("specializare"), "specialize"), + (UniCase("thorats"), "throats"), + (UniCase("avilable"), "available"), + (UniCase("obiedence"), "obedience"), + (UniCase("premesis"), "premises"), + (UniCase("adverst"), "adverts"), + (UniCase("carrotus"), "carrots"), + (UniCase("bengalos"), "bengals"), + (UniCase("ogliarchy"), "oligarchy"), + (UniCase("pallete"), "palette"), + (UniCase("neccesarily"), "necessarily"), + (UniCase("satirising"), "satirizing"), + (UniCase("apolagizing"), "apologizing"), + (UniCase("simplet"), "simplest"), + (UniCase("prefereble"), "preferable"), + (UniCase("violentce"), "violence"), + (UniCase("beautifuly"), "beautifully"), + (UniCase("plagiarise"), "plagiarize"), + (UniCase("constaints"), "constraints"), + (UniCase("hismelf"), "himself"), + (UniCase("connitations"), "connotations"), + (UniCase("chemsitry"), "chemistry"), + (UniCase("universite"), "universities"), + (UniCase("advertisiment"), "advertisement"), + (UniCase("hungarin"), "hungarian"), + (UniCase("stupdily"), "stupidly"), + (UniCase("narcissict"), "narcissist"), + (UniCase("threshhold"), "threshold"), + (UniCase("progressivas"), "progressives"), + (UniCase("ridiculize"), "ridicule"), + (UniCase("heidelburg"), "heidelberg"), + (UniCase("paraylsis"), "paralysis"), + (UniCase("protruberance"), "protuberance"), + (UniCase("importamt"), "important"), + (UniCase("concideration"), "consideration"), + (UniCase("intimitely"), "intimately"), + (UniCase("orgasmus"), "orgasms"), + (UniCase("proffesional"), "professional"), + (UniCase("protaginst"), "protagonist"), + (UniCase("descuss"), "discuss"), + (UniCase("lincolon"), "lincoln"), + (UniCase("philosohpies"), "philosophies"), + (UniCase("cosiness"), "coziness"), + (UniCase("abomanation"), "abomination"), + (UniCase("activizion"), "activision"), + (UniCase("iraninas"), "iranians"), + (UniCase("stratgey"), "strategy"), + (UniCase("predominantley"), "predominantly"), + (UniCase("villegas"), "villages"), + (UniCase("erroneos"), "erroneous"), + (UniCase("paristan"), "partisan"), + (UniCase("berskerer"), "berserker"), + (UniCase("symoblism"), "symbolism"), + (UniCase("imediately"), "immediately"), + (UniCase("merficul"), "merciful"), + (UniCase("musculaire"), "muscular"), + (UniCase("independnet"), "independents"), + (UniCase("noticable"), "noticeable"), + (UniCase("patriarca"), "patriarchal"), + (UniCase("rabinnical"), "rabbinical"), + (UniCase("rosettta"), "rosetta"), + (UniCase("unprofessionnal"), "unprofessional"), + (UniCase("vitenamese"), "vietnamese"), + (UniCase("invaldiates"), "invalidates"), + (UniCase("reciprocrate"), "reciprocate"), + (UniCase("organizarme"), "organizer"), + (UniCase("poisonis"), "poisons"), + (UniCase("sucession"), "succession"), + (UniCase("aqcuired"), "acquired"), + (UniCase("archaeologically"), "archeologically"), + (UniCase("beligan"), "belgian"), + (UniCase("symetry"), "symmetry"), + (UniCase("morroco"), "morocco"), + (UniCase("unemployent"), "unemployment"), + (UniCase("transforners"), "transformers"), + (UniCase("neglicible"), "negligible"), + (UniCase("waht"), "what"), + (UniCase("krudish"), "kurdish"), + (UniCase("graphiclly"), "graphically"), + (UniCase("impossibillity"), "impossibility"), + (UniCase("inexperiente"), "inexperience"), + (UniCase("embarrissing"), "embarrassing"), + (UniCase("devestated"), "devastated"), + (UniCase("analyseas"), "analyses"), + (UniCase("motherobard"), "motherboards"), + (UniCase("strengthin"), "strengthen"), + (UniCase("missionarry"), "missionary"), + (UniCase("lentiles"), "lentils"), + (UniCase("colleauges"), "colleagues"), + (UniCase("encyrption"), "encryption"), + (UniCase("jefferty"), "jeffery"), + (UniCase("freedomers"), "freedoms"), + (UniCase("remould"), "remold"), + (UniCase("coutnerpart"), "counterpart"), + (UniCase("spetember"), "september"), + (UniCase("moustahce"), "moustache"), + (UniCase("numercial"), "numerical"), + (UniCase("gerat"), "great"), + (UniCase("bisexuella"), "bisexual"), + (UniCase("soundtrakc"), "soundtracks"), + (UniCase("icongnito"), "incognito"), + (UniCase("definutely"), "definately"), + (UniCase("occurances"), "occurrences"), + (UniCase("tricolours"), "tricolors"), + (UniCase("designacion"), "designation"), + (UniCase("lecteurs"), "lectures"), + (UniCase("illuminiti"), "illuminati"), + (UniCase("cinematograhpy"), "cinematography"), + (UniCase("seceeded"), "succeeded"), + (UniCase("compromessi"), "compromises"), + (UniCase("manufactored"), "manufactured"), + (UniCase("electroncs"), "electrons"), + (UniCase("quanitites"), "quantities"), + (UniCase("creationsist"), "creationist"), + (UniCase("eraticly"), "erratically"), + (UniCase("ravelled"), "raveled"), + (UniCase("liscense"), "license"), + (UniCase("equiped"), "equipped"), + (UniCase("intimidaton"), "intimidation"), + (UniCase("dungeoun"), "dungeon"), + (UniCase("manoeuvrability"), "maneuverability"), + (UniCase("langauge"), "language"), + (UniCase("benevelont"), "benevolent"), + (UniCase("raosting"), "roasting"), + (UniCase("incarcaration"), "incarceration"), + (UniCase("weightlifitng"), "weightlifting"), + (UniCase("pyschology"), "psychology"), + (UniCase("mathematicaly"), "mathematically"), + (UniCase("investiagtions"), "investigations"), + (UniCase("earilest"), "earliest"), + (UniCase("singualrity"), "singularity"), + (UniCase("concelear"), "concealer"), + (UniCase("straightend"), "straightened"), + (UniCase("wisconisn"), "wisconsin"), + (UniCase("seraches"), "searches"), + (UniCase("renegeration"), "regeneration"), + (UniCase("epitomises"), "epitomizes"), + (UniCase("commerical"), "commercial"), + (UniCase("continuacion"), "continuation"), + (UniCase("submerines"), "submarines"), + (UniCase("regulatin"), "regulations"), + (UniCase("entreprenures"), "entrepreneurs"), + (UniCase("dialectos"), "dialects"), + (UniCase("manufacturs"), "manufactures"), + (UniCase("synonmys"), "synonyms"), + (UniCase("concentraion"), "concentration"), + (UniCase("overklocked"), "overclocked"), + (UniCase("pyschiatrist"), "psychiatrist"), + (UniCase("defualt"), "default"), + (UniCase("triguered"), "triggered"), + (UniCase("soluable"), "soluble"), + (UniCase("stakeboarding"), "skateboarding"), + (UniCase("notoriosly"), "notoriously"), + (UniCase("profitible"), "profitable"), + (UniCase("snowbals"), "snowballs"), + (UniCase("literallly"), "literally"), + (UniCase("intensitiy"), "intensity"), + (UniCase("controdicting"), "contradicting"), + (UniCase("fundumentalist"), "fundamentalist"), + (UniCase("confessin"), "confession"), + (UniCase("shrivelling"), "shriveling"), + (UniCase("gravelled"), "graveled"), + (UniCase("ligthweight"), "lightweight"), + (UniCase("humanitary"), "humanity"), + (UniCase("appareil"), "apparel"), + (UniCase("progresssing"), "progressing"), + (UniCase("tje"), "the"), + (UniCase("ironcially"), "ironically"), + (UniCase("gorumet"), "gourmet"), + (UniCase("spoonfulls"), "spoonfuls"), + (UniCase("enamoured"), "enamored"), + (UniCase("overwhemled"), "overwhelmed"), + (UniCase("crusiers"), "cruisers"), + (UniCase("indiffernece"), "indifference"), + (UniCase("fecthes"), "fetches"), + (UniCase("neurosicence"), "neuroscience"), + (UniCase("photagrapher"), "photographer"), + (UniCase("greneer"), "greener"), + (UniCase("confugurations"), "configurations"), + (UniCase("contribuyes"), "contributes"), + (UniCase("individiual"), "individual"), + (UniCase("luckliy"), "luckily"), + (UniCase("neckbeardies"), "neckbeards"), + (UniCase("paraylzed"), "paralyzed"), + (UniCase("compeditive"), "competitive"), + (UniCase("consituted"), "constituted"), + (UniCase("acopalypse"), "apocalypse"), + (UniCase("specifing"), "specifying"), + (UniCase("prophetes"), "prophets"), + (UniCase("rathcet"), "ratchet"), + (UniCase("methapors"), "metaphors"), + (UniCase("imporved"), "improved"), + (UniCase("peripherials"), "peripherals"), + (UniCase("trpoical"), "tropical"), + (UniCase("tranistional"), "transitional"), + (UniCase("commentater"), "commentator"), + (UniCase("distrubute"), "distribute"), + (UniCase("bruglar"), "burglar"), + (UniCase("sterilisation"), "sterilization"), + (UniCase("concatinated"), "contaminated"), + (UniCase("impecabbly"), "impeccably"), + (UniCase("standartized"), "standardized"), + (UniCase("adventrues"), "adventures"), + (UniCase("centuties"), "centuries"), + (UniCase("derivitive"), "derivative"), + (UniCase("legnths"), "lengths"), + (UniCase("organizare"), "organizer"), + (UniCase("approxamate"), "approximate"), + (UniCase("attaindre"), "attainder"), + (UniCase("hospitalisation"), "hospitalization"), + (UniCase("interpreteer"), "interpreter"), + (UniCase("infograpgic"), "infographic"), + (UniCase("descriminant"), "discriminant"), + (UniCase("interveiwer"), "interviewer"), + (UniCase("terriory"), "territory"), + (UniCase("worthelss"), "worthless"), + (UniCase("triators"), "traitors"), + (UniCase("portraiing"), "portraying"), + (UniCase("incredibily"), "incredibly"), + (UniCase("golaith"), "goliath"), + (UniCase("stabelized"), "stabilized"), + (UniCase("prohibiteds"), "prohibits"), + (UniCase("maneouvred"), "manoeuvred"), + (UniCase("exipration"), "expiration"), + (UniCase("neglibible"), "negligible"), + (UniCase("dynamicus"), "dynamics"), + (UniCase("preconceieved"), "preconceived"), + (UniCase("producto"), "production"), + (UniCase("evertyime"), "everytime"), + (UniCase("mathamatician"), "mathematician"), + (UniCase("upgrads"), "upgrades"), + (UniCase("phychiatrist"), "psychiatrist"), + (UniCase("islamit"), "islamist"), + (UniCase("infintrator"), "infiltrator"), + (UniCase("infinately"), "infinitely"), + (UniCase("calssify"), "classify"), + (UniCase("attributted"), "attribute"), + (UniCase("sacrificare"), "sacrifice"), + (UniCase("socialsits"), "socialists"), + (UniCase("definig"), "defining"), + (UniCase("interregation"), "interrogation"), + (UniCase("clenaser"), "cleanser"), + (UniCase("democraticaly"), "democratically"), + (UniCase("cataclym"), "cataclysm"), + (UniCase("conceald"), "concealed"), + (UniCase("involnerable"), "invulnerable"), + (UniCase("playgorund"), "playground"), + (UniCase("prelayed"), "replayed"), + (UniCase("sentenceing"), "sentencing"), + (UniCase("extemporisation"), "extemporization"), + (UniCase("pkaythroughs"), "playthroughs"), + (UniCase("snippert"), "snippet"), + (UniCase("instuction"), "instruction"), + (UniCase("acheivment"), "achievement"), + (UniCase("buddhits"), "buddhist"), + (UniCase("cosutmes"), "costumes"), + (UniCase("eventaully"), "eventually"), + (UniCase("mhytical"), "mythical"), + (UniCase("umemployment"), "unemployment"), + (UniCase("propulaios"), "propulsion"), + (UniCase("pessimistc"), "pessimistic"), + (UniCase("driectly"), "directly"), + (UniCase("libertatians"), "libertarians"), + (UniCase("simluate"), "simulate"), + (UniCase("philippenis"), "philippines"), + (UniCase("southerton"), "southern"), + (UniCase("autocoreect"), "autocorrect"), + (UniCase("reconcilation"), "reconciliation"), + (UniCase("pestizides"), "pesticides"), + (UniCase("maniuplative"), "manipulative"), + (UniCase("predesposed"), "predisposed"), + (UniCase("maybelliene"), "maybelline"), + (UniCase("spriritual"), "spiritual"), + (UniCase("deustchland"), "deutschland"), + (UniCase("jalibroken"), "jailbroken"), + (UniCase("considerablly"), "considerably"), + (UniCase("coincidentaly"), "coincidentally"), + (UniCase("everyting"), "everything"), + (UniCase("anticapated"), "anticipated"), + (UniCase("refect"), "reflect"), + (UniCase("relfection"), "reflection"), + (UniCase("mircoscope"), "microscope"), + (UniCase("behvaiours"), "behaviours"), + (UniCase("millionar"), "millionaire"), + (UniCase("awkwardsness"), "awkwardness"), + (UniCase("photographier"), "photographer"), + (UniCase("configuartion"), "configuration"), + (UniCase("agruably"), "arguably"), + (UniCase("orignally"), "originally"), + (UniCase("magicin"), "magician"), + (UniCase("transculent"), "translucent"), + (UniCase("extremistisk"), "extremists"), + (UniCase("infiltrait"), "infiltrate"), + (UniCase("privatisation"), "privatization"), + (UniCase("associsted"), "associates"), + (UniCase("sodomise"), "sodomize"), + (UniCase("encyklopedia"), "encyclopedia"), + (UniCase("jeruslaem"), "jerusalem"), + (UniCase("forcifully"), "forcefully"), + (UniCase("harmonisch"), "harmonic"), + (UniCase("landins"), "landings"), + (UniCase("transportion"), "transporting"), + (UniCase("nitorgen"), "nitrogen"), + (UniCase("cheesebuger"), "cheeseburger"), + (UniCase("epsorts"), "esports"), + (UniCase("determinas"), "determines"), + (UniCase("dimensionnal"), "dimensional"), + (UniCase("alchohol"), "alcohol"), + (UniCase("sovereinty"), "sovereignty"), + (UniCase("vietnamise"), "vietnamese"), + (UniCase("fundamentalistiskt"), "fundamentalists"), + (UniCase("substituer"), "substitute"), + (UniCase("institutionalising"), "institutionalizing"), + (UniCase("hten"), "then"), + (UniCase("encolsed"), "enclosed"), + (UniCase("journies"), "journeys"), + (UniCase("generalife"), "generalize"), + (UniCase("inconsistentcies"), "inconsistencies"), + (UniCase("slighly"), "slightly"), + (UniCase("prohibitted"), "prohibited"), + (UniCase("thikning"), "thinking"), + (UniCase("frontilne"), "frontline"), + (UniCase("afternon"), "afternoon"), + (UniCase("administratiei"), "administrative"), + (UniCase("disbales"), "disables"), + (UniCase("culterally"), "culturally"), + (UniCase("simluations"), "simulations"), + (UniCase("distingiushing"), "distinguishing"), + (UniCase("scrutinised"), "scrutinized"), + (UniCase("fermenterad"), "fermented"), + (UniCase("sacremento"), "sacramento"), + (UniCase("punishemnt"), "punishments"), + (UniCase("doctrins"), "doctrines"), + (UniCase("pesitcides"), "pesticides"), + (UniCase("expiremental"), "experimental"), + (UniCase("emmisary"), "emissary"), + (UniCase("peoms"), "poems"), + (UniCase("exagerrate"), "exaggerate"), + (UniCase("hyperlobic"), "hyperbolic"), + (UniCase("sergent"), "sergeant"), + (UniCase("carolinia"), "carolina"), + (UniCase("strawbrary"), "strawberry"), + (UniCase("thurdsay"), "thursday"), + (UniCase("stigmatised"), "stigmatized"), + (UniCase("capatilism"), "capitalism"), + (UniCase("warrantles"), "warranties"), + (UniCase("hurricaines"), "hurricanes"), + (UniCase("unkown"), "unknown"), + (UniCase("libguistics"), "linguistics"), + (UniCase("parapharsed"), "paraphrase"), + (UniCase("bakc"), "back"), + (UniCase("bascily"), "basicly"), + (UniCase("tutrles"), "turtles"), + (UniCase("vanillia"), "vanilla"), + (UniCase("motorised"), "motorized"), + (UniCase("relcaim"), "reclaim"), + (UniCase("wreslte"), "wrestle"), + (UniCase("cabinettas"), "cabinets"), + (UniCase("misundertsanding"), "misunderstandings"), + (UniCase("replacemet"), "replacements"), + (UniCase("origines"), "origins"), + (UniCase("interpretarem"), "interpreter"), + (UniCase("prosectuor"), "prosecutor"), + (UniCase("continuos"), "continuous"), + (UniCase("compleation"), "compilation"), + (UniCase("egotisitcal"), "egotistical"), + (UniCase("prostitiute"), "prostitute"), + (UniCase("documenation"), "documentation"), + (UniCase("execptions"), "exceptions"), + (UniCase("liquidas"), "liquids"), + (UniCase("sldiers"), "sliders"), + (UniCase("unsistainable"), "unsustainable"), + (UniCase("demenaor"), "demeanor"), + (UniCase("agriculturual"), "agricultural"), + (UniCase("laboratroy"), "laboratory"), + (UniCase("autocorrct"), "autocorrect"), + (UniCase("progrom"), "pogrom"), + (UniCase("psychologicaly"), "psychologically"), + (UniCase("evaluationg"), "evaluating"), + (UniCase("restarant"), "restaurant"), + (UniCase("flautists"), "flutists"), + (UniCase("elementy"), "elementary"), + (UniCase("cringely"), "cringey"), + (UniCase("murderered"), "murdered"), + (UniCase("beaurocracy"), "bureaucracy"), + (UniCase("comprassem"), "compress"), + (UniCase("intimatley"), "intimately"), + (UniCase("ratpure"), "rapture"), + (UniCase("predetirmined"), "predetermined"), + (UniCase("physcial"), "physical"), + (UniCase("baceause"), "because"), + (UniCase("pregnanies"), "pregnancies"), + (UniCase("achived"), "achieved"), + (UniCase("trasnporter"), "transporter"), + (UniCase("hallukination"), "hallucination"), + (UniCase("extrordinary"), "extraordinary"), + (UniCase("signatue"), "signatures"), + (UniCase("gadgest"), "gadgets"), + (UniCase("dispuse"), "disputes"), + (UniCase("eulogised"), "eulogized"), + (UniCase("preriod"), "period"), + (UniCase("baulked"), "balked"), + (UniCase("cruthces"), "crutches"), + (UniCase("firwmare"), "firmware"), + (UniCase("captians"), "captains"), + (UniCase("propsects"), "prospects"), + (UniCase("utilitiy"), "utility"), + (UniCase("goverend"), "governed"), + (UniCase("defences"), "defenses"), + (UniCase("democracries"), "democracies"), + (UniCase("plebicite"), "plebiscite"), + (UniCase("patroitic"), "patriotic"), + (UniCase("inderictly"), "indirectly"), + (UniCase("sponsorees"), "sponsors"), + (UniCase("absymal"), "abysmal"), + (UniCase("reminiscient"), "reminiscent"), + (UniCase("indicatore"), "indicate"), + (UniCase("oustiders"), "outsiders"), + (UniCase("desoriented"), "disoriented"), + (UniCase("cxan"), "cyan"), + (UniCase("coincidince"), "coincidence"), + (UniCase("sqiushy"), "squishy"), + (UniCase("spontanuously"), "spontaneously"), + (UniCase("secretas"), "secrets"), + (UniCase("umcomfortable"), "uncomfortable"), + (UniCase("compaines"), "companies"), + (UniCase("utiltiy"), "utility"), + (UniCase("qualifierais"), "qualifiers"), + (UniCase("varations"), "variations"), + (UniCase("supposidely"), "supposedly"), + (UniCase("usefull"), "useful"), + (UniCase("participte"), "participate"), + (UniCase("undesriable"), "undesirable"), + (UniCase("subsconcious"), "subconscious"), + (UniCase("haemorrhaged"), "hemorrhaged"), + (UniCase("missionaire"), "missionaries"), + (UniCase("govorment"), "government"), + (UniCase("multiplicaton"), "multiplication"), + (UniCase("distrubuted"), "distributed"), + (UniCase("hispanis"), "hispanics"), + (UniCase("interfereing"), "interfering"), + (UniCase("investiage"), "investigate"), + (UniCase("shenenigans"), "shenanigans"), + (UniCase("sancturay"), "sanctuary"), + (UniCase("polyphonyic"), "polyphonic"), + (UniCase("interpratation"), "interpretation"), + (UniCase("methodoloy"), "methodology"), + (UniCase("collpase"), "collapse"), + (UniCase("vindicte"), "vindictive"), + (UniCase("questional"), "questionable"), + (UniCase("thirites"), "thirties"), + (UniCase("retrebution"), "retribution"), + (UniCase("condemnig"), "condemning"), + (UniCase("instinctivelly"), "instinctively"), + (UniCase("desensitived"), "desensitized"), + (UniCase("straightie"), "straighten"), + (UniCase("consentration"), "concentration"), + (UniCase("consultanti"), "consultation"), + (UniCase("onwership"), "ownership"), + (UniCase("arisoft"), "airsoft"), + (UniCase("restraind"), "restrained"), + (UniCase("atremis"), "artemis"), + (UniCase("mulitples"), "multiples"), + (UniCase("troublehsooting"), "troubleshooting"), + (UniCase("commentarea"), "commenter"), + (UniCase("lanugages"), "languages"), + (UniCase("anaesthetists"), "anesthetists"), + (UniCase("individualise"), "individualize"), + (UniCase("professionnalism"), "professionalism"), + (UniCase("miracluous"), "miraculous"), + (UniCase("draclua"), "dracula"), + (UniCase("leftsits"), "leftists"), + (UniCase("conqured"), "conquered"), + (UniCase("caclulators"), "calculators"), + (UniCase("awknowledgement"), "acknowledgement"), + (UniCase("consistentcy"), "consistently"), + (UniCase("configuraton"), "configuration"), + (UniCase("coca cola"), "coca-cola"), + (UniCase("acknowldeged"), "acknowledged"), + (UniCase("alchmeist"), "alchemist"), + (UniCase("tahn"), "than"), + (UniCase("alchmey"), "alchemy"), + (UniCase("squirrelies"), "squirrels"), + (UniCase("disappearnace"), "disappearance"), + (UniCase("vegeterian"), "vegetarian"), + (UniCase("apoligized"), "apologized"), + (UniCase("semseter"), "semester"), + (UniCase("downloaad"), "download"), + (UniCase("compositons"), "compositions"), + (UniCase("practie"), "practise"), + (UniCase("intrinsecally"), "intrinsically"), + (UniCase("figuretively"), "figuratively"), + (UniCase("acquiantence"), "acquaintance"), + (UniCase("mingiame"), "minigame"), + (UniCase("repsots"), "reposts"), + (UniCase("transmited"), "transmitted"), + (UniCase("unauthroized"), "unauthorized"), + (UniCase("scarmbled"), "scrambled"), + (UniCase("prevert"), "pervert"), + (UniCase("reveiw"), "review"), + (UniCase("talekd"), "talked"), + (UniCase("shephed"), "shepherd"), + (UniCase("inappropraitely"), "inappropriately"), + (UniCase("annointing"), "anointing"), + (UniCase("implicitely"), "implicitly"), + (UniCase("restricte"), "restrictive"), + (UniCase("throughiut"), "throughput"), + (UniCase("intercontinetal"), "intercontinental"), + (UniCase("prostitutas"), "prostitutes"), + (UniCase("geogrpahical"), "geographical"), + (UniCase("diahrrea"), "diarrhea"), + (UniCase("mathametician"), "mathematician"), + (UniCase("responsiblty"), "responsibly"), + (UniCase("similiarity"), "similarity"), + (UniCase("marshmallons"), "marshmallows"), + (UniCase("refelcts"), "reflects"), + (UniCase("strawburry"), "strawberry"), + (UniCase("resistence"), "resistance"), + (UniCase("repsonsibilities"), "responsibilities"), + (UniCase("dolphis"), "dolphins"), + (UniCase("objectivelly"), "objectively"), + (UniCase("receips"), "receipts"), + (UniCase("disposle"), "dispose"), + (UniCase("commissons"), "commissions"), + (UniCase("renewabe"), "renewables"), + (UniCase("ejaculaton"), "ejaculation"), + (UniCase("saskatcehwan"), "saskatchewan"), + (UniCase("documenatry"), "documentary"), + (UniCase("splendours"), "splendors"), + (UniCase("academcially"), "academically"), + (UniCase("plesant"), "pleasant"), + (UniCase("developmant"), "developmental"), + (UniCase("conditon"), "condition"), + (UniCase("supermarkts"), "supermarkets"), + (UniCase("invincibe"), "invincible"), + (UniCase("resurrecion"), "resurrection"), + (UniCase("authobiographic"), "autobiographic"), + (UniCase("inevetable"), "inevitable"), + (UniCase("banditas"), "bandits"), + (UniCase("evangalical"), "evangelical"), + (UniCase("compatibile"), "compatible"), + (UniCase("predatobr"), "predator"), + (UniCase("recieve"), "receive"), + (UniCase("chinesse"), "chinese"), + (UniCase("pennsylvaina"), "pennsylvania"), + (UniCase("caluclators"), "calculators"), + (UniCase("destinato"), "destination"), + (UniCase("romanin"), "romanian"), + (UniCase("domecrat"), "democrat"), + (UniCase("vampirs"), "vampires"), + (UniCase("psychyatrists"), "psychiatrists"), + (UniCase("benefica"), "beneficial"), + (UniCase("civilizaiton"), "civilization"), + (UniCase("deterioriating"), "deteriorating"), + (UniCase("neglegible"), "negligible"), + (UniCase("sheepel"), "sheeple"), + (UniCase("acsended"), "ascended"), + (UniCase("vidoegame"), "videogame"), + (UniCase("fertilisation"), "fertilization"), + (UniCase("phychedelics"), "psychedelics"), + (UniCase("genuises"), "geniuses"), + (UniCase("sexualixed"), "sexualized"), + (UniCase("mysterise"), "mysteries"), + (UniCase("preposters"), "preposterous"), + (UniCase("generase"), "generates"), + (UniCase("interruped"), "interrupted"), + (UniCase("asorbed"), "absorbed"), + (UniCase("resolvs"), "resolves"), + (UniCase("wnats"), "wants"), + (UniCase("chmabers"), "chambers"), + (UniCase("illuninati"), "illuminati"), + (UniCase("manufacutrers"), "manufactures"), + (UniCase("gosepls"), "gospels"), + (UniCase("independendet"), "independent"), + (UniCase("sensitise"), "sensitize"), + (UniCase("resistanses"), "resistances"), + (UniCase("aquiantance"), "acquaintance"), + (UniCase("theologia"), "theological"), + (UniCase("radioactieve"), "radioactive"), + (UniCase("hamburgeres"), "hamburgers"), + (UniCase("impossibry"), "impossibly"), + (UniCase("tendensies"), "tendencies"), + (UniCase("insmonia"), "insomnia"), + (UniCase("saksatchewan"), "saskatchewan"), + (UniCase("flaried"), "flaired"), + (UniCase("ublisher"), "publisher"), + (UniCase("conceptualising"), "conceptualizing"), + (UniCase("illumanati"), "illuminati"), + (UniCase("invulnerabile"), "invulnerable"), + (UniCase("disturbence"), "disturbance"), + (UniCase("antisosial"), "antisocial"), + (UniCase("rheotric"), "rhetoric"), + (UniCase("netropolitan"), "metropolitan"), + (UniCase("idealisitc"), "idealistic"), + (UniCase("europian"), "european"), + (UniCase("nutreints"), "nutrients"), + (UniCase("challeneges"), "challenges"), + (UniCase("pshycological"), "psychological"), + (UniCase("desnely"), "densely"), + (UniCase("physicks"), "physics"), + (UniCase("comfortabel"), "comfortably"), + (UniCase("proportianally"), "proportionally"), + (UniCase("initally"), "initially"), + (UniCase("hunagrian"), "hungarian"), + (UniCase("advocade"), "advocated"), + (UniCase("responsibillities"), "responsibilities"), + (UniCase("modifieras"), "modifiers"), + (UniCase("fedility"), "fidelity"), + (UniCase("unoperational"), "nonoperational"), + (UniCase("acusing"), "causing"), + (UniCase("singificantly"), "significantly"), + (UniCase("critizicing"), "criticizing"), + (UniCase("decipted"), "depicted"), + (UniCase("renaissace"), "renaissance"), + (UniCase("flucutate"), "fluctuate"), + (UniCase("glitchd"), "glitched"), + (UniCase("meldoic"), "melodic"), + (UniCase("kryptoninte"), "kryptonite"), + (UniCase("protiens"), "proteins"), + (UniCase("manipualte"), "manipulate"), + (UniCase("champinoship"), "championships"), + (UniCase("microtransacton"), "microtransactions"), + (UniCase("consultati"), "consultant"), + (UniCase("statisitc"), "statistic"), + (UniCase("fibreglass"), "fiberglass"), + (UniCase("atmoizer"), "atomizer"), + (UniCase("restaurents"), "restaurants"), + (UniCase("inadaquate"), "inadequate"), + (UniCase("torrentking"), "torrenting"), + (UniCase("persausion"), "persuasion"), + (UniCase("refurbised"), "refurbished"), + (UniCase("copyrigthed"), "copyrighted"), + (UniCase("enhacning"), "enhancing"), + (UniCase("markedet"), "marketed"), + (UniCase("apporpriate"), "appropriate"), + (UniCase("fransiscan"), "franciscan"), + (UniCase("subconcsiously"), "subconsciously"), + (UniCase("collpased"), "collapsed"), + (UniCase("hybridising"), "hybridizing"), + (UniCase("dysentry"), "dysentery"), + (UniCase("interwiever"), "interviewer"), + (UniCase("installesd"), "installs"), + (UniCase("comtaminated"), "contaminated"), + (UniCase("vernaculaire"), "vernacular"), + (UniCase("decpetion"), "deception"), + (UniCase("arcaheology"), "archaeology"), + (UniCase("centilitres"), "centiliters"), + (UniCase("jailborken"), "jailbroken"), + (UniCase("explaind"), "explained"), + (UniCase("ignornace"), "ignorance"), + (UniCase("aggrovated"), "aggravated"), + (UniCase("moderatedly"), "moderately"), + (UniCase("chornological"), "chronological"), + (UniCase("intellectus"), "intellectuals"), + (UniCase("mechanim"), "mechanism"), + (UniCase("wtiches"), "witches"), + (UniCase("partizipation"), "participation"), + (UniCase("feminised"), "feminized"), + (UniCase("accedentally"), "accidentally"), + (UniCase("displayd"), "displayed"), + (UniCase("dsyfunction"), "dysfunction"), + (UniCase("parachutage"), "parachute"), + (UniCase("stubbron"), "stubborn"), + (UniCase("refubrished"), "refurbished"), + (UniCase("parlour"), "parlor"), + (UniCase("microhpones"), "microphones"), + (UniCase("implementase"), "implements"), + (UniCase("dipolmatic"), "diplomatic"), + (UniCase("incompatibil"), "incompatible"), + (UniCase("atheistisch"), "atheistic"), + (UniCase("decotations"), "decorations"), + (UniCase("printes"), "printers"), + (UniCase("institutionalised"), "institutionalized"), + (UniCase("separete"), "seperate"), + (UniCase("incomparible"), "incompatible"), + (UniCase("repblics"), "republics"), + (UniCase("unconditionnally"), "unconditionally"), + (UniCase("condmenation"), "condemnation"), + (UniCase("preminence"), "preeminence"), + (UniCase("protraying"), "portraying"), + (UniCase("onbaord"), "onboard"), + (UniCase("whitelsit"), "whitelist"), + (UniCase("compandium"), "compendium"), + (UniCase("establsihment"), "establishments"), + (UniCase("awknowledged"), "acknowledged"), + (UniCase("stlaker"), "stalker"), + (UniCase("manfiests"), "manifests"), + (UniCase("compuslive"), "compulsive"), + (UniCase("illegetimate"), "illegitimate"), + (UniCase("ultiamte"), "ultimate"), + (UniCase("paychedelics"), "psychedelics"), + (UniCase("orchastrated"), "orchestrated"), + (UniCase("snyopsis"), "synopsis"), + (UniCase("leutenant"), "lieutenant"), + (UniCase("subsquently"), "subsequently"), + (UniCase("strictist"), "strictest"), + (UniCase("adknowledges"), "acknowledges"), + (UniCase("complaines"), "complaints"), + (UniCase("repalcement"), "replacement"), + (UniCase("spirites"), "spirits"), + (UniCase("responsibley"), "responsibly"), + (UniCase("obstruced"), "obstructed"), + (UniCase("pilgirm"), "pilgrim"), + (UniCase("equivlalent"), "equivalent"), + (UniCase("narcissts"), "narcissist"), + (UniCase("downvoties"), "downvoters"), + (UniCase("perpatuating"), "perpetuating"), + (UniCase("magnifacent"), "magnificent"), + (UniCase("pharmeceutical"), "pharmaceutical"), + (UniCase("incomprehenisble"), "incomprehensible"), + (UniCase("lightenting"), "lightening"), + (UniCase("kompensation"), "compensation"), + (UniCase("interferens"), "interferes"), + (UniCase("orgin"), "origin"), + (UniCase("identite"), "identities"), + (UniCase("resolutoin"), "resolutions"), + (UniCase("traveleres"), "travelers"), + (UniCase("procrastonating"), "procrastinating"), + (UniCase("civilised"), "civilized"), + (UniCase("checkpoins"), "checkpoints"), + (UniCase("dystopain"), "dystopian"), + (UniCase("naturely"), "naturally"), + (UniCase("indeginous"), "indigenous"), + (UniCase("harras"), "harass"), + (UniCase("conatins"), "contains"), + (UniCase("consideratie"), "considerate"), + (UniCase("comparisn"), "comparisons"), + (UniCase("advantegeous"), "advantageous"), + (UniCase("accompanyed"), "accompanied"), + (UniCase("toothbursh"), "toothbrush"), + (UniCase("dangerus"), "dangers"), + (UniCase("abriter"), "arbiter"), + (UniCase("reseracher"), "researchers"), + (UniCase("jeruselam"), "jerusalem"), + (UniCase("absoluts"), "absolutes"), + (UniCase("asetic"), "ascetic"), + (UniCase("particularily"), "particularly"), + (UniCase("initalized"), "initialized"), + (UniCase("sporuts"), "sprouts"), + (UniCase("dermetologist"), "dermatologist"), + (UniCase("continuativo"), "continuation"), + (UniCase("curiostiy"), "curiosity"), + (UniCase("sentreis"), "sentries"), + (UniCase("harassement"), "harassment"), + (UniCase("lvoe"), "love"), + (UniCase("philosophae"), "philosopher"), + (UniCase("conservativsm"), "conservatism"), + (UniCase("guantano"), "guantanamo"), + (UniCase("mutlitasking"), "multitasking"), + (UniCase("concertas"), "concerts"), + (UniCase("girlfreind"), "girlfriend"), + (UniCase("sponsorshop"), "sponsorship"), + (UniCase("indepencence"), "independence"), + (UniCase("inflexions"), "inflections"), + (UniCase("reciproce"), "reciprocate"), + (UniCase("pairlament"), "parliament"), + (UniCase("chechpoint"), "checkpoint"), + (UniCase("reputacion"), "reputation"), + (UniCase("sydnicate"), "syndicate"), + (UniCase("nilihism"), "nihilism"), + (UniCase("misunderstandig"), "misunderstandings"), + (UniCase("intellectualised"), "intellectualized"), + (UniCase("touristsy"), "touristy"), + (UniCase("baout"), "about"), + (UniCase("westmonster"), "westminster"), + (UniCase("magnetis"), "magnets"), + (UniCase("conculsive"), "conclusive"), + (UniCase("genitala"), "genitalia"), + (UniCase("powerlfiting"), "powerlifting"), + (UniCase("calrkson"), "clarkson"), + (UniCase("folowing"), "following"), + (UniCase("institutuion"), "institution"), + (UniCase("fermentacion"), "fermentation"), + (UniCase("justificacion"), "justification"), + (UniCase("premissions"), "permissions"), + (UniCase("motoroloa"), "motorola"), + (UniCase("evaulation"), "evaluation"), + (UniCase("fignernails"), "fingernails"), + (UniCase("battlehsips"), "battleship"), + (UniCase("instil"), "instill"), + (UniCase("torrest"), "torrents"), + (UniCase("criticas"), "critics"), + (UniCase("expination"), "expiration"), + (UniCase("twiligt"), "twilight"), + (UniCase("babysister"), "babysitter"), + (UniCase("bestiallity"), "bestiality"), + (UniCase("epitomised"), "epitomized"), + (UniCase("promimently"), "prominently"), + (UniCase("degeneret"), "degenerate"), + (UniCase("cinimatography"), "cinematography"), + (UniCase("disrecpectful"), "disrespectful"), + (UniCase("acsending"), "ascending"), + (UniCase("sponteanous"), "spontaneous"), + (UniCase("remifications"), "ramifications"), + (UniCase("liason"), "liaison"), + (UniCase("grainte"), "granite"), + (UniCase("nuetral"), "neutral"), + (UniCase("procedureal"), "procedural"), + (UniCase("combinacion"), "combination"), + (UniCase("commisssion"), "commissions"), + (UniCase("rutgerus"), "rutgers"), + (UniCase("ridiculus"), "ridiculous"), + (UniCase("exliled"), "exiled"), + (UniCase("turnapound"), "turnaround"), + (UniCase("professoinal"), "professionals"), + (UniCase("massachustts"), "massachusetts"), + (UniCase("summarised"), "summarized"), + (UniCase("friendzonded"), "friendzoned"), + (UniCase("pharmsci"), "pharmacist"), + (UniCase("masterpeice"), "masterpiece"), + (UniCase("sodomises"), "sodomizes"), + (UniCase("tremelo"), "tremolo"), + (UniCase("defensd"), "defends"), + (UniCase("johanine"), "johannine"), + (UniCase("judical"), "judicial"), + (UniCase("askreddt"), "askreddit"), + (UniCase("dectect"), "detect"), + (UniCase("grassrooters"), "grassroots"), + (UniCase("sexualizd"), "sexualized"), + (UniCase("substituto"), "substitution"), + (UniCase("expertis"), "experts"), + (UniCase("intelelctuals"), "intellectuals"), + (UniCase("judegment"), "judgement"), + (UniCase("beuraucrats"), "bureaucrats"), + (UniCase("hardlinked"), "hardline"), + (UniCase("paranoica"), "paranoia"), + (UniCase("uncertaintity"), "uncertainty"), + (UniCase("compteurs"), "computers"), + (UniCase("rehtoric"), "rhetoric"), + (UniCase("previal"), "prevail"), + (UniCase("basicley"), "basicly"), + (UniCase("indoctrication"), "indoctrination"), + (UniCase("consituencies"), "constituencies"), + (UniCase("exlporer"), "explorer"), + (UniCase("schoold"), "schooled"), + (UniCase("hypocritcal"), "hypocritical"), + (UniCase("chilli"), "chili"), + (UniCase("chuch"), "church"), + (UniCase("importanty"), "importantly"), + (UniCase("perusaded"), "persuaded"), + (UniCase("chernobl"), "chernobyl"), + (UniCase("imporbable"), "improbable"), + (UniCase("doplhin"), "dolphin"), + (UniCase("contridictory"), "contradictory"), + (UniCase("conplimenting"), "complimenting"), + (UniCase("phsyically"), "physically"), + (UniCase("inplementation"), "implementation"), + (UniCase("inpredictable"), "unpredictable"), + (UniCase("sacrafice"), "sacrifice"), + (UniCase("communistas"), "communists"), + (UniCase("instututionalized"), "institutionalized"), + (UniCase("repeatae"), "repeatable"), + (UniCase("misgoynistic"), "misogynistic"), + (UniCase("concider"), "consider"), + (UniCase("fundamendalists"), "fundamentalists"), + (UniCase("projectlies"), "projectiles"), + (UniCase("conslutants"), "consultant"), + (UniCase("failurs"), "failures"), + (UniCase("consideras"), "considers"), + (UniCase("comediantes"), "comedians"), + (UniCase("anticipato"), "anticipation"), + (UniCase("incidential"), "incidental"), + (UniCase("desentitized"), "desensitized"), + (UniCase("environmentals"), "environments"), + (UniCase("fundamently"), "fundamental"), + (UniCase("afghanisthan"), "afghanistan"), + (UniCase("disorganisation"), "disorganization"), + (UniCase("migrainers"), "migraines"), + (UniCase("importend"), "imported"), + (UniCase("enlightenting"), "enlightening"), + (UniCase("qualifiies"), "qualifiers"), + (UniCase("playthourgh"), "playthrough"), + (UniCase("shanghi"), "shanghai"), + (UniCase("disproprotionate"), "disproportionate"), + (UniCase("congragation"), "congregation"), + (UniCase("transmissin"), "transmissions"), + (UniCase("fascinatie"), "fascinated"), + (UniCase("shakespere"), "shakespeare"), + (UniCase("authrorities"), "authorities"), + (UniCase("jeopardise"), "jeopardize"), + (UniCase("highlighing"), "highlighting"), + (UniCase("integrarlo"), "integral"), + (UniCase("trabajao"), "trabajo"), + (UniCase("constituintes"), "constituents"), + (UniCase("beahviour"), "behaviour"), + (UniCase("predicited"), "predicated"), + (UniCase("necessairly"), "necessarily"), + (UniCase("keynseian"), "keynesian"), + (UniCase("persued"), "pursued"), + (UniCase("singulary"), "singularity"), + (UniCase("fanservive"), "fanservice"), + (UniCase("colonialsim"), "colonialism"), + (UniCase("horrendeus"), "horrendous"), + (UniCase("psychopatic"), "psychopathic"), + (UniCase("mainpulate"), "manipulate"), + (UniCase("archaeology"), "archeology"), + (UniCase("quarante"), "quarantine"), + (UniCase("coindice"), "coincide"), + (UniCase("framgent"), "fragment"), + (UniCase("spectatores"), "spectators"), + (UniCase("gimmickey"), "gimmicky"), + (UniCase("apporpriation"), "appropriation"), + (UniCase("outpalyed"), "outplayed"), + (UniCase("crusies"), "cruises"), + (UniCase("respectfuly"), "respectfully"), + (UniCase("momenterily"), "momentarily"), + (UniCase("exicting"), "exciting"), + (UniCase("narcissictic"), "narcissistic"), + (UniCase("freinds"), "friends"), + (UniCase("extraordinarilly"), "extraordinary"), + (UniCase("inexperieced"), "inexperienced"), + (UniCase("beseiging"), "besieging"), + (UniCase("vacciante"), "vaccinate"), + (UniCase("priciple"), "principle"), + (UniCase("defeintly"), "definetly"), + (UniCase("determinsim"), "determinism"), + (UniCase("republcian"), "republican"), + (UniCase("feasbile"), "feasible"), + (UniCase("winnins"), "winnings"), + (UniCase("cockroachers"), "cockroaches"), + (UniCase("interestes"), "interests"), + (UniCase("champage"), "champagne"), + (UniCase("algorthims"), "algorithms"), + (UniCase("becames"), "becomes"), + (UniCase("equivalnet"), "equivalents"), + (UniCase("releiver"), "reliever"), + (UniCase("mathcup"), "matchup"), + (UniCase("melodis"), "melodies"), + (UniCase("transgemder"), "transgender"), + (UniCase("obscruity"), "obscurity"), + (UniCase("ideologias"), "ideologies"), + (UniCase("genitalis"), "genitals"), + (UniCase("regualrly"), "regularly"), + (UniCase("invulnerabe"), "invulnerable"), + (UniCase("essentual"), "essential"), + (UniCase("ineffecitve"), "ineffective"), + (UniCase("cosier"), "cozier"), + (UniCase("backdor"), "backdoor"), + (UniCase("breastfeedig"), "breastfeeding"), + (UniCase("liberatrianism"), "libertarianism"), + (UniCase("massachusettians"), "massachusetts"), + (UniCase("metaphisics"), "metaphysics"), + (UniCase("strecthed"), "stretched"), + (UniCase("opartor"), "operator"), + (UniCase("conquoring"), "conquering"), + (UniCase("responsivle"), "responsive"), + (UniCase("neigbourhood"), "neighbourhood"), + (UniCase("anxeity"), "anxiety"), + (UniCase("generats"), "generates"), + (UniCase("brutalised"), "brutalized"), + (UniCase("senoirs"), "seniors"), + (UniCase("ridiculise"), "ridicule"), + (UniCase("swatsika"), "swastika"), + (UniCase("pratictioners"), "practitioners"), + (UniCase("consisent"), "consistent"), + (UniCase("uninstaled"), "uninstalled"), + (UniCase("surprizingly"), "surprisingly"), + (UniCase("airzona"), "arizona"), + (UniCase("orignially"), "originally"), + (UniCase("involuntarly"), "involuntary"), + (UniCase("redefinied"), "redefine"), + (UniCase("doccument"), "document"), + (UniCase("flemmish"), "flemish"), + (UniCase("kollaboration"), "collaboration"), + (UniCase("indepentend"), "independents"), + (UniCase("grammarical"), "grammatical"), + (UniCase("predetermind"), "predetermined"), + (UniCase("govement"), "government"), + (UniCase("dispeners"), "dispenser"), + (UniCase("possable"), "possible"), + (UniCase("abandonne"), "abandonment"), + (UniCase("prouldy"), "proudly"), + (UniCase("chromozomes"), "chromosomes"), + (UniCase("colonising"), "colonizing"), + (UniCase("persumptuous"), "presumptuous"), + (UniCase("abbreviaton"), "abbreviation"), + (UniCase("austrailia"), "australia"), + (UniCase("hamitlon"), "hamilton"), + (UniCase("geogria"), "georgia"), + (UniCase("benelovent"), "benevolent"), + (UniCase("dissobedient"), "disobedient"), + (UniCase("prosporous"), "prosperous"), + (UniCase("belgain"), "belgian"), + (UniCase("aiport"), "airport"), + (UniCase("percpetion"), "perceptions"), + (UniCase("overestemating"), "overestimating"), + (UniCase("theraphy"), "therapy"), + (UniCase("sepearte"), "seperate"), + (UniCase("excisted"), "existed"), + (UniCase("comperative"), "comparative"), + (UniCase("interasting"), "interacting"), + (UniCase("scroates"), "socrates"), + (UniCase("kunckle"), "knuckle"), + (UniCase("protectings"), "protections"), + (UniCase("realsied"), "realised"), + (UniCase("tunraround"), "turnaround"), + (UniCase("brazilions"), "brazilians"), + (UniCase("precentile"), "percentile"), + (UniCase("weridly"), "weirdly"), + (UniCase("procesess"), "processes"), + (UniCase("commere"), "commerce"), + (UniCase("indespensible"), "indispensable"), + (UniCase("hamburglers"), "hamburgers"), + (UniCase("overclcoked"), "overclocked"), + (UniCase("overturing"), "overturn"), + (UniCase("ptichers"), "pitchers"), + (UniCase("heigths"), "heights"), + (UniCase("aseuxal"), "asexual"), + (UniCase("pronounceing"), "pronouncing"), + (UniCase("diffucult"), "difficult"), + (UniCase("blockchan"), "blockchain"), + (UniCase("resporatory"), "respiratory"), + (UniCase("livliehood"), "livelihood"), + (UniCase("arguemnts"), "arguments"), + (UniCase("electronagnetic"), "electromagnetic"), + (UniCase("definitv"), "definitive"), + (UniCase("superfluu"), "superfluous"), + (UniCase("impoverised"), "impoverished"), + (UniCase("efford"), "effort"), + (UniCase("pitckforks"), "pitchforks"), + (UniCase("transcris"), "transcripts"), + (UniCase("politicised"), "politicized"), + (UniCase("executin"), "execution"), + (UniCase("countertraps"), "counterparts"), + (UniCase("generalis"), "generals"), + (UniCase("cthulhlu"), "cthulhu"), + (UniCase("tunrtable"), "turntable"), + (UniCase("tradionally"), "traditionally"), + (UniCase("abandining"), "abandoning"), + (UniCase("multinatinal"), "multinational"), + (UniCase("arbitre"), "arbiter"), + (UniCase("somethintg"), "somethings"), + (UniCase("spolied"), "spoiled"), + (UniCase("presedents"), "presidents"), + (UniCase("turthfully"), "truthfully"), + (UniCase("flashig"), "flashing"), + (UniCase("repbulicans"), "republicans"), + (UniCase("projecitle"), "projectiles"), + (UniCase("nieghboring"), "neighboring"), + (UniCase("absoprtion"), "absorption"), + (UniCase("naughtly"), "naughty"), + (UniCase("occurr"), "occur"), + (UniCase("inspirationnal"), "inspirational"), + (UniCase("vanguad"), "vanguard"), + (UniCase("insertes"), "inserts"), + (UniCase("directix"), "directx"), + (UniCase("condemend"), "condemned"), + (UniCase("expereinced"), "experienced"), + (UniCase("convesration"), "conservation"), + (UniCase("condescening"), "condescending"), + (UniCase("serialised"), "serialized"), + (UniCase("manslaugther"), "manslaughter"), + (UniCase("immobille"), "immobile"), + (UniCase("milestons"), "milestones"), + (UniCase("fleed"), "fled"), + (UniCase("behaviourist"), "behaviorist"), + (UniCase("deathmacth"), "deathmatch"), + (UniCase("representaiton"), "representations"), + (UniCase("nostirls"), "nostrils"), + (UniCase("revolutionair"), "revolutionary"), + (UniCase("beglian"), "belgian"), + (UniCase("confrimation"), "confirmation"), + (UniCase("disolved"), "dissolved"), + (UniCase("confrontating"), "confrontation"), + (UniCase("legitimised"), "legitimized"), + (UniCase("obvisouly"), "obviously"), + (UniCase("valueable"), "valuable"), + (UniCase("prototyps"), "prototypes"), + (UniCase("translucient"), "translucent"), + (UniCase("discoruage"), "discourages"), + (UniCase("emtpied"), "emptied"), + (UniCase("gentialia"), "genitalia"), + (UniCase("underog"), "undergo"), + (UniCase("cosmeticos"), "cosmetics"), + (UniCase("calculaters"), "calculators"), + (UniCase("geographisch"), "geographic"), + (UniCase("travles"), "travels"), + (UniCase("kommissioner"), "commissioner"), + (UniCase("pinncale"), "pinnacle"), + (UniCase("isalmist"), "islamist"), + (UniCase("improsined"), "imprisoned"), + (UniCase("senstive"), "sensitive"), + (UniCase("qauntity"), "quantity"), + (UniCase("snese"), "sneeze"), + (UniCase("distrubitors"), "distributors"), + (UniCase("externalise"), "externalize"), + (UniCase("thornes"), "thrones"), + (UniCase("overhwelming"), "overwhelming"), + (UniCase("malaysain"), "malaysian"), + (UniCase("competidor"), "competitor"), + (UniCase("investagator"), "investigator"), + (UniCase("settelement"), "settlement"), + (UniCase("presist"), "persist"), + (UniCase("driftig"), "drifting"), + (UniCase("frankenstined"), "frankenstein"), + (UniCase("convertiable"), "convertible"), + (UniCase("neccessary"), "necessary"), + (UniCase("nationalitys"), "nationalist"), + (UniCase("contradicing"), "contradicting"), + (UniCase("murderes"), "murders"), + (UniCase("stereotpyical"), "stereotypical"), + (UniCase("reboudns"), "rebounds"), + (UniCase("privatising"), "privatizing"), + (UniCase("penguinese"), "penguins"), + (UniCase("lanuchers"), "launchers"), + (UniCase("construcion"), "construction"), + (UniCase("indivudually"), "individually"), + (UniCase("inersting"), "inserting"), + (UniCase("boundry"), "boundary"), + (UniCase("automotove"), "automotive"), + (UniCase("meoldic"), "melodic"), + (UniCase("tehnically"), "ethnically"), + (UniCase("pinapple"), "pineapple"), + (UniCase("buidling"), "building"), + (UniCase("disgustosi"), "disgusts"), + (UniCase("armoury"), "armory"), + (UniCase("transalting"), "translating"), + (UniCase("considerd"), "considered"), + (UniCase("excurciating"), "excruciating"), + (UniCase("scrutinty"), "scrutiny"), + (UniCase("palcebo"), "placebo"), + (UniCase("intricaces"), "intricacies"), + (UniCase("steeleries"), "steelers"), + (UniCase("teamfighters"), "teamfights"), + (UniCase("casaulties"), "casualties"), + (UniCase("indicents"), "incidents"), + (UniCase("deprivating"), "deprivation"), + (UniCase("capitilism"), "capitalism"), + (UniCase("nightmates"), "nightmares"), + (UniCase("sevice"), "service"), + (UniCase("disadvanteges"), "disadvantages"), + (UniCase("similiair"), "similiar"), + (UniCase("indivuduality"), "individuality"), + (UniCase("costitution"), "constitution"), + (UniCase("infrigning"), "infringing"), + (UniCase("belaboured"), "belabored"), + (UniCase("retartation"), "retardation"), + (UniCase("irridation"), "irritation"), + (UniCase("snydrome"), "syndrome"), + (UniCase("criticallity"), "critically"), + (UniCase("agnositc"), "agnostic"), + (UniCase("respesct"), "respects"), + (UniCase("enduce"), "induce"), + (UniCase("englsih"), "english"), + (UniCase("victoris"), "victories"), + (UniCase("deputise"), "deputize"), + (UniCase("beneficary"), "beneficiary"), + (UniCase("multiplyer"), "multiple"), + (UniCase("reprecussion"), "repercussions"), + (UniCase("activisiom"), "activism"), + (UniCase("extensis"), "extensions"), + (UniCase("widepsread"), "widespread"), + (UniCase("frimware"), "firmware"), + (UniCase("originalt"), "originality"), + (UniCase("analtyics"), "analytics"), + (UniCase("interperting"), "interpreting"), + (UniCase("argumeent"), "arguement"), + (UniCase("westmisnter"), "westminster"), + (UniCase("disbaled"), "disabled"), + (UniCase("condolances"), "condolences"), + (UniCase("constantins"), "constants"), + (UniCase("wavelengh"), "wavelength"), + (UniCase("formatings"), "formations"), + (UniCase("premeir"), "premier"), + (UniCase("concentrait"), "concentrate"), + (UniCase("flahsed"), "flashed"), + (UniCase("subsrcibe"), "subscribe"), + (UniCase("contradicton"), "contradiction"), + (UniCase("refelxes"), "reflexes"), + (UniCase("infleunced"), "influenced"), + (UniCase("redmeption"), "redemption"), + (UniCase("retributioon"), "retribution"), + (UniCase("variantes"), "variants"), + (UniCase("helicopteros"), "helicopters"), + (UniCase("imcomprehensible"), "incomprehensible"), + (UniCase("enviromentalist"), "environmentalist"), + (UniCase("condradicting"), "contradicting"), + (UniCase("glodberg"), "goldberg"), + (UniCase("automoterator"), "automoderator"), + (UniCase("combonation"), "combination"), + (UniCase("experimention"), "experimenting"), + (UniCase("surpressed"), "suppressed"), + (UniCase("predecence"), "precedence"), + (UniCase("redners"), "renders"), + (UniCase("moisturiser"), "moisturizer"), + (UniCase("inplementations"), "implementations"), + (UniCase("sawnson"), "swanson"), + (UniCase("interruptes"), "interrupts"), + (UniCase("broadbad"), "broadband"), + (UniCase("accountatns"), "accountants"), + (UniCase("heartbraker"), "heartbreak"), + (UniCase("misoginyst"), "misogynist"), + (UniCase("scandanivia"), "scandinavian"), + (UniCase("disruptivo"), "disruption"), + (UniCase("exibitions"), "exhibitions"), + (UniCase("seplling"), "spelling"), + (UniCase("monopolets"), "monopolies"), + (UniCase("proportianal"), "proportional"), + (UniCase("democratises"), "democratizes"), + (UniCase("imaginatiei"), "imaginative"), + (UniCase("spectarors"), "spectators"), + (UniCase("goosebumbs"), "goosebumps"), + (UniCase("startupbus"), "startups"), + (UniCase("preservating"), "preservation"), + (UniCase("lingerine"), "lingerie"), + (UniCase("liasion"), "liaison"), + (UniCase("fronteir"), "frontier"), + (UniCase("psychologyst"), "psychologist"), + (UniCase("socioecomonic"), "socioeconomic"), + (UniCase("simialir"), "similiar"), + (UniCase("intimitading"), "intimidating"), + (UniCase("unanmious"), "unanimous"), + (UniCase("perpetuaded"), "perpetuated"), + (UniCase("irresponsable"), "irresponsible"), + (UniCase("alchemey"), "alchemy"), + (UniCase("nationalististic"), "nationalistic"), + (UniCase("metaphysicals"), "metaphysics"), + (UniCase("manufactureers"), "manufactures"), + (UniCase("burrtios"), "burritos"), + (UniCase("demonstarte"), "demonstrate"), + (UniCase("restriccion"), "restriction"), + (UniCase("continuosly"), "continuously"), + (UniCase("adviseer"), "adviser"), + (UniCase("trasnferred"), "transferred"), + (UniCase("geniunely"), "genuinely"), + (UniCase("embarrasing"), "embarrassing"), + (UniCase("investigacion"), "investigation"), + (UniCase("idealistisch"), "idealistic"), + (UniCase("derivaties"), "derivatives"), + (UniCase("tusnami"), "tsunami"), + (UniCase("discontiued"), "discontinued"), + (UniCase("criticisn"), "criticising"), + (UniCase("streamus"), "streams"), + (UniCase("shorly"), "shortly"), + (UniCase("correlatas"), "correlates"), + (UniCase("constraction"), "construction"), + (UniCase("birmignham"), "birmingham"), + (UniCase("adrelanine"), "adrenaline"), + (UniCase("obsessivley"), "obsessive"), + (UniCase("nieghbours"), "neighbours"), + (UniCase("directrx"), "directx"), + (UniCase("preservaton"), "preservation"), + (UniCase("transesxuals"), "transsexuals"), + (UniCase("brakethrough"), "breakthrough"), + (UniCase("aquaintance"), "acquaintance"), + (UniCase("conventionnal"), "conventional"), + (UniCase("keyesnian"), "keynesian"), + (UniCase("ouevre"), "oeuvre"), + (UniCase("adventus"), "adventures"), + (UniCase("yodelled"), "yodeled"), + (UniCase("negoitate"), "negotiate"), + (UniCase("anlayses"), "analyses"), + (UniCase("quantititive"), "quantitative"), + (UniCase("recognisably"), "recognizably"), + (UniCase("protestent"), "protestant"), + (UniCase("offcially"), "officially"), + (UniCase("saskatchewn"), "saskatchewan"), + (UniCase("rememebrs"), "remembers"), + (UniCase("electricman"), "electrician"), + (UniCase("eqautions"), "equations"), + (UniCase("cyclinder"), "cylinder"), + (UniCase("misdameanors"), "misdemeanors"), + (UniCase("sensasional"), "sensational"), + (UniCase("throughoput"), "throughput"), + (UniCase("listents"), "listens"), + (UniCase("frequenices"), "frequencies"), + (UniCase("transferts"), "transfers"), + (UniCase("difenitly"), "definitly"), + (UniCase("anecdotallly"), "anecdotally"), + (UniCase("disguss"), "disgusts"), + (UniCase("canceles"), "cancels"), + (UniCase("cavilled"), "caviled"), + (UniCase("catterpillars"), "caterpillars"), + (UniCase("deplorabil"), "deplorable"), + (UniCase("sepina"), "subpoena"), + (UniCase("commandmant"), "commandment"), + (UniCase("superifical"), "superficial"), + (UniCase("analystics"), "analysts"), + (UniCase("striaghtforward"), "straightforward"), + (UniCase("shouldes"), "shoulders"), + (UniCase("organisationers"), "organisations"), + (UniCase("substences"), "substances"), + (UniCase("concervation"), "conservation"), + (UniCase("univesities"), "universities"), + (UniCase("respectible"), "respectable"), + (UniCase("transportr"), "transporter"), + (UniCase("artillary"), "artillery"), + (UniCase("analzye"), "analyze"), + (UniCase("cincinatti"), "cincinnati"), + (UniCase("progressivly"), "progressively"), + (UniCase("koncentration"), "concentration"), + (UniCase("photogrpahs"), "photographs"), + (UniCase("outweighes"), "outweighs"), + (UniCase("reapirs"), "repairs"), + (UniCase("correctons"), "corrections"), + (UniCase("awakenend"), "awakened"), + (UniCase("benckmarks"), "benchmarks"), + (UniCase("possiblities"), "possibilities"), + (UniCase("venelope"), "envelope"), + (UniCase("theoritically"), "theoretically"), + (UniCase("convienient"), "convenient"), + (UniCase("benchmars"), "benchmarks"), + (UniCase("proceder"), "procedure"), + (UniCase("angrilly"), "angrily"), + (UniCase("expressens"), "expresses"), + (UniCase("expierenced"), "experienced"), + (UniCase("expodentially"), "exponentially"), + (UniCase("prioritie"), "prioritize"), + (UniCase("subsidises"), "subsidizes"), + (UniCase("experimentle"), "experimented"), + (UniCase("palistinians"), "palestinians"), + (UniCase("territorist"), "terrorist"), + (UniCase("homophibic"), "homophobic"), + (UniCase("melborune"), "melbourne"), + (UniCase("prologomena"), "prolegomena"), + (UniCase("skateborad"), "skateboard"), + (UniCase("extraoridnary"), "extraordinary"), + (UniCase("contectual"), "contextual"), + (UniCase("acquiantences"), "acquaintances"), + (UniCase("mannorisms"), "mannerisms"), + (UniCase("countrywise"), "countryside"), + (UniCase("possesion"), "possession"), + (UniCase("passwors"), "passwords"), + (UniCase("definitifely"), "definitively"), + (UniCase("implementaiton"), "implementation"), + (UniCase("inhernetly"), "inherently"), + (UniCase("optimizate"), "optimize"), + (UniCase("transciprt"), "transcripts"), + (UniCase("blackmsith"), "blacksmith"), + (UniCase("crockodiles"), "crocodiles"), + (UniCase("cutsence"), "cutscene"), + (UniCase("labatory"), "lavatory"), + (UniCase("transmisions"), "transmission"), + (UniCase("prceeded"), "preceded"), + (UniCase("placebro"), "placebo"), + (UniCase("golbins"), "goblins"), + (UniCase("depressies"), "depressive"), + (UniCase("psychotisch"), "psychotic"), + (UniCase("reinitalizations"), "reinitializations"), + (UniCase("socailist"), "socialist"), + (UniCase("limitant"), "militant"), + (UniCase("appropiate"), "appropriate"), + (UniCase("ansalisation"), "nasalisation"), + (UniCase("remainig"), "remaining"), + (UniCase("propogate"), "propagate"), + (UniCase("facilitarte"), "facilitate"), + (UniCase("invisivility"), "invisibility"), + (UniCase("backerds"), "backers"), + (UniCase("aneroxic"), "anorexic"), + (UniCase("entrophy"), "entropy"), + (UniCase("recongizing"), "recognizing"), + (UniCase("scandaloso"), "scandals"), + (UniCase("gradualy"), "gradually"), + (UniCase("assistantes"), "assistants"), + (UniCase("cafetiera"), "cafeteria"), + (UniCase("munipulative"), "manipulative"), + (UniCase("understandible"), "understandable"), + (UniCase("disatvantages"), "disadvantages"), + (UniCase("willaims"), "williams"), + (UniCase("correposding"), "corresponding"), + (UniCase("strengts"), "strengths"), + (UniCase("disparingly"), "disparagingly"), + (UniCase("pyschologists"), "psychologists"), + (UniCase("furthurmore"), "furthermore"), + (UniCase("socialim"), "socialism"), + (UniCase("decroative"), "decorative"), + (UniCase("circumferance"), "circumference"), + (UniCase("brotherood"), "brotherhood"), + (UniCase("heorics"), "heroics"), + (UniCase("subesquently"), "subsequently"), + (UniCase("stimulai"), "stimuli"), + (UniCase("incompatent"), "incompetent"), + (UniCase("assimilerat"), "assimilate"), + (UniCase("aestethically"), "aesthetically"), + (UniCase("introverso"), "introverts"), + (UniCase("clenase"), "cleanse"), + (UniCase("councillors"), "councilors"), + (UniCase("whipsers"), "whispers"), + (UniCase("shelvers"), "shelves"), + (UniCase("libertae"), "liberate"), + (UniCase("specialication"), "specialization"), + (UniCase("origanaly"), "originally"), + (UniCase("alirghty"), "alrighty"), + (UniCase("fossilising"), "fossilizing"), + (UniCase("overcloaked"), "overclocked"), + (UniCase("responsibilites"), "responsibilities"), + (UniCase("becnhmarks"), "benchmarks"), + (UniCase("desireable"), "desirable"), + (UniCase("enviromentally"), "environmentally"), + (UniCase("itnroduced"), "introduced"), + (UniCase("algorithmus"), "algorithms"), + (UniCase("declinig"), "declining"), + (UniCase("invovling"), "involving"), + (UniCase("vairables"), "variables"), + (UniCase("turntabel"), "turntable"), + (UniCase("faecal"), "fecal"), + (UniCase("emmitted"), "emitted"), + (UniCase("chameleooon"), "chameleon"), + (UniCase("discontined"), "discontinued"), + (UniCase("determen"), "determines"), + (UniCase("smoe"), "some"), + (UniCase("passivedns"), "passives"), + (UniCase("maradeur"), "marauder"), + (UniCase("comback"), "comeback"), + (UniCase("unexpectely"), "unexpectedly"), + (UniCase("kilomiters"), "kilometers"), + (UniCase("mouthpeices"), "mouthpiece"), + (UniCase("suspectible"), "susceptible"), + (UniCase("ensalved"), "enslaved"), + (UniCase("compresion"), "compression"), + (UniCase("capialized"), "capitalized"), + (UniCase("anesthisia"), "anesthesia"), + (UniCase("referincing"), "referencing"), + (UniCase("charactors"), "characters"), + (UniCase("accumulato"), "accumulation"), + (UniCase("propersity"), "propensity"), + (UniCase("slighlty"), "slightly"), + (UniCase("acceleraptor"), "accelerator"), + (UniCase("hurriganes"), "hurricanes"), + (UniCase("contentous"), "contentious"), + (UniCase("fahrenheight"), "fahrenheit"), + (UniCase("meditatin"), "meditation"), + (UniCase("owerpowering"), "overpowering"), + (UniCase("underneight"), "underweight"), + (UniCase("percession"), "percussion"), + (UniCase("penicls"), "pencils"), + (UniCase("promoteurs"), "promotes"), + (UniCase("apsects"), "aspects"), + (UniCase("soveregnity"), "sovereignty"), + (UniCase("periwinlke"), "periwinkle"), + (UniCase("disembowelling"), "disemboweling"), + (UniCase("competitin"), "competitions"), + (UniCase("gothenberg"), "gothenburg"), + (UniCase("lingiere"), "lingerie"), + (UniCase("montaeg"), "montage"), + (UniCase("caperbility"), "capability"), + (UniCase("exeuctions"), "executions"), + (UniCase("archaelogy"), "archaeology"), + (UniCase("dobulelift"), "doublelift"), + (UniCase("philosiphical"), "philosophical"), + (UniCase("democraphics"), "demographics"), + (UniCase("acclimatisation"), "acclimatization"), + (UniCase("premiee"), "premiere"), + (UniCase("nieghbourhoods"), "neighbourhood"), + (UniCase("circualtion"), "circulation"), + (UniCase("dramaticaly"), "dramatically"), + (UniCase("persistes"), "persists"), + (UniCase("popularest"), "populate"), + (UniCase("pronomial"), "pronominal"), + (UniCase("encyclopaedic"), "encyclopedic"), + (UniCase("identitties"), "identities"), + (UniCase("systematiclly"), "systematically"), + (UniCase("terriories"), "territories"), + (UniCase("ignitin"), "ignition"), + (UniCase("administerd"), "administered"), + (UniCase("suspiciosly"), "suspiciously"), + (UniCase("accomplise"), "accomplishes"), + (UniCase("indigenious"), "indigenous"), + (UniCase("montania"), "montana"), + (UniCase("antibioticos"), "antibiotics"), + (UniCase("practitionner"), "practitioner"), + (UniCase("prioritising"), "prioritizing"), + (UniCase("cylcists"), "cyclists"), + (UniCase("conenctions"), "connections"), + (UniCase("eyebrowes"), "eyebrows"), + (UniCase("hopelessely"), "hopelessly"), + (UniCase("compremising"), "compromising"), + (UniCase("dishonourable"), "dishonorable"), + (UniCase("skeptisism"), "skepticism"), + (UniCase("enterity"), "entirety"), + (UniCase("mathewes"), "mathews"), + (UniCase("immobilisation"), "immobilization"), + (UniCase("destrose"), "destroyers"), + (UniCase("accidential"), "accidental"), + (UniCase("critisicing"), "criticizing"), + (UniCase("mathematicals"), "mathematics"), + (UniCase("cigarets"), "cigarettes"), + (UniCase("resolucion"), "resolution"), + (UniCase("desinged"), "designed"), + (UniCase("replubic"), "republic"), + (UniCase("misproportionate"), "disproportionate"), + (UniCase("dependancy"), "dependency"), + (UniCase("juggernaunts"), "juggernaut"), + (UniCase("torchligth"), "torchlight"), + (UniCase("convenant"), "covenant"), + (UniCase("tryavon"), "trayvon"), + (UniCase("rigthfully"), "rightfully"), + (UniCase("gagnsters"), "gangsters"), + (UniCase("excessivley"), "excessively"), + (UniCase("commentar"), "commentator"), + (UniCase("divisons"), "divisions"), + (UniCase("pharamcy"), "pharmacy"), + (UniCase("comperable"), "comparable"), + (UniCase("microtransacions"), "microtransactions"), + (UniCase("optimistc"), "optimistic"), + (UniCase("retroactivily"), "retroactively"), + (UniCase("reveiwed"), "reviewed"), + (UniCase("perpetraitor"), "perpetrator"), + (UniCase("filiament"), "filament"), + (UniCase("worshippig"), "worshipping"), + (UniCase("firsbee"), "frisbee"), + (UniCase("aggaravates"), "aggravates"), + (UniCase("civilise"), "civilize"), + (UniCase("thirtsy"), "thirsty"), + (UniCase("consequenses"), "consequences"), + (UniCase("tsunamai"), "tsunami"), + (UniCase("hullucination"), "hallucination"), + (UniCase("harrasing"), "harassing"), + (UniCase("tesitfy"), "testify"), + (UniCase("vitrually"), "virtually"), + (UniCase("ownders"), "wonders"), + (UniCase("vassalls"), "vassals"), + (UniCase("childbird"), "childbirth"), + (UniCase("studioes"), "studios"), + (UniCase("psychriatic"), "psychiatric"), + (UniCase("incredably"), "incredibly"), + (UniCase("sotyr"), "satyr"), + (UniCase("disadvantged"), "disadvantaged"), + (UniCase("irrationably"), "irrationally"), + (UniCase("dissodance"), "dissonance"), + (UniCase("uninteresing"), "uninteresting"), + (UniCase("generalised"), "generalized"), + (UniCase("ahve"), "have"), + (UniCase("mutliplying"), "multiplying"), + (UniCase("produtcion"), "productions"), + (UniCase("connectit"), "connecticut"), + (UniCase("intricicies"), "intricacies"), + (UniCase("blacony"), "balcony"), + (UniCase("explodie"), "explode"), + (UniCase("versatel"), "versatile"), + (UniCase("instrumenal"), "instrumental"), + (UniCase("cilynders"), "cylinders"), + (UniCase("circumstace"), "circumstance"), + (UniCase("derivitives"), "derivatives"), + (UniCase("orchestarted"), "orchestrated"), + (UniCase("peice"), "piece"), + (UniCase("desregarding"), "disregarding"), + (UniCase("dwarvens"), "dwarves"), + (UniCase("spehrical"), "spherical"), + (UniCase("paralyse"), "paralyze"), + (UniCase("listners"), "listeners"), + (UniCase("moustachioed"), "mustachioed"), + (UniCase("protectes"), "protects"), + (UniCase("comparisson"), "comparisons"), + (UniCase("protruberances"), "protuberances"), + (UniCase("difficulity"), "difficulty"), + (UniCase("cattleship"), "battleship"), + (UniCase("verbaly"), "verbally"), + (UniCase("chanceller"), "chancellor"), + (UniCase("troubleshotting"), "troubleshooting"), + (UniCase("visibiltiy"), "visibility"), + (UniCase("immobilzed"), "immobile"), + (UniCase("joepardy"), "jeopardy"), + (UniCase("degenarate"), "degenerate"), + (UniCase("interchangebly"), "interchangeably"), + (UniCase("prestiguous"), "prestigious"), + (UniCase("socities"), "societies"), + (UniCase("enchantig"), "enchanting"), + (UniCase("comprable"), "comparable"), + (UniCase("religionens"), "religions"), + (UniCase("registrating"), "registration"), + (UniCase("calulater"), "calculator"), + (UniCase("interratial"), "interracial"), + (UniCase("perposefully"), "purposefully"), + (UniCase("saskatechwan"), "saskatchewan"), + (UniCase("exlpoding"), "exploding"), + (UniCase("capacitores"), "capacitors"), + (UniCase("instituttet"), "institute"), + (UniCase("carloina"), "carolina"), + (UniCase("existend"), "existed"), + (UniCase("caluculated"), "calculated"), + (UniCase("desctruction"), "destruction"), + (UniCase("interesat"), "interest"), + (UniCase("unbanend"), "unbanned"), + (UniCase("basiton"), "bastion"), + (UniCase("concentrarte"), "concentrate"), + (UniCase("operatings"), "operations"), + (UniCase("perspecive"), "perspective"), + (UniCase("acsension"), "ascension"), + (UniCase("aethistic"), "atheistic"), + (UniCase("acqauinted"), "acquainted"), + (UniCase("culumative"), "cumulative"), + (UniCase("presidentail"), "presidential"), + (UniCase("seamlessley"), "seamlessly"), + (UniCase("recoginsed"), "recognised"), + (UniCase("incidencies"), "incidence"), + (UniCase("miraculosly"), "miraculously"), + (UniCase("representstive"), "representatives"), + (UniCase("homeword"), "homeworld"), + (UniCase("amensty"), "amnesty"), + (UniCase("geurrilla"), "guerrilla"), + (UniCase("sqaurely"), "squarely"), + (UniCase("translusent"), "translucent"), + (UniCase("combinatin"), "combinations"), + (UniCase("teancity"), "tenacity"), + (UniCase("facillitate"), "facilitate"), + (UniCase("desperatley"), "desperately"), + (UniCase("nationalisation"), "nationalization"), + (UniCase("consentrations"), "concentrations"), + (UniCase("drankenstein"), "frankenstein"), + (UniCase("cilpboard"), "clipboard"), + (UniCase("algorithmns"), "algorithms"), + (UniCase("antagonostic"), "antagonist"), + (UniCase("outmanoeuvring"), "outmaneuvering"), + (UniCase("reveales"), "reveals"), + (UniCase("univeral"), "universal"), + (UniCase("conciderably"), "considerably"), + (UniCase("sproutes"), "sprouts"), + (UniCase("hamburgles"), "hamburgers"), + (UniCase("precurors"), "precursor"), + (UniCase("zionistm"), "zionism"), + (UniCase("perimetre"), "perimeter"), + (UniCase("moderatorn"), "moderation"), + (UniCase("mileau"), "milieu"), + (UniCase("atriculate"), "articulate"), + (UniCase("perfeccion"), "perfection"), + (UniCase("righteos"), "righteous"), + (UniCase("insignifigant"), "insignificant"), + (UniCase("patronis"), "patrons"), + (UniCase("activite"), "activities"), + (UniCase("austeriy"), "austerity"), + (UniCase("peageant"), "pageant"), + (UniCase("falgship"), "flagship"), + (UniCase("phsyics"), "physics"), + (UniCase("poisones"), "poisons"), + (UniCase("mentiong"), "mentioning"), + (UniCase("raphsody"), "rhapsody"), + (UniCase("mathematicans"), "mathematics"), + (UniCase("contencion"), "contention"), + (UniCase("litecion"), "litecoin"), + (UniCase("recipiants"), "recipients"), + (UniCase("conceptualise"), "conceptualize"), + (UniCase("simliarities"), "similarities"), + (UniCase("sensationel"), "sensational"), + (UniCase("factorises"), "factorizes"), + (UniCase("franticlly"), "frantically"), + (UniCase("enforse"), "enforces"), + (UniCase("speicalist"), "specialist"), + (UniCase("occassioned"), "occasioned"), + (UniCase("dialoge"), "dialogue"), + (UniCase("predeccesors"), "predecessor"), + (UniCase("abandonig"), "abandoning"), + (UniCase("realibly"), "reliably"), + (UniCase("australien"), "australian"), + (UniCase("homeopahty"), "homeopathy"), + (UniCase("organises"), "organizes"), + (UniCase("legislatie"), "legislative"), + (UniCase("excecution"), "execution"), + (UniCase("recolleciton"), "recollection"), + (UniCase("assocaited"), "associated"), + (UniCase("understad"), "understands"), + (UniCase("annilihated"), "annihilated"), + (UniCase("physicials"), "physicians"), + (UniCase("wholeheartadly"), "wholeheartedly"), + (UniCase("encompesses"), "encompasses"), + (UniCase("satrical"), "satirical"), + (UniCase("recongize"), "recognize"), + (UniCase("immigrents"), "immigrants"), + (UniCase("humillation"), "humiliation"), + (UniCase("diabets"), "diabetes"), + (UniCase("insultos"), "insults"), + (UniCase("architecure"), "architecture"), + (UniCase("voilation"), "violation"), + (UniCase("suceeding"), "succeeding"), + (UniCase("deliverately"), "deliberately"), + (UniCase("pronuntiation"), "pronunciation"), + (UniCase("retireve"), "retrieve"), + (UniCase("miniscuel"), "miniscule"), + (UniCase("illuminai"), "illuminati"), + (UniCase("furiuosly"), "furiously"), + (UniCase("popluar"), "popular"), + (UniCase("naopleon"), "napoleon"), + (UniCase("wealtheir"), "wealthier"), + (UniCase("demosntrates"), "demonstrates"), + (UniCase("northeren"), "northern"), + (UniCase("provocativley"), "provocative"), + (UniCase("birthdayers"), "birthdays"), + (UniCase("islamiskt"), "islamist"), + (UniCase("demoralising"), "demoralizing"), + (UniCase("tattooos"), "tattoos"), + (UniCase("revolutin"), "revolutions"), + (UniCase("straigthened"), "straightened"), + (UniCase("carbien"), "carbine"), + (UniCase("grandchilden"), "grandchildren"), + (UniCase("schizoprhenic"), "schizophrenic"), + (UniCase("startegic"), "strategic"), + (UniCase("counterd"), "countered"), + (UniCase("derugulation"), "deregulation"), + (UniCase("arlignton"), "arlington"), + (UniCase("battelfield"), "battlefield"), + (UniCase("aqquaintances"), "acquaintances"), + (UniCase("proficienty"), "proficiency"), + (UniCase("realised"), "realized"), + (UniCase("predjuices"), "prejudices"), + (UniCase("drasitcally"), "drastically"), + (UniCase("garuantees"), "guarantees"), + (UniCase("prepostorous"), "preposterous"), + (UniCase("responcibilities"), "responsibilities"), + (UniCase("aparment"), "apartment"), + (UniCase("rusteld"), "rustled"), + (UniCase("strawbrerry"), "strawberry"), + (UniCase("pervertes"), "perverse"), + (UniCase("guranteed"), "guaranteed"), + (UniCase("commendment"), "commandment"), + (UniCase("internationalises"), "internationalizes"), + (UniCase("stablizied"), "stabilized"), + (UniCase("enlargment"), "enlargement"), + (UniCase("undergating"), "undertaking"), + (UniCase("constillation"), "constellation"), + (UniCase("unconditionable"), "unconditional"), + (UniCase("improtantly"), "importantly"), + (UniCase("laybrinth"), "labyrinth"), + (UniCase("resteraunts"), "restaurants"), + (UniCase("canonise"), "canonize"), + (UniCase("publiser"), "publisher"), + (UniCase("australianess"), "australians"), + (UniCase("poisonos"), "poisons"), + (UniCase("legitmate"), "legitimate"), + (UniCase("libertairan"), "libertarians"), + (UniCase("cleasning"), "cleansing"), + (UniCase("preists"), "priests"), + (UniCase("alcoholicos"), "alcoholics"), + (UniCase("wholeheartidly"), "wholeheartedly"), + (UniCase("overloards"), "overload"), + (UniCase("persuation"), "persuasion"), + (UniCase("idaes"), "ideas"), + (UniCase("unsuprising"), "unsurprising"), + (UniCase("holdiays"), "holidays"), + (UniCase("bouregois"), "bourgeois"), + (UniCase("unvelievable"), "unbelievable"), + (UniCase("mistakedly"), "mistakenly"), + (UniCase("chrsitian"), "christian"), + (UniCase("fucntion"), "function"), + (UniCase("translastion"), "translations"), + (UniCase("certificationkits"), "certifications"), + (UniCase("decpetive"), "deceptive"), + (UniCase("markerts"), "markers"), + (UniCase("consdiered"), "considered"), + (UniCase("perpitrators"), "perpetrators"), + (UniCase("democratised"), "democratized"), + (UniCase("promptes"), "prompts"), + (UniCase("denomenations"), "denominations"), + (UniCase("behavoiral"), "behavioral"), + (UniCase("supermarkert"), "supermarkets"), + (UniCase("margarent"), "margaret"), + (UniCase("rebellios"), "rebellious"), + (UniCase("cartrige"), "cartridge"), + (UniCase("ceratin"), "certain"), + (UniCase("permaturely"), "prematurely"), + (UniCase("masturdating"), "masturbating"), + (UniCase("brillaince"), "brilliance"), + (UniCase("pratcise"), "practise"), + (UniCase("formidabil"), "formidable"), + (UniCase("bedevilling"), "bedeviling"), + (UniCase("flavous"), "flavours"), + (UniCase("democarcy"), "democracy"), + (UniCase("theologicial"), "theological"), + (UniCase("exictement"), "excitement"), + (UniCase("aincents"), "ancients"), + (UniCase("mircotransaction"), "microtransactions"), + (UniCase("contineously"), "continuously"), + (UniCase("intriuged"), "intrigued"), + (UniCase("dialetcs"), "dialects"), + (UniCase("battlefiled"), "battlefield"), + (UniCase("elsehwere"), "elsewhere"), + (UniCase("skrimish"), "skirmish"), + (UniCase("cardianls"), "cardinals"), + (UniCase("knowledgebale"), "knowledgable"), + (UniCase("sacrificeing"), "sacrificing"), + (UniCase("neigbhorhood"), "neighborhoods"), + (UniCase("titanim"), "titanium"), + (UniCase("subsidiy"), "subsidy"), + (UniCase("viewpiont"), "viewpoint"), + (UniCase("importen"), "importance"), + (UniCase("redeisgn"), "redesign"), + (UniCase("histocompatability"), "histocompatibility"), + (UniCase("unsustianable"), "unsustainable"), + (UniCase("infantus"), "infants"), + (UniCase("liquidise"), "liquidize"), + (UniCase("trabajdo"), "trabajo"), + (UniCase("sensationalise"), "sensationalize"), + (UniCase("landscaps"), "landscapes"), + (UniCase("accomplishent"), "accomplishment"), + (UniCase("sentimentalised"), "sentimentalized"), + (UniCase("correccion"), "correction"), + (UniCase("disrespekted"), "disrespected"), + (UniCase("graudating"), "graduating"), + (UniCase("ideoligies"), "ideologies"), + (UniCase("dishinored"), "dishonored"), + (UniCase("sentincing"), "sentencing"), + (UniCase("deveploment"), "developments"), + (UniCase("unbeliebable"), "unbelievable"), + (UniCase("fundametals"), "fundamentals"), + (UniCase("commemters"), "commenters"), + (UniCase("decorativo"), "decoration"), + (UniCase("eqaution"), "equation"), + (UniCase("persucution"), "persecution"), + (UniCase("generatore"), "generate"), + (UniCase("dispalcement"), "displacement"), + (UniCase("anyoneis"), "anyones"), + (UniCase("speciallist"), "specialist"), + (UniCase("unrelyable"), "unreliable"), + (UniCase("prisitne"), "pristine"), + (UniCase("interioara"), "interior"), + (UniCase("funniliy"), "funnily"), + (UniCase("metre"), "meter"), + (UniCase("sulphate"), "sulfate"), + (UniCase("shuoldnt"), "shouldnt"), + (UniCase("horozontally"), "horizontally"), + (UniCase("recurison"), "recursion"), + (UniCase("invovle"), "involve"), + (UniCase("skillshoots"), "skillshots"), + (UniCase("comestic"), "cosmetic"), + (UniCase("chromosones"), "chromosomes"), + (UniCase("unpredictabe"), "unpredictable"), + (UniCase("transitiond"), "transitioned"), + (UniCase("accredidation"), "accreditation"), + (UniCase("encahnt"), "enchant"), + (UniCase("eclipes"), "eclipse"), + (UniCase("frustraties"), "frustrates"), + (UniCase("pointure"), "pointer"), + (UniCase("someoneis"), "someones"), + (UniCase("specailization"), "specialization"), + (UniCase("fermentaiton"), "fermentation"), + (UniCase("invloving"), "involving"), + (UniCase("registeres"), "registers"), + (UniCase("relcutantly"), "reluctantly"), + (UniCase("extoics"), "exotics"), + (UniCase("luckilly"), "luckily"), + (UniCase("baskteball"), "basketball"), + (UniCase("subjectivly"), "subjectively"), + (UniCase("thunderboldt"), "thunderbolt"), + (UniCase("flavours"), "flavors"), + (UniCase("bookmakrs"), "bookmarks"), + (UniCase("illution"), "illusion"), + (UniCase("qunetin"), "quentin"), + (UniCase("adverticed"), "advertised"), + (UniCase("casheirs"), "cashiers"), + (UniCase("kilogrammes"), "kilograms"), + (UniCase("creationnist"), "creationist"), + (UniCase("protocolls"), "protocols"), + (UniCase("expireds"), "expires"), + (UniCase("watercolours"), "watercolors"), + (UniCase("gauntanamo"), "guantanamo"), + (UniCase("existnace"), "existance"), + (UniCase("assignemnts"), "assignments"), + (UniCase("hyprocite"), "hypocrite"), + (UniCase("cringyworthy"), "cringeworthy"), + (UniCase("inspectoras"), "inspectors"), + (UniCase("angostic"), "agnostic"), + (UniCase("hearhtstone"), "hearthstone"), + (UniCase("mercenares"), "mercenaries"), + (UniCase("birsbane"), "brisbane"), + (UniCase("replacemnts"), "replacements"), + (UniCase("penisylvania"), "pennsylvania"), + (UniCase("inpoverished"), "impoverished"), + (UniCase("mediavel"), "medieval"), + (UniCase("pscyhologist"), "psychologist"), + (UniCase("licence"), "license"), + (UniCase("performanes"), "performances"), + (UniCase("principalis"), "principals"), + (UniCase("repatition"), "repetition"), + (UniCase("comandos"), "commandos"), + (UniCase("dismisse"), "dismissive"), + (UniCase("coordenation"), "coordination"), + (UniCase("inpeach"), "impeach"), + (UniCase("congragulate"), "congratulate"), + (UniCase("dependance"), "dependence"), + (UniCase("ballistc"), "ballistic"), + (UniCase("liverpol"), "liverpool"), + (UniCase("humanise"), "humanize"), + (UniCase("moisturier"), "moisturizer"), + (UniCase("braziliaan"), "brazilians"), + (UniCase("powetlifting"), "powerlifting"), + (UniCase("thermomoter"), "thermometer"), + (UniCase("westerness"), "westerners"), + (UniCase("progressie"), "progressives"), + (UniCase("acknoweldge"), "acknowledge"), + (UniCase("recident"), "resident"), + (UniCase("planetwalker"), "planeswalker"), + (UniCase("endagnering"), "endangering"), + (UniCase("infograpic"), "infographic"), + (UniCase("islandes"), "islanders"), + (UniCase("helikopters"), "helicopters"), + (UniCase("supportare"), "supporters"), + (UniCase("rivarlies"), "rivalries"), + (UniCase("bitcions"), "bitcoins"), + (UniCase("passivising"), "passivizing"), + (UniCase("fourty"), "forty"), + (UniCase("confidantly"), "confidently"), + (UniCase("punishible"), "punishable"), + (UniCase("scriptus"), "scripts"), + (UniCase("demonstarting"), "demonstrating"), + (UniCase("indutrial"), "industrial"), + (UniCase("sociopathes"), "sociopaths"), + (UniCase("interactios"), "interacts"), + (UniCase("desitny"), "destiny"), + (UniCase("weigthlifting"), "weightlifting"), + (UniCase("profesor"), "professor"), + (UniCase("downvoteres"), "downvoters"), + (UniCase("critizizing"), "criticizing"), + (UniCase("gpysies"), "gypsies"), + (UniCase("kidnappping"), "kidnapping"), + (UniCase("environemntal"), "environmental"), + (UniCase("bureaucractic"), "bureaucratic"), + (UniCase("administor"), "administer"), + (UniCase("incoherant"), "incoherent"), + (UniCase("communciations"), "communications"), + (UniCase("calbiration"), "calibration"), + (UniCase("absoulte"), "absolute"), + (UniCase("capacitaron"), "capacitor"), + (UniCase("anedoctes"), "anecdotes"), + (UniCase("definetlly"), "definetly"), + (UniCase("intrduced"), "introduced"), + (UniCase("monumet"), "monument"), + (UniCase("integraal"), "integral"), + (UniCase("counsoling"), "counseling"), + (UniCase("oversimplyfication"), "oversimplification"), + (UniCase("repitle"), "reptile"), + (UniCase("vehemontly"), "vehemently"), + (UniCase("proscratination"), "procrastination"), + (UniCase("consonents"), "consonants"), + (UniCase("ionisation"), "ionization"), + (UniCase("cranbery"), "cranberry"), + (UniCase("asphyxation"), "asphyxiation"), + (UniCase("firendzoned"), "friendzoned"), + (UniCase("industrualized"), "industrialized"), + (UniCase("unnecissary"), "unnecessary"), + (UniCase("germanus"), "germans"), + (UniCase("disaspointed"), "dissapointed"), + (UniCase("contextualise"), "contextualize"), + (UniCase("accesseries"), "accessories"), + (UniCase("informis"), "informs"), + (UniCase("interferece"), "interference"), + (UniCase("spagheti"), "spaghetti"), + (UniCase("stimualtion"), "stimulation"), + (UniCase("misogynistc"), "misogynistic"), + (UniCase("centrepiece"), "centerpiece"), + (UniCase("survivers"), "survivors"), + (UniCase("appreciaton"), "appreciation"), + (UniCase("soparnos"), "sopranos"), + (UniCase("ilogical"), "illogical"), + (UniCase("laughablly"), "laughably"), + (UniCase("algorithum"), "algorithm"), + (UniCase("defenesman"), "defenseman"), + (UniCase("accidentily"), "accidently"), + (UniCase("herculeas"), "hercules"), + (UniCase("palastinians"), "palestinians"), + (UniCase("colombina"), "colombia"), + (UniCase("harrases"), "harasses"), + (UniCase("catestrophic"), "catastrophic"), + (UniCase("architectes"), "architects"), + (UniCase("consequense"), "consequences"), + (UniCase("implaments"), "implements"), + (UniCase("technicans"), "technicians"), + (UniCase("chihuaha"), "chihuahua"), + (UniCase("autherized"), "authorized"), + (UniCase("concered"), "concede"), + (UniCase("pillaris"), "pillars"), + (UniCase("whislting"), "whistling"), + (UniCase("miserablly"), "miserably"), + (UniCase("totalitarion"), "totalitarian"), + (UniCase("pblisher"), "publisher"), + (UniCase("ibuprofine"), "ibuprofen"), + (UniCase("haemophiliac"), "hemophiliac"), + (UniCase("superintendant"), "superintendent"), + (UniCase("dissappear"), "disappear"), + (UniCase("sidebaord"), "sideboard"), + (UniCase("abondoning"), "abandoning"), + (UniCase("initalisation"), "initialisation"), + (UniCase("compelation"), "compilation"), + (UniCase("distrubited"), "distributed"), + (UniCase("mastrubating"), "masturbating"), + (UniCase("teleportaion"), "teleportation"), + (UniCase("socilaist"), "socialist"), + (UniCase("beehtoven"), "beethoven"), + (UniCase("naturalisation"), "naturalization"), + (UniCase("contendors"), "contenders"), + (UniCase("pitchworks"), "pitchforks"), + (UniCase("inclinato"), "inclination"), + (UniCase("exterioara"), "exterior"), + (UniCase("collape"), "collapse"), + (UniCase("deficience"), "deficiencies"), + (UniCase("influancing"), "influencing"), + (UniCase("astronomia"), "astronomical"), + (UniCase("makse"), "makes"), + (UniCase("extremly"), "extremely"), + (UniCase("vaccum"), "vacuum"), + (UniCase("storeys"), "stories"), + (UniCase("commanists"), "communists"), + (UniCase("tightare"), "tighter"), + (UniCase("absailing"), "abseiling"), + (UniCase("disrespekting"), "disrespecting"), + (UniCase("comsetic"), "cosmetic"), + (UniCase("sacrifical"), "sacrificial"), + (UniCase("embarasaing"), "embarassing"), + (UniCase("condenmed"), "condemned"), + (UniCase("bourgeousie"), "bourgeois"), + (UniCase("curisve"), "cursive"), + (UniCase("biologiset"), "biologist"), + (UniCase("contanting"), "contacting"), + (UniCase("bondary"), "boundary"), + (UniCase("descrie"), "describe"), + (UniCase("negotiationg"), "negotiating"), + (UniCase("correctings"), "corrections"), + (UniCase("examinated"), "examined"), + (UniCase("lattitude"), "latitude"), + (UniCase("murderus"), "murders"), + (UniCase("coprses"), "corpses"), + (UniCase("enemployment"), "unemployment"), + (UniCase("witnesss"), "witnesses"), + (UniCase("eulogising"), "eulogizing"), + (UniCase("frontlinie"), "frontline"), + (UniCase("protectos"), "protectors"), + (UniCase("marshmallowiest"), "marshmallows"), + (UniCase("fineshes"), "finesse"), + (UniCase("scriptue"), "scriptures"), + (UniCase("attritube"), "attribute"), + (UniCase("suspiciouns"), "suspicion"), + (UniCase("sodomising"), "sodomizing"), + (UniCase("sensationalises"), "sensationalizes"), + (UniCase("preadtor"), "predator"), + (UniCase("dominats"), "dominates"), + (UniCase("paraprhase"), "paraphrase"), + (UniCase("symapthizers"), "sympathizers"), + (UniCase("miminalist"), "minimalist"), + (UniCase("finallizes"), "finalizes"), + (UniCase("documentato"), "documentation"), + (UniCase("doomdsay"), "doomsday"), + (UniCase("unregualted"), "unregulated"), + (UniCase("supermakret"), "supermarkets"), + (UniCase("allianse"), "alliances"), + (UniCase("tensionors"), "tensions"), + (UniCase("promots"), "promotes"), + (UniCase("pebbleos"), "pebbles"), + (UniCase("thermomiter"), "thermometer"), + (UniCase("overmapping"), "overlapping"), + (UniCase("kyrptonite"), "kryptonite"), + (UniCase("karakoe"), "karaoke"), + (UniCase("privatises"), "privatizes"), + (UniCase("illuminazi"), "illuminati"), + (UniCase("integraded"), "integrated"), + (UniCase("contaminanted"), "contaminated"), + (UniCase("godlfish"), "goldfish"), + (UniCase("revoultionary"), "revolutionary"), + (UniCase("agreeement"), "agreement"), + (UniCase("athiestic"), "atheistic"), + (UniCase("colourizes"), "colorizes"), + (UniCase("interraccial"), "interracial"), + (UniCase("archeaologist"), "archeologist"), + (UniCase("phychological"), "psychological"), + (UniCase("backeast"), "backseat"), + (UniCase("vidoegames"), "videogames"), + (UniCase("disollusioned"), "disillusioned"), + (UniCase("sriarcha"), "sriracha"), + (UniCase("rebellis"), "rebellious"), + (UniCase("heroices"), "heroics"), + (UniCase("sqaure"), "square"), + (UniCase("miserabley"), "miserably"), + (UniCase("ptichfork"), "pitchfork"), + (UniCase("pragmatisch"), "pragmatic"), + (UniCase("libraires"), "libraries"), + (UniCase("millenna"), "millennia"), + (UniCase("mercaneries"), "mercenaries"), + (UniCase("methaphor"), "metaphor"), + (UniCase("patronozing"), "patronizing"), + (UniCase("painkilllers"), "painkillers"), + (UniCase("restricive"), "restrictive"), + (UniCase("transluent"), "translucent"), + (UniCase("relatiate"), "retaliate"), + (UniCase("cicrulating"), "circulating"), + (UniCase("corrisponds"), "corresponds"), + (UniCase("commandd"), "commanded"), + (UniCase("progerssive"), "progressives"), + (UniCase("artificually"), "artificially"), + (UniCase("conversatiosn"), "conservation"), + (UniCase("asteorids"), "asteroids"), + (UniCase("obivous"), "obvious"), + (UniCase("flawlessely"), "flawlessly"), + (UniCase("magolia"), "magnolia"), + (UniCase("temporarilly"), "temporarily"), + (UniCase("feburary"), "february"), + (UniCase("intercection"), "interception"), + (UniCase("inevetably"), "inevitably"), + (UniCase("disrespectul"), "disrespectful"), + (UniCase("anachrist"), "anarchist"), + (UniCase("motherborad"), "motherboard"), + (UniCase("ariplane"), "airplane"), + (UniCase("effeciency"), "efficiency"), + (UniCase("greenhoe"), "greenhouse"), + (UniCase("subsidised"), "subsidized"), + (UniCase("sacrifizes"), "sacrifices"), + (UniCase("symbolised"), "symbolized"), + (UniCase("previoulsy"), "previously"), + (UniCase("unedcuated"), "uneducated"), + (UniCase("thesitic"), "theistic"), + (UniCase("athiesm"), "atheism"), + (UniCase("substituts"), "substitutes"), + (UniCase("urbanise"), "urbanize"), + (UniCase("becamae"), "became"), + (UniCase("midfileder"), "midfielder"), + (UniCase("preventetive"), "preventative"), + (UniCase("contestion"), "contention"), + (UniCase("discliamer"), "disclaimer"), + (UniCase("somethinig"), "somethings"), + (UniCase("yera"), "year"), + (UniCase("identifyable"), "identifiable"), + (UniCase("misinterprented"), "misinterpret"), + (UniCase("disgareement"), "disagreements"), + (UniCase("negogiated"), "negotiated"), + (UniCase("stimualting"), "stimulating"), + (UniCase("sovereighty"), "sovereignty"), + (UniCase("extrotion"), "extortion"), + (UniCase("athleticsm"), "athleticism"), + (UniCase("reccommended"), "recommended"), + (UniCase("exorbitent"), "exorbitant"), + (UniCase("extractivo"), "extraction"), + (UniCase("supermakter"), "supermarkets"), + (UniCase("televsion"), "television"), + (UniCase("unweildly"), "unwieldy"), + (UniCase("catalogues"), "catalogs"), + (UniCase("poety"), "poetry"), + (UniCase("reasearch"), "research"), + (UniCase("taryvon"), "trayvon"), + (UniCase("claerly"), "clearly"), + (UniCase("eles"), "eels"), + (UniCase("speechs"), "speeches"), + (UniCase("proposels"), "proposes"), + (UniCase("independenet"), "independents"), + (UniCase("sapphrie"), "sapphire"), + (UniCase("commoditites"), "commodities"), + (UniCase("haricut"), "haircut"), + (UniCase("garrsion"), "garrison"), + (UniCase("acnedote"), "anecdote"), + (UniCase("programmate"), "programme"), + (UniCase("cheeseburges"), "cheeseburgers"), + (UniCase("agricultre"), "agriculture"), + (UniCase("transferrred"), "transferred"), + (UniCase("contribuye"), "contribute"), + (UniCase("percieved"), "perceived"), + (UniCase("corrilates"), "correlates"), + (UniCase("signigns"), "signings"), + (UniCase("determening"), "determining"), + (UniCase("periperhal"), "peripheral"), + (UniCase("criticizng"), "criticizing"), + (UniCase("miscommunciation"), "miscommunication"), + (UniCase("bureuacracy"), "bureaucracy"), + (UniCase("acrynoms"), "acronyms"), + (UniCase("pharmacias"), "pharmacist"), + (UniCase("testiclies"), "testicle"), + (UniCase("corasir"), "corsair"), + (UniCase("interrigation"), "interrogation"), + (UniCase("zionistisk"), "zionists"), + (UniCase("accommidation"), "accommodation"), + (UniCase("existantial"), "existential"), + (UniCase("congrassman"), "congressman"), + (UniCase("experimentul"), "experimental"), + (UniCase("feminising"), "feminizing"), + (UniCase("manifeso"), "manifesto"), + (UniCase("relaoding"), "reloading"), + (UniCase("massacrare"), "massacre"), + (UniCase("watercolour"), "watercolor"), + (UniCase("achievment"), "achievement"), + (UniCase("facepam"), "facepalm"), + (UniCase("horrendious"), "horrendous"), + (UniCase("revoluiton"), "revolutions"), + (UniCase("humanising"), "humanizing"), + (UniCase("austrain"), "austrian"), + (UniCase("traitour"), "traitor"), + (UniCase("descprition"), "descriptions"), + (UniCase("poltical"), "political"), + (UniCase("firtsly"), "firstly"), + (UniCase("accessibilty"), "accessibility"), + (UniCase("incompatablities"), "incompatibilities"), + (UniCase("hourlgass"), "hourglass"), + (UniCase("hygeine"), "hygiene"), + (UniCase("accomadations"), "accommodations"), + (UniCase("compensationg"), "compensating"), + (UniCase("simliarity"), "similarity"), + (UniCase("haemorrage"), "haemorrhage"), + (UniCase("aduiobook"), "audiobook"), + (UniCase("competense"), "competence"), + (UniCase("camapign"), "campaign"), + (UniCase("typcial"), "typical"), + (UniCase("iresistable"), "irresistible"), + (UniCase("lesbains"), "lesbians"), + (UniCase("mistakengly"), "mistakenly"), + (UniCase("jeapardy"), "jeopardy"), + (UniCase("caricuture"), "caricature"), + (UniCase("nuatilus"), "nautilus"), + (UniCase("hindisght"), "hindsight"), + (UniCase("reinforcemnts"), "reinforcements"), + (UniCase("skepticals"), "skeptics"), + (UniCase("brethen"), "brethren"), + (UniCase("durig"), "during"), + (UniCase("infinitey"), "infinity"), + (UniCase("reportes"), "reporters"), + (UniCase("nonsensicle"), "nonsensical"), + (UniCase("intimitating"), "intimidating"), + (UniCase("vikingos"), "vikings"), + (UniCase("fnaatic"), "fanatic"), + (UniCase("monitoreado"), "monitored"), + (UniCase("intergated"), "integrated"), + (UniCase("componenets"), "components"), + (UniCase("aspectos"), "aspects"), + (UniCase("preditermined"), "predetermined"), + (UniCase("dalmation"), "dalmatian"), + (UniCase("outskrits"), "outskirts"), + (UniCase("vulnerabil"), "vulnerable"), + (UniCase("favourates"), "favourites"), + (UniCase("tranlsated"), "translated"), + (UniCase("contructions"), "contractions"), + (UniCase("differencial"), "differential"), + (UniCase("inconsisent"), "inconsistent"), + (UniCase("stornfront"), "stormfront"), + (UniCase("appretince"), "apprentice"), + (UniCase("recievers"), "receivers"), + (UniCase("practicioners"), "practitioners"), + (UniCase("delcared"), "declared"), + (UniCase("magnifient"), "magnificent"), + (UniCase("regulsr"), "regulars"), + (UniCase("insiginifcant"), "insignificant"), + (UniCase("cliantro"), "cilantro"), + (UniCase("qaulify"), "qualify"), + (UniCase("colouring"), "coloring"), + (UniCase("voluntereed"), "volunteered"), + (UniCase("comparatie"), "comparative"), + (UniCase("monagomous"), "monogamous"), + (UniCase("acccused"), "accused"), + (UniCase("accelarating"), "accelerating"), + (UniCase("samruai"), "samurai"), + (UniCase("countert"), "counteract"), + (UniCase("elephans"), "elephants"), + (UniCase("egotastical"), "egotistical"), + (UniCase("arrestes"), "arrests"), + (UniCase("conceptuel"), "conceptual"), + (UniCase("protestare"), "protesters"), + (UniCase("disgruntaled"), "disgruntled"), + (UniCase("vegetarien"), "vegetarian"), + (UniCase("spectacullar"), "spectacularly"), + (UniCase("progresssion"), "progressions"), + (UniCase("caluclation"), "calculation"), + (UniCase("exahusted"), "exhausted"), + (UniCase("subscribar"), "subscriber"), + (UniCase("reigining"), "reigning"), + (UniCase("correlatie"), "correlated"), + (UniCase("documentating"), "documentation"), + (UniCase("philoshopically"), "philosophically"), + (UniCase("syringue"), "syringe"), + (UniCase("procliam"), "proclaim"), + (UniCase("ridiculos"), "ridiculous"), + (UniCase("manipulatie"), "manipulative"), + (UniCase("colorao"), "colorado"), + (UniCase("conversie"), "converse"), + (UniCase("labours"), "labors"), + (UniCase("indulgue"), "indulge"), + (UniCase("ahppen"), "happen"), + (UniCase("stringnet"), "stringent"), + (UniCase("panckaes"), "pancakes"), + (UniCase("resssurecting"), "resurrecting"), + (UniCase("ukrainina"), "ukrainian"), + (UniCase("interesctions"), "intersections"), + (UniCase("passivises"), "passivizes"), + (UniCase("recommandation"), "recommendation"), + (UniCase("absloutes"), "absolutes"), + (UniCase("excrept"), "excerpt"), + (UniCase("recognie"), "recognizes"), + (UniCase("beleiving"), "believing"), + (UniCase("preciesly"), "precisely"), + (UniCase("underratted"), "underrated"), + (UniCase("raidant"), "radiant"), + (UniCase("trollade"), "trolled"), + (UniCase("enthusiams"), "enthusiasm"), + (UniCase("deathcat"), "deathmatch"), + (UniCase("cessationalist"), "sensationalist"), + (UniCase("entreperneur"), "entrepreneurs"), + (UniCase("schoalrship"), "scholarships"), + (UniCase("entretainment"), "entertainment"), + (UniCase("sryinge"), "syringe"), + (UniCase("manouverability"), "maneuverability"), + (UniCase("downvoteros"), "downvoters"), + (UniCase("subsidizng"), "subsidizing"), + (UniCase("restrictifs"), "restricts"), + (UniCase("hinduisum"), "hinduism"), + (UniCase("rabbitts"), "rabbits"), + (UniCase("progresssive"), "progressives"), + (UniCase("administratio"), "administrator"), + (UniCase("permissable"), "permissible"), + (UniCase("lockscren"), "lockscreen"), + (UniCase("subconsciouly"), "subconsciously"), + (UniCase("hypocriticial"), "hypocritical"), + (UniCase("effulence"), "effluence"), + (UniCase("multitaskng"), "multitasking"), + (UniCase("indisious"), "insidious"), + (UniCase("patrionism"), "patriotism"), + (UniCase("championsips"), "championships"), + (UniCase("carnigie-mellon"), "carnegie-mellon"), + (UniCase("islamsits"), "islamists"), + (UniCase("metropolois"), "metropolis"), + (UniCase("invalidante"), "invalidate"), + (UniCase("automotize"), "automotive"), + (UniCase("innovatin"), "innovations"), + (UniCase("amrpits"), "armpits"), + (UniCase("nostalgisch"), "nostalgic"), + (UniCase("simpliy"), "simplify"), + (UniCase("praisse"), "praises"), + (UniCase("contradicion"), "contradiction"), + (UniCase("quantitatve"), "quantitative"), + (UniCase("instuments"), "instruments"), + (UniCase("protastant"), "protestant"), + (UniCase("formatiing"), "formatting"), + (UniCase("descriptons"), "descriptions"), + (UniCase("modernising"), "modernizing"), + (UniCase("archetectural"), "architectural"), + (UniCase("appropirate"), "appropriate"), + (UniCase("ruleboook"), "rulebook"), + (UniCase("wavelegnth"), "wavelength"), + (UniCase("possesssion"), "possessions"), + (UniCase("renegated"), "renegade"), + (UniCase("flasely"), "falsely"), + (UniCase("naferious"), "nefarious"), + (UniCase("kickstartr"), "kickstarter"), + (UniCase("specialistes"), "specialists"), + (UniCase("immigrato"), "immigration"), + (UniCase("hurricanger"), "hurricane"), + (UniCase("delaerships"), "dealerships"), + (UniCase("systematisch"), "systematic"), + (UniCase("therapeutisch"), "therapeutic"), + (UniCase("contianment"), "containment"), + (UniCase("fingertrips"), "fingertips"), + (UniCase("conservitism"), "conservatism"), + (UniCase("submarie"), "submarines"), + (UniCase("comporable"), "comparable"), + (UniCase("memerization"), "memorization"), + (UniCase("peculair"), "peculiar"), + (UniCase("communicted"), "communicated"), + (UniCase("exatled"), "exalted"), + (UniCase("konfidential"), "confidential"), + (UniCase("hypocriet"), "hypocrite"), + (UniCase("nauseos"), "nauseous"), + (UniCase("accomplishs"), "accomplishes"), + (UniCase("externalised"), "externalized"), + (UniCase("agreggate"), "aggregate"), + (UniCase("hystarically"), "hysterically"), + (UniCase("exagguration"), "exaggeration"), + (UniCase("fashionalble"), "fashionable"), + (UniCase("stabilzied"), "stabilized"), + (UniCase("elevatin"), "elevation"), + (UniCase("patholigical"), "pathological"), + (UniCase("niverse"), "inverse"), + (UniCase("compromized"), "compromised"), + (UniCase("interviening"), "interviewing"), + (UniCase("hypocrities"), "hypocrite"), + (UniCase("casues"), "causes"), + (UniCase("scholarstic"), "scholastic"), + (UniCase("memorizacion"), "memorization"), + (UniCase("arpatheid"), "apartheid"), + (UniCase("unexplaned"), "unexplained"), + (UniCase("compilance"), "compliance"), + (UniCase("exectuing"), "executing"), + (UniCase("overreacton"), "overreaction"), + (UniCase("skillsshot"), "skillshots"), + (UniCase("polinator"), "pollinator"), + (UniCase("mechanising"), "mechanizing"), + (UniCase("lionise"), "lionize"), + (UniCase("dialouge"), "dialogue"), + (UniCase("lionising"), "lionizing"), + (UniCase("antibioitcs"), "antibiotic"), + (UniCase("parasties"), "parasites"), + (UniCase("contricted"), "contracted"), + (UniCase("claculations"), "calculations"), + (UniCase("vigoruosly"), "vigorously"), + (UniCase("laguage"), "language"), + (UniCase("demonstraby"), "demonstrably"), + (UniCase("paralel"), "parallel"), + (UniCase("protoganist"), "protagonist"), + (UniCase("inot"), "into"), + (UniCase("prioroties"), "priorities"), + (UniCase("associaiton"), "associations"), + (UniCase("parilamentary"), "parliamentary"), + (UniCase("organizativo"), "organization"), + (UniCase("techmological"), "technological"), + (UniCase("correspondente"), "correspondence"), + (UniCase("searchd"), "searched"), + (UniCase("autononous"), "autonomous"), + (UniCase("outfidel"), "outfield"), + (UniCase("critisizms"), "criticisms"), + (UniCase("soilders"), "soldiers"), + (UniCase("randumness"), "randomness"), + (UniCase("encrpytion"), "encryption"), + (UniCase("pankaces"), "pancakes"), + (UniCase("unfourtunately"), "unfortunately"), + (UniCase("spansih"), "spanish"), + (UniCase("targetted"), "targeted"), + (UniCase("dispartiy"), "disparity"), + (UniCase("kidnappning"), "kidnapping"), + (UniCase("trimuph"), "triumph"), + (UniCase("terretorial"), "territorial"), + (UniCase("sociophatic"), "sociopathic"), + (UniCase("informarla"), "informal"), + (UniCase("marrtyred"), "martyred"), + (UniCase("portugeuse"), "portuguese"), + (UniCase("disproportianate"), "disproportionate"), + (UniCase("sunglassses"), "sunglasses"), + (UniCase("fiedling"), "fielding"), + (UniCase("wavelegnths"), "wavelength"), + (UniCase("symbolisim"), "symbolism"), + (UniCase("quesitoned"), "questioned"), + (UniCase("huminatarian"), "humanitarian"), + (UniCase("inevtiable"), "inevitable"), + (UniCase("enhanceds"), "enhances"), + (UniCase("disatisfaction"), "dissatisfaction"), + (UniCase("miraculaous"), "miraculous"), + (UniCase("ubiquotous"), "ubiquitous"), + (UniCase("relativy"), "relativity"), + (UniCase("intencional"), "intentional"), + (UniCase("compinsated"), "compensated"), + (UniCase("processeurs"), "processes"), + (UniCase("recieving"), "receiving"), + (UniCase("cartride"), "cartridge"), + (UniCase("contaniments"), "containment"), + (UniCase("similiar"), "similar"), + (UniCase("enlightned"), "enlightened"), + (UniCase("symphatetic"), "sympathetic"), + (UniCase("mysitcal"), "mystical"), + (UniCase("desginer"), "designer"), + (UniCase("bureaucrates"), "bureaucrats"), + (UniCase("reminiscint"), "reminiscent"), + (UniCase("equilibium"), "equilibrium"), + (UniCase("incredibe"), "incredible"), + (UniCase("debuffes"), "debuffs"), + (UniCase("nutrientes"), "nutrients"), + (UniCase("coordinatior"), "coordinator"), + (UniCase("preservacion"), "preservation"), + (UniCase("northwet"), "northwest"), + (UniCase("technoligical"), "technological"), + (UniCase("insticnts"), "instincts"), + (UniCase("illsutration"), "illustrations"), + (UniCase("irritatin"), "irritation"), + (UniCase("compenidum"), "compendium"), + (UniCase("belittlling"), "belittling"), + (UniCase("stradegies"), "strategies"), + (UniCase("dissapointted"), "dissapointed"), + (UniCase("lengedaries"), "legendaries"), + (UniCase("intenisty"), "intensity"), + (UniCase("specail"), "special"), + (UniCase("hospitalised"), "hospitalized"), + (UniCase("disticntion"), "distinctions"), + (UniCase("defendes"), "defenders"), + (UniCase("unsibscribed"), "unsubscribed"), + (UniCase("verficiation"), "verification"), + (UniCase("homophonia"), "homophobia"), + (UniCase("universets"), "universes"), + (UniCase("accelertor"), "accelerator"), + (UniCase("defitnely"), "definetly"), + (UniCase("similair"), "similar"), + (UniCase("homogenes"), "homogeneous"), + (UniCase("subsiziding"), "subsidizing"), + (UniCase("completily"), "complexity"), + (UniCase("southernors"), "southerners"), + (UniCase("equiavlent"), "equivalents"), + (UniCase("visualizacion"), "visualization"), + (UniCase("objektives"), "objectives"), + (UniCase("quarantaine"), "quarantine"), + (UniCase("celebritiy"), "celebrity"), + (UniCase("accountents"), "accountants"), + (UniCase("propertly"), "property"), + (UniCase("trinkst"), "trinkets"), + (UniCase("protestina"), "protestant"), + (UniCase("inevidable"), "inevitable"), + (UniCase("legalazing"), "legalizing"), + (UniCase("atlantia"), "atlanta"), + (UniCase("mexicaness"), "mexicans"), + (UniCase("firggin"), "friggin"), + (UniCase("alterantive"), "alternative"), + (UniCase("inplications"), "implications"), + (UniCase("texturers"), "textures"), + (UniCase("detremental"), "detrimental"), + (UniCase("intelelctual"), "intellectuals"), + (UniCase("somaila"), "somalia"), + (UniCase("gnaking"), "ganking"), + (UniCase("squirtel"), "squirtle"), + (UniCase("remotley"), "remotely"), + (UniCase("juvenlie"), "juvenile"), + (UniCase("yoghourt"), "yogurt"), + (UniCase("internetes"), "internets"), + (UniCase("fesitve"), "festive"), + (UniCase("pornograpgy"), "pornography"), + (UniCase("conpsiracy"), "conspiracy"), + (UniCase("preconveived"), "preconceived"), + (UniCase("malasiya"), "malaysia"), + (UniCase("demograpic"), "demographic"), + (UniCase("adequatedly"), "adequately"), + (UniCase("definiteyl"), "definitly"), + (UniCase("foreignese"), "foreigners"), + (UniCase("goveremnt"), "goverment"), + (UniCase("dictionnary"), "dictionary"), + (UniCase("bilbical"), "biblical"), + (UniCase("stereotipe"), "stereotype"), + (UniCase("conpassionate"), "compassionate"), + (UniCase("puinsher"), "punisher"), + (UniCase("constructos"), "constructs"), + (UniCase("expection"), "exception"), + (UniCase("alcholic"), "alcoholic"), + (UniCase("intellectaul"), "intellectuals"), + (UniCase("somethingest"), "somethings"), + (UniCase("realising"), "realizing"), + (UniCase("kurdisch"), "kurdish"), + (UniCase("referendom"), "referendum"), + (UniCase("consumibles"), "consumables"), + (UniCase("tendacy"), "tendency"), + (UniCase("imrpoves"), "improves"), + (UniCase("analagous"), "analogous"), + (UniCase("prostituto"), "prostitution"), + (UniCase("licencie"), "licence"), + (UniCase("saftey"), "safety"), + (UniCase("laboreres"), "laborers"), + (UniCase("provinvial"), "provincial"), + (UniCase("interfeers"), "interferes"), + (UniCase("intolarant"), "intolerant"), + (UniCase("furhtermore"), "furthermore"), + (UniCase("revolutioners"), "revolutions"), + (UniCase("motivatin"), "motivations"), + (UniCase("definateley"), "definately"), + (UniCase("analysit"), "analyst"), + (UniCase("solitudine"), "solitude"), + (UniCase("perpindicular"), "perpendicular"), + (UniCase("mathematicks"), "mathematics"), + (UniCase("equalisation"), "equalization"), + (UniCase("prohpet"), "prophet"), + (UniCase("mysterioulsy"), "mysteriously"), + (UniCase("prostitudes"), "prostitutes"), + (UniCase("enourmously"), "enormously"), + (UniCase("seventeeen"), "seventeen"), + (UniCase("shanghia"), "shanghai"), + (UniCase("microstansactions"), "microtransactions"), + (UniCase("portrayels"), "portrays"), + (UniCase("livestrems"), "livestream"), + (UniCase("makrsman"), "marksman"), + (UniCase("raputre"), "rapture"), + (UniCase("humoured"), "humored"), + (UniCase("synthesesia"), "synthesis"), + (UniCase("professinal"), "professional"), + (UniCase("marshalling"), "marshaling"), + (UniCase("optimizied"), "optimize"), + (UniCase("presedency"), "presidency"), + (UniCase("resmeble"), "resemble"), + (UniCase("degradacion"), "degradation"), + (UniCase("collatoral"), "collateral"), + (UniCase("weas"), "was"), + (UniCase("exhasut"), "exhaust"), + (UniCase("accomondation"), "accommodation"), + (UniCase("sustainabiltiy"), "sustainability"), + (UniCase("dispensaire"), "dispensaries"), + (UniCase("contentants"), "contestants"), + (UniCase("complciations"), "complication"), + (UniCase("objectificiation"), "objectification"), + (UniCase("gaolbreaks"), "jailbreaks"), + (UniCase("unilatreal"), "unilateral"), + (UniCase("handeldy"), "handedly"), + (UniCase("comprimises"), "compromises"), + (UniCase("sightstine"), "sightstone"), + (UniCase("proffesion"), "profession"), + (UniCase("signins"), "signings"), + (UniCase("concides"), "concise"), + (UniCase("scrollade"), "scrolled"), + (UniCase("keysenian"), "keynesian"), + (UniCase("collisin"), "collisions"), + (UniCase("selectivley"), "selectively"), + (UniCase("emphacizing"), "emphasizing"), + (UniCase("deplorabel"), "deplorable"), + (UniCase("bilzzard"), "blizzard"), + (UniCase("characteristsics"), "characteristic"), + (UniCase("surrundering"), "surrendering"), + (UniCase("standardise"), "standardize"), + (UniCase("competiors"), "competitors"), + (UniCase("humiliatin"), "humiliation"), + (UniCase("restrainig"), "restraining"), + (UniCase("orgainse"), "organise"), + (UniCase("transperent"), "transparent"), + (UniCase("invesitgation"), "investigation"), + (UniCase("renaiisance"), "renaissance"), + (UniCase("refrers"), "refers"), + (UniCase("montioring"), "monitoring"), + (UniCase("surviellance"), "surveillance"), + (UniCase("beseige"), "besiege"), + (UniCase("behngazi"), "benghazi"), + (UniCase("espoinage"), "espionage"), + (UniCase("massachussets"), "massachusetts"), + (UniCase("observeras"), "observers"), + (UniCase("envrionmental"), "environmental"), + (UniCase("checkpiont"), "checkpoint"), + (UniCase("feodras"), "fedoras"), + (UniCase("scepture"), "scepter"), + (UniCase("tortillita"), "tortilla"), + (UniCase("amendmant"), "amendment"), + (UniCase("anomolous"), "anomalous"), + (UniCase("ingrediens"), "ingredients"), + (UniCase("crowbahr"), "crowbar"), + (UniCase("confererate"), "confederate"), + (UniCase("preinitalizing"), "preinitializing"), + (UniCase("asteriks"), "asterisk"), + (UniCase("scholerships"), "scholarships"), + (UniCase("provacative"), "provocative"), + (UniCase("manipulacion"), "manipulation"), + (UniCase("cahched"), "cached"), + (UniCase("orbtial"), "orbital"), + (UniCase("organiserad"), "organised"), + (UniCase("veyr"), "very"), + (UniCase("disconnnect"), "disconnect"), + (UniCase("straings"), "strains"), + (UniCase("contess"), "contests"), + (UniCase("desperatelly"), "desperately"), + (UniCase("abosrbs"), "absorbs"), + (UniCase("inspriational"), "inspirational"), + (UniCase("refelcting"), "reflecting"), + (UniCase("instrumentos"), "instruments"), + (UniCase("telegrapgh"), "telegraph"), + (UniCase("psychiatist"), "psychiatrist"), + (UniCase("tyrannia"), "tyrannical"), + (UniCase("favourits"), "favourites"), + (UniCase("investegated"), "investigated"), + (UniCase("cambrdige"), "cambridge"), + (UniCase("forcibley"), "forcibly"), + (UniCase("summoenrs"), "summoners"), + (UniCase("exclusivty"), "exclusivity"), + (UniCase("foresseable"), "foreseeable"), + (UniCase("awkwardy"), "awkwardly"), + (UniCase("misintrepreting"), "misinterpreting"), + (UniCase("amphetmaines"), "amphetamines"), + (UniCase("dypshoria"), "dysphoria"), + (UniCase("forearmes"), "forearms"), + (UniCase("segegrated"), "segregated"), + (UniCase("higway"), "highway"), + (UniCase("compability"), "compatibility"), + (UniCase("minipulation"), "manipulation"), + (UniCase("sexaully"), "sexually"), + (UniCase("overules"), "overuse"), + (UniCase("prototipes"), "prototypes"), + (UniCase("antagonise"), "antagonize"), + (UniCase("linguisticas"), "linguistics"), + (UniCase("preservered"), "preserved"), + (UniCase("transending"), "transcending"), + (UniCase("preventation"), "presentation"), + (UniCase("recordarte"), "recorder"), + (UniCase("spehres"), "spheres"), + (UniCase("existentiel"), "existential"), + (UniCase("ejaculatin"), "ejaculation"), + (UniCase("bastane"), "bastante"), + (UniCase("prerequesit"), "prerequisite"), + (UniCase("notificaton"), "notification"), + (UniCase("libary"), "library"), + (UniCase("popularising"), "popularizing"), + (UniCase("rationaly"), "rationally"), + (UniCase("asexaul"), "asexual"), + (UniCase("veritcally"), "vertically"), + (UniCase("collony"), "colony"), + (UniCase("patienty"), "patiently"), + (UniCase("predominanty"), "predominantly"), + (UniCase("montypic"), "monotypic"), + (UniCase("overwtach"), "overwatch"), + (UniCase("articule"), "articulate"), + (UniCase("singulator"), "singular"), + (UniCase("disproprotionately"), "disproportionately"), + (UniCase("mositurizer"), "moisturizer"), + (UniCase("dicitonary"), "dictionary"), + (UniCase("credibilty"), "credibility"), + (UniCase("placemenet"), "placements"), + (UniCase("bigining"), "beginning"), + (UniCase("annoymous"), "anonymous"), + (UniCase("hamsphire"), "hampshire"), + (UniCase("louisvillle"), "louisville"), + (UniCase("sterilisations"), "sterilizations"), + (UniCase("mathameticians"), "mathematicians"), + (UniCase("coprorate"), "corporate"), + (UniCase("bengazhi"), "benghazi"), + (UniCase("aledges"), "alleges"), + (UniCase("quarterblack"), "quarterback"), + (UniCase("underpining"), "undermining"), + (UniCase("goalkeaper"), "goalkeeper"), + (UniCase("advertisted"), "advertised"), + (UniCase("altanta"), "atlanta"), + (UniCase("preposturous"), "preposterous"), + (UniCase("bakcers"), "backers"), + (UniCase("responisve"), "responsive"), + (UniCase("commentaren"), "commenter"), + (UniCase("continuu"), "continuous"), + (UniCase("synthesise"), "synthesize"), + (UniCase("porjectiles"), "projectiles"), + (UniCase("patriarhal"), "patriarchal"), + (UniCase("sepculating"), "speculating"), + (UniCase("vaieties"), "varieties"), + (UniCase("dinsoaurs"), "dinosaurs"), + (UniCase("monolight"), "moonlight"), + (UniCase("definitiley"), "definitively"), + (UniCase("monopolisation"), "monopolization"), + (UniCase("severeid"), "severed"), + (UniCase("questionning"), "questioning"), + (UniCase("substitue"), "substitute"), + (UniCase("incomprehencible"), "incomprehensible"), + (UniCase("stichting"), "stitching"), + (UniCase("onmipotent"), "omnipotent"), + (UniCase("parahprase"), "paraphrase"), + (UniCase("satisfactority"), "satisfactorily"), + (UniCase("embeded"), "embedded"), + (UniCase("horizontes"), "horizons"), + (UniCase("obdisian"), "obsidian"), + (UniCase("produccion"), "production"), + (UniCase("highlane"), "highlander"), + (UniCase("alterarion"), "alteration"), + (UniCase("approxiately"), "approximately"), + (UniCase("overhwelmed"), "overwhelmed"), + (UniCase("holdins"), "holdings"), + (UniCase("subscribtion"), "subscription"), + (UniCase("conneciton"), "connection"), + (UniCase("compustion"), "compulsion"), + (UniCase("authenticaion"), "authentication"), + (UniCase("separatron"), "separation"), + (UniCase("columbina"), "columbia"), + (UniCase("resgined"), "resigned"), + (UniCase("reprhase"), "rephrase"), + (UniCase("connexions"), "connections"), + (UniCase("calulate"), "calculate"), + (UniCase("californai"), "californian"), + (UniCase("surrouns"), "surrounds"), + (UniCase("neckbeared"), "neckbeard"), + (UniCase("inquizition"), "inquisition"), + (UniCase("liberalsim"), "liberalism"), + (UniCase("expolsive"), "explosive"), + (UniCase("criticus"), "critics"), + (UniCase("vegetariens"), "vegetarians"), + (UniCase("auidobooks"), "audiobooks"), + (UniCase("stabilizied"), "stabilize"), + (UniCase("frostig"), "frosting"), + (UniCase("pancakers"), "pancakes"), + (UniCase("interneting"), "interesting"), + (UniCase("unfriently"), "unfriendly"), + (UniCase("favourie"), "favourites"), + (UniCase("permenant"), "permanent"), + (UniCase("participare"), "participate"), + (UniCase("accpeted"), "accepted"), + (UniCase("stregnthen"), "strengthen"), + (UniCase("sophisitcated"), "sophisticated"), + (UniCase("unchangable"), "unchangeable"), + (UniCase("tightenting"), "tightening"), + (UniCase("misogynt"), "misogynist"), + (UniCase("unsubscrube"), "unsubscribe"), + (UniCase("unprecidented"), "unprecedented"), + (UniCase("presistence"), "persistence"), + (UniCase("preample"), "preamble"), + (UniCase("privatised"), "privatized"), + (UniCase("fatigure"), "fatigue"), + (UniCase("unbeleivably"), "unbelievably"), + (UniCase("mosquitero"), "mosquito"), + (UniCase("dramatise"), "dramatize"), + (UniCase("catterpilars"), "caterpillars"), + (UniCase("italias"), "italians"), + (UniCase("superviso"), "supervision"), + (UniCase("corperations"), "corporations"), + (UniCase("stereotypcial"), "stereotypical"), + (UniCase("interchangable"), "interchangeable"), + (UniCase("disspaointed"), "dissapointed"), + (UniCase("deligthful"), "delightful"), + (UniCase("paradse"), "parades"), + (UniCase("prelimenary"), "preliminary"), + (UniCase("adminstered"), "administered"), + (UniCase("purpendicular"), "perpendicular"), + (UniCase("systimatically"), "systematically"), + (UniCase("algorythms"), "algorithms"), + (UniCase("stormde"), "stormed"), + (UniCase("corralated"), "correlated"), + (UniCase("equilibirum"), "equilibrium"), + (UniCase("vitaminas"), "vitamins"), + (UniCase("sovereignety"), "sovereignty"), + (UniCase("remmeber"), "remember"), + (UniCase("hiptser"), "hipster"), + (UniCase("accidentlay"), "accidently"), + (UniCase("catholacism"), "catholicism"), + (UniCase("rebuidling"), "rebuilding"), + (UniCase("subtletly"), "subtlety"), + (UniCase("inkonsistent"), "inconsistent"), + (UniCase("prosperos"), "prosperous"), + (UniCase("expierences"), "experiences"), + (UniCase("unanymous"), "unanimous"), + (UniCase("succsesfull"), "successfully"), + (UniCase("anaesthetist"), "anesthetist"), + (UniCase("cycolps"), "cyclops"), + (UniCase("justificativos"), "justifications"), + (UniCase("appropriatley"), "appropriately"), + (UniCase("oblitirated"), "obliterated"), + (UniCase("nationalistiske"), "nationalists"), + (UniCase("colonised"), "colonized"), + (UniCase("colloqueal"), "colloquial"), + (UniCase("asisstants"), "assistants"), + (UniCase("dispencing"), "dispensing"), + (UniCase("deiners"), "deniers"), + (UniCase("terriblely"), "terribly"), + (UniCase("coordenates"), "coordinates"), + (UniCase("overwath"), "overwatch"), + (UniCase("mucnhies"), "munchies"), + (UniCase("intervalos"), "intervals"), + (UniCase("incorect"), "incorrect"), + (UniCase("proces"), "process"), + (UniCase("monitores"), "monitors"), + (UniCase("submittion"), "submitting"), + (UniCase("transcirpt"), "transcripts"), + (UniCase("sepcifications"), "specification"), + (UniCase("quarantenni"), "quarantine"), + (UniCase("condmening"), "condemning"), + (UniCase("exepmtion"), "exemption"), + (UniCase("stakeboard"), "skateboard"), + (UniCase("experieced"), "experienced"), + (UniCase("detectes"), "detects"), + (UniCase("monestary"), "monastery"), + (UniCase("demsond"), "desmond"), + (UniCase("implemet"), "implements"), + (UniCase("sandwhich"), "sandwich"), + (UniCase("canalises"), "canalizes"), + (UniCase("ingestigator"), "investigator"), + (UniCase("propper"), "proper"), + (UniCase("constituinte"), "constituents"), + (UniCase("critising"), "criticising"), + (UniCase("challengs"), "challenges"), + (UniCase("assistsnt"), "assistants"), + (UniCase("adavanced"), "advanced"), + (UniCase("misouri"), "missouri"), + (UniCase("deadlit"), "deadlift"), + (UniCase("disadvandages"), "disadvantaged"), + (UniCase("authorising"), "authorizing"), + (UniCase("proprotions"), "proportions"), + (UniCase("gutiarist"), "guitarist"), + (UniCase("dragones"), "dragons"), + (UniCase("depolyment"), "deployment"), + (UniCase("younget"), "youngest"), + (UniCase("perjorative"), "pejorative"), + (UniCase("animatie"), "animate"), + (UniCase("shovelled"), "shoveled"), + (UniCase("thankyooou"), "thankyou"), + (UniCase("reevalutate"), "reevaluate"), + (UniCase("kilomteres"), "kilometers"), + (UniCase("illegitimite"), "illegitimate"), + (UniCase("stratled"), "startled"), + (UniCase("depositas"), "deposits"), + (UniCase("determinging"), "determining"), + (UniCase("manupilated"), "manipulated"), + (UniCase("automatice"), "automate"), + (UniCase("recommennd"), "recommends"), + (UniCase("nacionalistic"), "nationalistic"), + (UniCase("backgrouds"), "backgrounds"), + (UniCase("depelted"), "depleted"), + (UniCase("underestime"), "underestimate"), + (UniCase("neighbourhoods"), "neighborhoods"), + (UniCase("intaxication"), "intoxication"), + (UniCase("behaviour"), "behavior"), + (UniCase("countepart"), "counteract"), + (UniCase("upgarding"), "upgrading"), + (UniCase("bounites"), "bounties"), + (UniCase("heartbrakes"), "heartbreak"), + (UniCase("undoubtedbly"), "undoubtedly"), + (UniCase("uise"), "use"), + (UniCase("prospettive"), "prospective"), + (UniCase("restarants"), "restaurants"), + (UniCase("persuassion"), "persuasion"), + (UniCase("subtetly"), "subtlety"), + (UniCase("contengency"), "contingency"), + (UniCase("appetitite"), "appetite"), + (UniCase("peaple"), "people"), + (UniCase("prostituer"), "prostitute"), + (UniCase("complaince"), "compliance"), + (UniCase("surveillence"), "surveillance"), + (UniCase("versitale"), "versatile"), + (UniCase("pinetrest"), "pinterest"), + (UniCase("mathmaticians"), "mathematicians"), + (UniCase("visibillity"), "visibility"), + (UniCase("intendes"), "intends"), + (UniCase("darkets"), "darkest"), + (UniCase("mozzorella"), "mozzarella"), + (UniCase("premius"), "premiums"), + (UniCase("militiants"), "militias"), + (UniCase("destabilisation"), "destabilization"), + (UniCase("butterfiles"), "butterflies"), + (UniCase("rised"), "raised"), + (UniCase("inclenation"), "inclination"), + (UniCase("metldown"), "meltdown"), + (UniCase("bradcast"), "broadcast"), + (UniCase("buildes"), "builders"), + (UniCase("transformacion"), "transformation"), + (UniCase("speciallized"), "specialised"), + (UniCase("borderlads"), "borderlands"), + (UniCase("enthicities"), "ethnicities"), + (UniCase("accelerare"), "accelerate"), + (UniCase("napoloen"), "napoleon"), + (UniCase("continute"), "continue"), + (UniCase("sculputre"), "sculpture"), + (UniCase("principales"), "principles"), + (UniCase("homeopaty"), "homeopathy"), + (UniCase("converzation"), "conservation"), + (UniCase("mushrom"), "mushroom"), + (UniCase("transformaton"), "transformation"), + (UniCase("nautlius"), "nautilus"), + (UniCase("vitenam"), "vietnam"), + (UniCase("underpowerd"), "underpowered"), + (UniCase("strengthining"), "strengthening"), + (UniCase("differantiate"), "differentiate"), + (UniCase("unknwon"), "unknown"), + (UniCase("clausens"), "clauses"), + (UniCase("bandwith"), "bandwidth"), + (UniCase("paralisys"), "paralysis"), + (UniCase("inquisitr"), "inquisitor"), + (UniCase("posessing"), "possessing"), + (UniCase("deflaction"), "deflection"), + (UniCase("deahtly"), "deathly"), + (UniCase("strengsten"), "strengthen"), + (UniCase("bycicles"), "bicycles"), + (UniCase("libretarianism"), "libertarianism"), + (UniCase("noteboook"), "notebook"), + (UniCase("formerlly"), "formerly"), + (UniCase("comparitive"), "comparative"), + (UniCase("januaray"), "january"), + (UniCase("almigthy"), "almighty"), + ]), + };