Created
June 12, 2026 00:22
-
-
Save paigeadelethompson/58bd3bc6978449d4440bfa3da358ebf7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Group words by similarity - finds all words containing each other as substrings. | |
| Usage: python group_words.py [min_length] | |
| Example: | |
| python group_words.py # min_length=2 (default) | |
| python group_words.py 5 # only group words with length >= 5 | |
| """ | |
| import textwrap | |
| import xml.etree.ElementTree as ET | |
| from collections import Counter, defaultdict | |
| from pathlib import Path | |
| import sys | |
| def get_prefixes(words: list[str], n: int = 2) -> Counter: | |
| """Get frequency counter for n-letter prefixes of words.""" | |
| prefixes = Counter() | |
| for word in words: | |
| if len(word) >= n: | |
| prefixes[word[:n]] += 1 | |
| return prefixes | |
| def extract_words_from_xml(file_path: str) -> list[str]: | |
| """Extract all words from a single XML file.""" | |
| tree = ET.parse(file_path) | |
| root = tree.getroot() | |
| return [word.text for word in root.findall('.//word')] | |
| def load_all_words() -> Counter: | |
| """Load all words from XML files and return frequency counter.""" | |
| xml_files = sorted(Path('.').glob('*.xml')) | |
| all_words: list[str] = [] | |
| for xml_file in xml_files: | |
| words = extract_words_from_xml(str(xml_file)) | |
| all_words.extend(words) | |
| return Counter(all_words) | |
| def build_groups(word_freq: Counter, min_length: int) -> dict[str, list[tuple[str, int]]]: | |
| """ | |
| Build groups where each group is centered on a word that appears | |
| as a substring in other words. | |
| Returns dict mapping: seed_word -> [(containing_word, count), ...] | |
| """ | |
| # Sort words by length descending (longer words first for pattern detection) | |
| all_words = sorted(word_freq.items(), key=lambda x: (-len(x[0]), -x[1], x[0])) | |
| groups: dict[str, list[tuple[str, int]]] = defaultdict(list) | |
| # For each word, find all other words that contain it | |
| for seed_word, seed_count in all_words: | |
| if len(seed_word) < min_length: | |
| continue | |
| # Check if this word appears as substring in any other word | |
| for other_word, other_count in all_words: | |
| if seed_word != other_word and seed_word in other_word: | |
| groups[seed_word].append((other_word, other_count)) | |
| return groups | |
| def main(): | |
| min_length = int(sys.argv[1]) if len(sys.argv) > 1 else 3 | |
| word_freq = load_all_words() | |
| groups = build_groups(word_freq, min_length) | |
| # Sort groups alphabetically by seed word | |
| sorted_group_keys = sorted(groups.keys()) | |
| print(f"Word groups (min length: {min_length})") | |
| print("=" * 60) | |
| for i, seed_word in enumerate(sorted_group_keys): | |
| if i > 0: | |
| print() | |
| seed_count = word_freq[seed_word] | |
| containing_words = sorted(groups[seed_word], key=lambda x: (-x[1], x[0])) | |
| # Calculate length stats for containing words (excluding seed) | |
| containing_lengths = [len(w) for w, _ in containing_words] | |
| min_containing = min(containing_lengths) if containing_lengths else 0 | |
| max_containing = max(containing_lengths) if containing_lengths else 0 | |
| avg_containing = sum(containing_lengths) / len(containing_lengths) if containing_lengths else 0 | |
| # Header with seed word and its count | |
| contains_items = [f"{w}({c})" for w, c in containing_words] | |
| total_items = len(containing_words) + 1 # +1 for the seed itself | |
| # Wrap contains line to 79 chars, indenting continuation lines | |
| prefix = " contains: " | |
| contains_full = ", ".join(contains_items) | |
| wrapped_contains = textwrap.wrap( | |
| contains_full, | |
| width=79, | |
| initial_indent=prefix, | |
| subsequent_indent=" " | |
| ) | |
| print(f"{seed_word}({seed_count}): (word length: {len(seed_word)} / group items: {total_items - 1})") | |
| print(f" length: min={min_containing}, max={max_containing}, avg={avg_containing:.1f}") | |
| # Prefix frequency for containing words | |
| containing_words_only = [w for w, _ in containing_words] | |
| prefix_freq = get_prefixes(containing_words_only) | |
| if prefix_freq: | |
| most_common = prefix_freq.most_common(5) | |
| prefix_str = ", ".join(f"{p}({c})" for p, c in most_common) | |
| print(f" top prefixes: {prefix_str}") | |
| for line in wrapped_contains: | |
| print(line) | |
| if __name__ == "__main__": | |
| main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Word groups (min length: 3) | |
| ============================================================ | |
| adam(2): (word length: 4 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: da(1), pa(1) | |
| contains: dadam(1), paradam(1) | |
| adar(1): (word length: 4 / group items: 4) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: ch(1), ok(1), ot(1), pa(1) | |
| contains: chpadar(1), okadar(1), otadar(1), padar(1) | |
| ady(1): (word length: 3 / group items: 17) | |
| length: min=4, max=8, avg=5.9 | |
| top prefixes: ch(4), da(2), ok(2), oe(1), of(1) | |
| contains: dady(5), okady(2), chady(1), cheady(1), chedady(1), chpady(1), | |
| dasady(1), oeeady(1), ofchdady(1), okairady(1), olkady(1), | |
| ootady(1), oralady(1), otdady(1), qokady(1), rady(1), ykady(1) | |
| aekeeey(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: qo(1) | |
| contains: qokaekeeey(1) | |
| aifhhy(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okaifhhy(1) | |
| aifhy(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okaifhy(1) | |
| aii(1): (word length: 3 / group items: 650) | |
| length: min=4, max=15, avg=7.8 | |
| top prefixes: ch(79), qo(57), da(38), sh(32), ai(31) | |
| contains: daiin(864), aiin(470), qokaiin(262), okaiin(212), otaiin(154), | |
| saiin(144), qotaiin(79), raiin(75), kaiin(65), odaiin(61), | |
| olaiin(52), lkaiin(49), chaiin(45), ykaiin(45), chodaiin(44), | |
| ytaiin(43), qodaiin(42), taiin(42), aiiin(41), oraiin(38), | |
| chedaiin(32), olkaiin(31), oaiin(26), aiir(23), daiir(23), | |
| qoaiin(23), shodaiin(23), ydaiin(21), shaiin(20), chkaiin(18), | |
| chokaiin(17), daiiin(17), chdaiin(16), shedaiin(15), cthaiin(13), | |
| laiin(13), opaiin(13), cheodaiin(11), araiin(10), chotaiin(9), | |
| oldaiin(9), sheaiin(9), todaiin(9), chekaiin(8), osaiin(8), | |
| oteodaiin(8), paiin(8), polaiin(8), choaiin(7), cphaiin(7), | |
| daiidy(7), soraiin(7), ofaiin(6), okaiir(6), qopaiin(6), | |
| raraiin(6), saiir(6), yaiin(6), alkaiin(5), choraiin(5), | |
| daiim(5), daiis(5), dchaiin(5), otodaiin(5), pchodaiin(5), | |
| podaiin(5), sheodaiin(5), shosaiin(5), aiiny(4), alaiin(4), | |
| cheedaiin(4), cholaiin(4), cholkaiin(4), chosaiin(4), chtaiin(4), | |
| oaiir(4), odaiiin(4), okaiiin(4), opchedaiin(4), oraiiin(4), | |
| otaiir(4), pchedaiin(4), saraiin(4), shkaiin(4), shoaiin(4), | |
| soaiin(4), ysaiin(4), aiim(3), aiis(3), aldaiin(3), chckhaiin(3), | |
| cheaiin(3), chetaiin(3), ckhaiin(3), daiindy(3), dalaiin(3), | |
| daldaiin(3), doaiin(3), dykaiin(3), kaiiin(3), kchaiin(3), | |
| koaiin(3), kodaiin(3), ldaiin(3), lodaiin(3), oekaiin(3), | |
| okedaiin(3), olaiir(3), opdaiin(3), opydaiin(3), otalaiin(3), | |
| otedaiin(3), pchdaiin(3), pdaiin(3), poraiin(3), qoedaiin(3), | |
| qokaiir(3), qokedaiin(3), qolaiin(3), qotedaiin(3), rodaiin(3), | |
| shdaiin(3), shokaiin(3), skaiin(3), sodaiin(3), solkaiin(3), | |
| tchodaiin(3), tedaiin(3), ypaiin(3), ytodaiin(3), aiidy(2), | |
| alaiiin(2), chedaiiin(2), cheeaiin(2), cheekaiin(2), cheoaiin(2), | |
| cheokaiin(2), chokchaiin(2), daiiral(2), daraiin(2), | |
| dchodaiin(2), doldaiin(2), epaiin(2), fchodaiin(2), | |
| kcheodaiin(2), keodaiin(2), kokaiin(2), koraiin(2), laiiin(2), | |
| lkaiir(2), lolkaiin(2), lsaiin(2), odaiir(2), oeedaiin(2), | |
| okalaiin(2), okaraiin(2), okchaiin(2), okeaiin(2), okeeodaiin(2), | |
| okeodaiin(2), okoaiin(2), okodaiin(2), okolaiin(2), okoraiin(2), | |
| olchdaiin(2), olkedaiin(2), olsaiin(2), oltaiin(2), opalkaiin(2), | |
| oporaiin(2), ordaiin(2), otchaiin(2), oteaiin(2), otoaiin(2), | |
| paiir(2), podaiir(2), pshodaiin(2), pydaiin(2), qaiin(2), | |
| qekaiin(2), qodaiiin(2), qoeedaiin(2), qokaiiin(2), qokchaiin(2), | |
| qokeeaiin(2), qolkaiin(2), qosaiin(2), qotaiiin(2), qotchaiin(2), | |
| qotcheaiin(2), scheaiin(2), shekaiin(2), sheokaiin(2), | |
| shotaiin(2), solaiin(2), taraiin(2), tchdaiin(2), teeodaiin(2), | |
| teodaiin(2), toaiin(2), yaiir(2), ychedaiin(2), yfolaiin(2), | |
| ykaiir(2), ykoaiin(2), ykykaiin(2), ylkaiin(2), aiichy(1), | |
| aiicthy(1), aiidal(1), aiiikhedy(1), aiiiky(1), aiiinro(1), | |
| aiikam(1), aiil(1), aiildy(1), aiily(1), aiinal(1), aiinod(1), | |
| aiinog(1), aiioly(1), aiip(1), aiiral(1), aiiraly(1), | |
| aiirchar(1), aiirody(1), aiirol(1), aiiry(1), aiisaim(1), | |
| aiisockhy(1), aiisod(1), akaiiky(1), akaiin(1), arakaiin(1), | |
| ararchodaiin(1), ataiin(1), cfhaiin(1), cfhoaiin(1), cfhyaiin(1), | |
| chadaiin(1), chaiiin(1), chaiind(1), chaiir(1), chalaiin(1), | |
| charaiin(1), chataiin(1), chckaiin(1), chcpaiin(1), chcthaiin(1), | |
| chdaiirsainy(1), chdodaiin(1), chdolaiin(1), chdypdaiin(1), | |
| chearaiin(1), chechdaiin(1), cheedalaiin(1), cheeedaiin(1), | |
| cheeotaiin(1), cheepaiin(1), chefaiin(1), chekaiiin(1), | |
| cheodaiiin(1), cheodaiir(1), cheodoiidaiin(1), cheokaiim(1), | |
| cheolaiin(1), cheolchdaiin(1), cheoltchedaiin(1), cheopaiin(1), | |
| cheosaiin(1), cheotaiin(1), cheotdaiin(1), chepaiin(1), | |
| chetchaiin(1), cheteeeosaiin(1), cheykaiin(1), chfaiin(1), | |
| chforaiin(1), chkeaiin(1), chlaiiin(1), chldaiin(1), | |
| chodaiindy(1), chokchodaiin(1), chokoaiin(1), cholaiim(1), | |
| cholchaiin(1), choldaiin(1), choltaiin(1), chpaiikey(1), | |
| chpaiin(1), chtaiir(1), chtodaiin(1), chykaiin(1), ckaiin(1), | |
| ckooaiin(1), cpheeaiin(1), cpheodaiin(1), cphesaiin(1), | |
| cphoaiin(1), cphodaiils(1), cpholkaiin(1), cthodaiin(1), | |
| cthodaiis(1), cthyaiin(1), daiial(1), daiidal(1), daiiidy(1), | |
| daiiils(1), daiiine(1), daiiiny(1), daiiiolkaiin(1), | |
| daiiirchy(1), daiiithy(1), daiil(1), daiild(1), daiildy(1), | |
| daiinls(1), daiino(1), daiinol(1), daiiny(1), daiioam(1), | |
| daiiody(1), daiiol(1), daiirol(1), daiiry(1), daiity(1), | |
| daiiy(1), daraiiin(1), daraiinm(1), darordaiin(1), dasaiin(1), | |
| dcheaiin(1), dchedaiin(1), dcheodaiin(1), dchsaiin(1), deaiin(1), | |
| deeaiir(1), dodaiin(1), dolaiin(1), doleodaiin(1), doraiin(1), | |
| dtoaiin(1), dyaiin(1), eeeodaiin(1), eeesaiin(1), eeodaiin(1), | |
| ekaiin(1), eosaiin(1), etaiin(1), etodaiin(1), faiir(1), | |
| faiiral(1), faiis(1), fchedypaiin(1), fchosaiin(1), fodaiin(1), | |
| folaiin(1), foldaiin(1), gaiin(1), haiin(1), kaiiidal(1), | |
| kaiim(1), kaiis(1), kaiishdy(1), kaldaiin(1), kchdaiin(1), | |
| kchedaiin(1), kchochaiin(1), kedaiiin(1), keeaiin(1), | |
| keeodaiin(1), kshaiin(1), kshodaiin(1), kshoraiin(1), lchaiin(1), | |
| lchealaiin(1), lcholkaiin(1), ldaiiin(1), leedaiin(1), | |
| lkaiiin(1), lkeodaiin(1), llaiiry(1), loaiin(1), lokaiin(1), | |
| lolsaiiin(1), loraiin(1), losaiin(1), lotedaiin(1), lpaiin(1), | |
| lraiin(1), lshaiir(1), lshdaiin(1), lsoraiin(1), ltaiin(1), | |
| oaiil(1), ochaiin(1), ocheodaiin(1), ochoaiin(1), ocphoraiin(1), | |
| odaiiily(1), odaiil(1), odaiim(1), odchaiin(1), odeaiin(1), | |
| odeedaiin(1), oeaiin(1), oedaiin(1), oeeaiin(1), oeeeodaiin(1), | |
| oeesaiin(1), ofaiino(1), ofaiis(1), ofalaiin(1), ofchedaiin(1), | |
| ofchedaiis(1), okadaiin(1), okaiifchody(1), okaiikhal(1), | |
| okaiis(1), okcharaiin(1), okchedaiin(1), okeeaiin(1), | |
| okeedaiin(1), okeeeosaiin(1), okeeoraiin(1), okeoaiin(1), | |
| okeolaiin(1), okinaiir(1), okolraiin(1), okraiin(1), okytaiin(1), | |
| olaiiin(1), olaiiny(1), olaiior(1), olalaiin(1), olchedaiin(1), | |
| olfaiin(1), olkaiir(1), olkalaiin(1), oloaiin(1), oloraiin(1), | |
| olraiin(1), opaiim(1), opaiinar(1), opaiir(1), opaiiral(1), | |
| opaiis(1), opaldaiin(1), opchaiin(1), opcheaiin(1), | |
| opchekaiin(1), opcholalaiin(1), opodaiin(1), opolaiin(1), | |
| opsheolaiin(1), opyaiin(1), oqaiin(1), oqotaiin(1), oraiino(1), | |
| oraiiny(1), orchaiin(1), osaiiin(1), osaiisal(1), oschaiin(1), | |
| oshaiin(1), osheokaiin(1), oshsodaiin(1), otaiiin(1), | |
| otaiikam(1), otaiilody(1), otaraiin(1), otcheedaiin(1), | |
| otcheodaiin(1), otcholcheaiin(1), oteeaiin(1), oteeodaiin(1), | |
| oteosaiin(1), otlaiin(1), otolaiin(1), otolaiino(1), | |
| otoloaiin(1), otolopaiin(1), otoraiin(1), otosaiin(1), | |
| otshaiin(1), otshsaiin(1), paiinody(1), pchaiin(1), | |
| pcheodaiin(1), pchoraiin(1), pchraiin(1), poaiin(1), pochaiin(1), | |
| poeeaiin(1), poldaiin(1), poraiiindy(1), pororaiin(1), | |
| pshdaiin(1), pshedaiin(1), pysaiinor(1), qeaiin(1), qedaiin(1), | |
| qeoodaiin(1), qetaiin(1), qoaiir(1), qochaiin(1), qochdaiin(1), | |
| qochodaiin(1), qoctaiin(1), qodaiikhy(1), qoeeokaiin(1), | |
| qoekaiin(1), qofaiin(1), qofchdaiin(1), qofydaiin(1), qokaiii(1), | |
| qokaiinos(1), qokalaiin(1), qokcheodaiin(1), qokeaiin(1), | |
| qokeedaiin(1), qokeeodaiin(1), qoklaiin(1), qokoaiin(1), | |
| qokoaiis(1), qokodaiin(1), qoolkaiin(1), qopaiim(1), | |
| qoparaiin(1), qopchaiin(1), qopchedaiin(1), qopdaiin(1), | |
| qopydaiin(1), qoraiin(1), qotaiior(1), qotcheeaiin(1), | |
| qotchoraiin(1), qoteedaiin(1), qoteodaiin(1), qotodaiin(1), | |
| qotolaiin(1), qykaiin(1), raiiin(1), raiis(1), raraiiin(1), | |
| rlaiin(1), roaiin(1), rotaiin(1), saiichor(1), saiidy(1), | |
| saiiin(1), saiim(1), saiinchy(1), saiindy(1), saiino(1), | |
| saiiny(1), saiirol(1), sakaiin(1), saldaiin(1), saraiir(1), | |
| schaiin(1), schedaiir(1), sedaiin(1), seodaiin(1), shaiiin(1), | |
| shalkaiin(1), shcheaiin(1), shckhaiin(1), shcthaiin(1), | |
| shedaiiin(1), sheeodaiin(1), shekaiiin(1), sheosaiin(1), | |
| shepdaiin(1), sheykaiiin(1), shfydaiin(1), shokaiir(1), | |
| sholaiin(1), sholdaiin(1), sholfaiin(1), sholfosdaiin(1), | |
| shtaiin(1), shykaiin(1), skaiiodar(1), sodaiiin(1), sokaiin(1), | |
| soraiis(1), sosaiir(1), sotaiin(1), sotchaiin(1), sotchdaiin(1), | |
| spaiin(1), syaiir(1), sykaiin(1), taedaiin(1), taiiin(1), | |
| tarodaiin(1), tchaiin(1), tchedaiin(1), tcheodaiin(1), | |
| tchkaiin(1), tcholkaiin(1), tdaiin(1), teaiin(1), teodkaiin(1), | |
| tesaiin(1), todaraiily(1), tolchdaiin(1), topaiin(1), tshaiin(1), | |
| tshodaiin(1), ycheealkaiin(1), ycheedaiin(1), ycheeodaiin(1), | |
| ycheeytydaiin(1), ycheoraiin(1), ychodaiin(1), ychtaiin(1), | |
| ychtaiis(1), ycthodaiin(1), ydaiil(1), yefaiin(1), yfaiin(1), | |
| ykaiiin(1), ykaiil(1), ykairaiin(1), ykchaiin(1), ykedaiin(1), | |
| ykeedaiin(1), ykeeeedaiir(1), ykeodaiin(1), ykolaiin(1), | |
| ylaiin(1), yodaiin(1), yotaiin(1), ypchaiin(1), ypchdaiin(1), | |
| ypchocpheosaiin(1), ypodaiin(1), yraiin(1), yshedaiin(1), | |
| ysheeoaiin(1), ytaiim(1), ytaiir(1), ytchaiin(1), ytchodaiin(1), | |
| yteodaiin(1), ytoaiin(1), ytolaiin(1), ytolaiir(1) | |
| aiidal(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1) | |
| contains: daiidal(1) | |
| aiidy(2): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: da(1), sa(1) | |
| contains: daiidy(7), saiidy(1) | |
| aiiin(41): (word length: 5 / group items: 37) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: ch(5), da(4), sh(4), qo(3), ra(2) | |
| contains: daiiin(17), odaiiin(4), okaiiin(4), oraiiin(4), kaiiin(3), | |
| alaiiin(2), chedaiiin(2), laiiin(2), qodaiiin(2), qokaiiin(2), | |
| qotaiiin(2), aiiinro(1), chaiiin(1), chekaiiin(1), cheodaiiin(1), | |
| chlaiiin(1), daiiine(1), daiiiny(1), daraiiin(1), kedaiiin(1), | |
| ldaiiin(1), lkaiiin(1), lolsaiiin(1), olaiiin(1), osaiiin(1), | |
| otaiiin(1), poraiiindy(1), raiiin(1), raraiiin(1), saiiin(1), | |
| shaiiin(1), shedaiiin(1), shekaiiin(1), sheykaiiin(1), | |
| sodaiiin(1), taiiin(1), ykaiiin(1) | |
| aiikam(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otaiikam(1) | |
| aiil(1): (word length: 4 / group items: 12) | |
| length: min=5, max=10, avg=6.8 | |
| top prefixes: da(3), ai(2), cp(1), oa(1), od(1) | |
| contains: aiildy(1), aiily(1), cphodaiils(1), daiil(1), daiild(1), | |
| daiildy(1), oaiil(1), odaiil(1), otaiilody(1), todaraiily(1), | |
| ydaiil(1), ykaiil(1) | |
| aiildy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1) | |
| contains: daiildy(1) | |
| aiily(1): (word length: 5 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: to(1) | |
| contains: todaraiily(1) | |
| aiim(3): (word length: 4 / group items: 9) | |
| length: min=5, max=9, avg=6.3 | |
| top prefixes: ch(2), da(1), ka(1), od(1), op(1) | |
| contains: daiim(5), cheokaiim(1), cholaiim(1), kaiim(1), odaiim(1), | |
| opaiim(1), qopaiim(1), saiim(1), ytaiim(1) | |
| aiin(470): (word length: 4 / group items: 489) | |
| length: min=5, max=15, avg=8.1 | |
| top prefixes: ch(67), qo(47), sh(27), ok(24), ot(24) | |
| contains: daiin(864), qokaiin(262), okaiin(212), otaiin(154), | |
| saiin(144), qotaiin(79), raiin(75), kaiin(65), odaiin(61), | |
| olaiin(52), lkaiin(49), chaiin(45), ykaiin(45), chodaiin(44), | |
| ytaiin(43), qodaiin(42), taiin(42), oraiin(38), chedaiin(32), | |
| olkaiin(31), oaiin(26), qoaiin(23), shodaiin(23), ydaiin(21), | |
| shaiin(20), chkaiin(18), chokaiin(17), chdaiin(16), shedaiin(15), | |
| cthaiin(13), laiin(13), opaiin(13), cheodaiin(11), araiin(10), | |
| chotaiin(9), oldaiin(9), sheaiin(9), todaiin(9), chekaiin(8), | |
| osaiin(8), oteodaiin(8), paiin(8), polaiin(8), choaiin(7), | |
| cphaiin(7), soraiin(7), ofaiin(6), qopaiin(6), raraiin(6), | |
| yaiin(6), alkaiin(5), choraiin(5), dchaiin(5), otodaiin(5), | |
| pchodaiin(5), podaiin(5), sheodaiin(5), shosaiin(5), aiiny(4), | |
| alaiin(4), cheedaiin(4), cholaiin(4), cholkaiin(4), chosaiin(4), | |
| chtaiin(4), opchedaiin(4), pchedaiin(4), saraiin(4), shkaiin(4), | |
| shoaiin(4), soaiin(4), ysaiin(4), aldaiin(3), chckhaiin(3), | |
| cheaiin(3), chetaiin(3), ckhaiin(3), daiindy(3), dalaiin(3), | |
| daldaiin(3), doaiin(3), dykaiin(3), kchaiin(3), koaiin(3), | |
| kodaiin(3), ldaiin(3), lodaiin(3), oekaiin(3), okedaiin(3), | |
| opdaiin(3), opydaiin(3), otalaiin(3), otedaiin(3), pchdaiin(3), | |
| pdaiin(3), poraiin(3), qoedaiin(3), qokedaiin(3), qolaiin(3), | |
| qotedaiin(3), rodaiin(3), shdaiin(3), shokaiin(3), skaiin(3), | |
| sodaiin(3), solkaiin(3), tchodaiin(3), tedaiin(3), ypaiin(3), | |
| ytodaiin(3), cheeaiin(2), cheekaiin(2), cheoaiin(2), | |
| cheokaiin(2), chokchaiin(2), daraiin(2), dchodaiin(2), | |
| doldaiin(2), epaiin(2), fchodaiin(2), kcheodaiin(2), keodaiin(2), | |
| kokaiin(2), koraiin(2), lolkaiin(2), lsaiin(2), oeedaiin(2), | |
| okalaiin(2), okaraiin(2), okchaiin(2), okeaiin(2), okeeodaiin(2), | |
| okeodaiin(2), okoaiin(2), okodaiin(2), okolaiin(2), okoraiin(2), | |
| olchdaiin(2), olkedaiin(2), olsaiin(2), oltaiin(2), opalkaiin(2), | |
| oporaiin(2), ordaiin(2), otchaiin(2), oteaiin(2), otoaiin(2), | |
| pshodaiin(2), pydaiin(2), qaiin(2), qekaiin(2), qoeedaiin(2), | |
| qokchaiin(2), qokeeaiin(2), qolkaiin(2), qosaiin(2), | |
| qotchaiin(2), qotcheaiin(2), scheaiin(2), shekaiin(2), | |
| sheokaiin(2), shotaiin(2), solaiin(2), taraiin(2), tchdaiin(2), | |
| teeodaiin(2), teodaiin(2), toaiin(2), ychedaiin(2), yfolaiin(2), | |
| ykoaiin(2), ykykaiin(2), ylkaiin(2), aiinal(1), aiinod(1), | |
| aiinog(1), akaiin(1), arakaiin(1), ararchodaiin(1), ataiin(1), | |
| cfhaiin(1), cfhoaiin(1), cfhyaiin(1), chadaiin(1), chaiind(1), | |
| chalaiin(1), charaiin(1), chataiin(1), chckaiin(1), chcpaiin(1), | |
| chcthaiin(1), chdodaiin(1), chdolaiin(1), chdypdaiin(1), | |
| chearaiin(1), chechdaiin(1), cheedalaiin(1), cheeedaiin(1), | |
| cheeotaiin(1), cheepaiin(1), chefaiin(1), cheodoiidaiin(1), | |
| cheolaiin(1), cheolchdaiin(1), cheoltchedaiin(1), cheopaiin(1), | |
| cheosaiin(1), cheotaiin(1), cheotdaiin(1), chepaiin(1), | |
| chetchaiin(1), cheteeeosaiin(1), cheykaiin(1), chfaiin(1), | |
| chforaiin(1), chkeaiin(1), chldaiin(1), chodaiindy(1), | |
| chokchodaiin(1), chokoaiin(1), cholchaiin(1), choldaiin(1), | |
| choltaiin(1), chpaiin(1), chtodaiin(1), chykaiin(1), ckaiin(1), | |
| ckooaiin(1), cpheeaiin(1), cpheodaiin(1), cphesaiin(1), | |
| cphoaiin(1), cpholkaiin(1), cthodaiin(1), cthyaiin(1), | |
| daiiiolkaiin(1), daiinls(1), daiino(1), daiinol(1), daiiny(1), | |
| daraiinm(1), darordaiin(1), dasaiin(1), dcheaiin(1), | |
| dchedaiin(1), dcheodaiin(1), dchsaiin(1), deaiin(1), dodaiin(1), | |
| dolaiin(1), doleodaiin(1), doraiin(1), dtoaiin(1), dyaiin(1), | |
| eeeodaiin(1), eeesaiin(1), eeodaiin(1), ekaiin(1), eosaiin(1), | |
| etaiin(1), etodaiin(1), fchedypaiin(1), fchosaiin(1), fodaiin(1), | |
| folaiin(1), foldaiin(1), gaiin(1), haiin(1), kaldaiin(1), | |
| kchdaiin(1), kchedaiin(1), kchochaiin(1), keeaiin(1), | |
| keeodaiin(1), kshaiin(1), kshodaiin(1), kshoraiin(1), lchaiin(1), | |
| lchealaiin(1), lcholkaiin(1), leedaiin(1), lkeodaiin(1), | |
| loaiin(1), lokaiin(1), loraiin(1), losaiin(1), lotedaiin(1), | |
| lpaiin(1), lraiin(1), lshdaiin(1), lsoraiin(1), ltaiin(1), | |
| ochaiin(1), ocheodaiin(1), ochoaiin(1), ocphoraiin(1), | |
| odchaiin(1), odeaiin(1), odeedaiin(1), oeaiin(1), oedaiin(1), | |
| oeeaiin(1), oeeeodaiin(1), oeesaiin(1), ofaiino(1), ofalaiin(1), | |
| ofchedaiin(1), okadaiin(1), okcharaiin(1), okchedaiin(1), | |
| okeeaiin(1), okeedaiin(1), okeeeosaiin(1), okeeoraiin(1), | |
| okeoaiin(1), okeolaiin(1), okolraiin(1), okraiin(1), okytaiin(1), | |
| olaiiny(1), olalaiin(1), olchedaiin(1), olfaiin(1), olkalaiin(1), | |
| oloaiin(1), oloraiin(1), olraiin(1), opaiinar(1), opaldaiin(1), | |
| opchaiin(1), opcheaiin(1), opchekaiin(1), opcholalaiin(1), | |
| opodaiin(1), opolaiin(1), opsheolaiin(1), opyaiin(1), oqaiin(1), | |
| oqotaiin(1), oraiino(1), oraiiny(1), orchaiin(1), oschaiin(1), | |
| oshaiin(1), osheokaiin(1), oshsodaiin(1), otaraiin(1), | |
| otcheedaiin(1), otcheodaiin(1), otcholcheaiin(1), oteeaiin(1), | |
| oteeodaiin(1), oteosaiin(1), otlaiin(1), otolaiin(1), | |
| otolaiino(1), otoloaiin(1), otolopaiin(1), otoraiin(1), | |
| otosaiin(1), otshaiin(1), otshsaiin(1), paiinody(1), pchaiin(1), | |
| pcheodaiin(1), pchoraiin(1), pchraiin(1), poaiin(1), pochaiin(1), | |
| poeeaiin(1), poldaiin(1), pororaiin(1), pshdaiin(1), | |
| pshedaiin(1), pysaiinor(1), qeaiin(1), qedaiin(1), qeoodaiin(1), | |
| qetaiin(1), qochaiin(1), qochdaiin(1), qochodaiin(1), | |
| qoctaiin(1), qoeeokaiin(1), qoekaiin(1), qofaiin(1), | |
| qofchdaiin(1), qofydaiin(1), qokaiinos(1), qokalaiin(1), | |
| qokcheodaiin(1), qokeaiin(1), qokeedaiin(1), qokeeodaiin(1), | |
| qoklaiin(1), qokoaiin(1), qokodaiin(1), qoolkaiin(1), | |
| qoparaiin(1), qopchaiin(1), qopchedaiin(1), qopdaiin(1), | |
| qopydaiin(1), qoraiin(1), qotcheeaiin(1), qotchoraiin(1), | |
| qoteedaiin(1), qoteodaiin(1), qotodaiin(1), qotolaiin(1), | |
| qykaiin(1), rlaiin(1), roaiin(1), rotaiin(1), saiinchy(1), | |
| saiindy(1), saiino(1), saiiny(1), sakaiin(1), saldaiin(1), | |
| schaiin(1), sedaiin(1), seodaiin(1), shalkaiin(1), shcheaiin(1), | |
| shckhaiin(1), shcthaiin(1), sheeodaiin(1), sheosaiin(1), | |
| shepdaiin(1), shfydaiin(1), sholaiin(1), sholdaiin(1), | |
| sholfaiin(1), sholfosdaiin(1), shtaiin(1), shykaiin(1), | |
| sokaiin(1), sotaiin(1), sotchaiin(1), sotchdaiin(1), spaiin(1), | |
| sykaiin(1), taedaiin(1), tarodaiin(1), tchaiin(1), tchedaiin(1), | |
| tcheodaiin(1), tchkaiin(1), tcholkaiin(1), tdaiin(1), teaiin(1), | |
| teodkaiin(1), tesaiin(1), tolchdaiin(1), topaiin(1), tshaiin(1), | |
| tshodaiin(1), ycheealkaiin(1), ycheedaiin(1), ycheeodaiin(1), | |
| ycheeytydaiin(1), ycheoraiin(1), ychodaiin(1), ychtaiin(1), | |
| ycthodaiin(1), yefaiin(1), yfaiin(1), ykairaiin(1), ykchaiin(1), | |
| ykedaiin(1), ykeedaiin(1), ykeodaiin(1), ykolaiin(1), ylaiin(1), | |
| yodaiin(1), yotaiin(1), ypchaiin(1), ypchdaiin(1), | |
| ypchocpheosaiin(1), ypodaiin(1), yraiin(1), yshedaiin(1), | |
| ysheeoaiin(1), ytchaiin(1), ytchodaiin(1), yteodaiin(1), | |
| ytoaiin(1), ytolaiin(1) | |
| aiinod(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: pa(1) | |
| contains: paiinody(1) | |
| aiiny(4): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: da(1), ol(1), or(1), sa(1) | |
| contains: daiiny(1), olaiiny(1), oraiiny(1), saiiny(1) | |
| aiir(23): (word length: 4 / group items: 45) | |
| length: min=5, max=12, avg=6.8 | |
| top prefixes: ai(6), da(4), ch(4), sa(3), ok(2) | |
| contains: daiir(23), okaiir(6), saiir(6), oaiir(4), otaiir(4), | |
| olaiir(3), qokaiir(3), daiiral(2), lkaiir(2), odaiir(2), | |
| paiir(2), podaiir(2), yaiir(2), ykaiir(2), aiiral(1), aiiraly(1), | |
| aiirchar(1), aiirody(1), aiirol(1), aiiry(1), chaiir(1), | |
| chdaiirsainy(1), cheodaiir(1), chtaiir(1), daiirol(1), daiiry(1), | |
| deeaiir(1), faiir(1), faiiral(1), llaiiry(1), lshaiir(1), | |
| okinaiir(1), olkaiir(1), opaiir(1), opaiiral(1), qoaiir(1), | |
| saiirol(1), saraiir(1), schedaiir(1), shokaiir(1), sosaiir(1), | |
| syaiir(1), ykeeeedaiir(1), ytaiir(1), ytolaiir(1) | |
| aiiral(1): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.2 | |
| top prefixes: da(1), ai(1), fa(1), op(1) | |
| contains: daiiral(2), aiiraly(1), faiiral(1), opaiiral(1) | |
| aiirol(1): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1), sa(1) | |
| contains: daiirol(1), saiirol(1) | |
| aiiry(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: da(1), ll(1) | |
| contains: daiiry(1), llaiiry(1) | |
| aiis(3): (word length: 4 / group items: 17) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: ai(3), ka(2), of(2), da(1), ct(1) | |
| contains: daiis(5), aiisaim(1), aiisockhy(1), aiisod(1), cthodaiis(1), | |
| faiis(1), kaiis(1), kaiishdy(1), ofaiis(1), ofchedaiis(1), | |
| okaiis(1), opaiis(1), osaiisal(1), qokoaiis(1), raiis(1), | |
| soraiis(1), ychtaiis(1) | |
| aikhy(2): (word length: 5 / group items: 7) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: sh(1), ch(1), da(1), ol(1), op(1) | |
| contains: shaikhy(2), cheaikhy(1), daikhyky(1), olaikhy(1), | |
| opchaikhy(1), qoaikhy(1), taikhy(1) | |
| ail(5): (word length: 3 / group items: 21) | |
| length: min=4, max=11, avg=6.2 | |
| top prefixes: da(3), op(3), ot(3), qo(3), ok(2) | |
| contains: aildy(3), dail(2), chdail(1), cthaildy(1), daildain(1), | |
| darailchedy(1), kail(1), oeail(1), okail(1), okaildy(1), | |
| opail(1), opailo(1), opdaildo(1), otail(1), otaily(1), | |
| oteeodail(1), qokail(1), qotail(1), qotaily(1), sail(1), ykail(1) | |
| aildy(3): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ct(1), ok(1) | |
| contains: cthaildy(1), okaildy(1) | |
| aim(7): (word length: 3 / group items: 32) | |
| length: min=4, max=9, avg=6.0 | |
| top prefixes: da(5), ot(2), qo(2), sa(2), ch(2) | |
| contains: daim(11), otaim(2), qokaim(2), saim(2), aiisaim(1), | |
| arodaim(1), chaim(1), chekaim(1), cthodaim(1), daimd(1), | |
| daimdy(1), daimm(1), daimom(1), dydaim(1), faimy(1), kaldaim(1), | |
| karaim(1), lchealaim(1), lkaim(1), lpaim(1), okaim(1), | |
| okeedaim(1), oldaim(1), olkaim(1), opaim(1), otokaiman(1), | |
| qodaim(1), saimchy(1), shodaim(1), taim(1), ypaim(1), ytaim(1) | |
| ain(92): (word length: 3 / group items: 302) | |
| length: min=4, max=12, avg=7.0 | |
| top prefixes: ch(37), qo(31), sh(18), ot(17), da(15) | |
| contains: qokain(279), dain(211), okain(144), otain(96), sain(68), | |
| qotain(64), kain(48), lkain(35), olkain(33), orain(27), rain(26), | |
| chedain(19), chain(18), odain(18), tain(16), olain(13), | |
| ytain(13), chkain(12), chokain(11), oain(11), qodain(11), | |
| shedain(11), ykain(10), chdain(9), chodain(9), cheodain(8), | |
| shain(8), alkain(7), chekain(7), qoain(7), chetain(5), lain(5), | |
| qolkain(5), shekain(5), shodain(5), ydain(5), alain(4), | |
| cheokain(4), chotain(4), cthain(4), qokedain(4), qorain(4), | |
| tedain(4), charain(3), cheekain(3), chtain(3), okedain(3), | |
| osain(3), pchodain(3), qokeain(3), qokeedain(3), qolain(3), | |
| sarain(3), shkain(3), solkain(3), ychain(3), ainy(2), arain(2), | |
| cheain(2), cheedain(2), cholkain(2), chorain(2), dkain(2), | |
| keedain(2), korain(2), lchdain(2), ldain(2), lkedain(2), | |
| lolain(2), ltain(2), okeedain(2), oldain(2), oltain(2), opain(2), | |
| oqokain(2), otedain(2), oteedain(2), pchedain(2), porain(2), | |
| qkain(2), saino(2), sheain(2), sorain(2), tdain(2), todain(2), | |
| tokain(2), tolkain(2), ycheain(2), ykeedain(2), ainaly(1), | |
| ainam(1), ainarals(1), aindar(1), akain(1), alkeain(1), | |
| chaindy(1), chakain(1), chalkain(1), chalsain(1), chcthain(1), | |
| chdaiirsainy(1), chedkain(1), chedyteokain(1), chefain(1), | |
| cheoain(1), cheokeain(1), cheoldain(1), cheolkain(1), | |
| cheoltain(1), cheotain(1), chetolain(1), cheykain(1), chkdain(1), | |
| chopdain(1), ckhain(1), coain(1), cphain(1), cthoepain(1), | |
| cthscthain(1), daildain(1), dainaldy(1), daind(1), daindl(1), | |
| daing(1), dainkey(1), dainl(1), dainod(1), dainor(1), dainy(1), | |
| dalain(1), dalkain(1), dalorain(1), dasain(1), dchain(1), | |
| dchedain(1), dcheoain(1), dcheodain(1), dchepain(1), | |
| dcheytain(1), dolkain(1), dolsain(1), dorain(1), dydain(1), | |
| dykain(1), dykeedain(1), dytain(1), eain(1), eekain(1), | |
| fcheolain(1), fdykain(1), karainy(1), kchain(1), kchekain(1), | |
| kodain(1), koeeorain(1), kshdain(1), kydain(1), kydainy(1), | |
| lchain(1), leeesain(1), lkeain(1), lkeedain(1), lkeodain(1), | |
| loain(1), lokain(1), lpchdain(1), lrain(1), lsheedain(1), | |
| lshekain(1), ocheain(1), ochedain(1), ochepalain(1), octhain(1), | |
| oeain(1), oeeedain(1), oeeodain(1), oekain(1), ofadain(1), | |
| ofchain(1), oforain(1), okainy(1), okalain(1), okaldain(1), | |
| okchain(1), okeeokain(1), okeodain(1), okeokain(1), olainy(1), | |
| olchain(1), olkeedain(1), ollain(1), oloeorain(1), olsain(1), | |
| opchdain(1), oqekain(1), oqoeeosain(1), orolkain(1), | |
| orolodain(1), otainos(1), otainy(1), otalain(1), otalkain(1), | |
| otarain(1), otararain(1), otchdain(1), otchedain(1), oteain(1), | |
| oteodain(1), oteolain(1), otlchdain(1), otorain(1), | |
| otyteeodain(1), pairain(1), pcheodain(1), pokain(1), | |
| polcheolkain(1), psheoepoain(1), pshoain(1), qetain(1), | |
| qetdain(1), qochedain(1), qoeedain(1), qoeekain(1), qofain(1), | |
| qoirain(1), qokchain(1), qokchdain(1), qokeeodain(1), | |
| qokeeokain(1), qoklain(1), qokolkain(1), qoodain(1), | |
| qopcheoain(1), qopdain(1), qopolkain(1), qorchain(1), qosain(1), | |
| qotchain(1), qotchdain(1), qotedain(1), qotodain(1), qsain(1), | |
| rainal(1), rakain(1), rodain(1), rorain(1), rtain(1), sainn(1), | |
| schain(1), schodain(1), sheainy(1), shedaitain(1), shedykain(1), | |
| sheeain(1), sheedain(1), sheekain(1), sheeodain(1), shelain(1), | |
| sheokain(1), sheolkain(1), sheotain(1), shokain(1), skain(1), | |
| soain(1), solain(1), ssheodain(1), taldain(1), tazain(1), | |
| tchain(1), tcheain(1), tchodain(1), teedain(1), teeodain(1), | |
| teeolain(1), teodain(1), teolkedain(1), todalain(1), tolain(1), | |
| torain(1), tshedain(1), ychdain(1), ychedain(1), ycheeodain(1), | |
| ycheodain(1), ychtain(1), yfain(1), yfodain(1), ykalkain(1), | |
| ykalokain(1), ykarain(1), ykchedain(1), ykcheodain(1), ykeain(1), | |
| ykeeodain(1), ykeodain(1), yorain(1), ypain(1), yqokain(1), | |
| yshain(1), yshdain(1), yshoain(1), yteodain(1) | |
| ainy(2): (word length: 4 / group items: 8) | |
| length: min=5, max=12, avg=7.0 | |
| top prefixes: ch(1), da(1), ka(1), ky(1), ok(1) | |
| contains: chdaiirsainy(1), dainy(1), karainy(1), kydainy(1), okainy(1), | |
| olainy(1), otainy(1), sheainy(1) | |
| aiphy(1): (word length: 5 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(1), ot(1) | |
| contains: chekaiphy(1), otaiphy(1) | |
| air(74): (word length: 3 / group items: 193) | |
| length: min=4, max=12, avg=6.6 | |
| top prefixes: da(19), ch(14), ai(13), qo(12), ok(11) | |
| contains: dair(106), sair(28), okair(22), otair(21), qokair(17), | |
| kair(14), tair(13), ykair(8), qotair(6), rair(6), dairal(5), | |
| odair(5), orair(5), dairy(4), lkair(4), olkair(4), opair(4), | |
| pchdair(4), qoair(4), airody(3), dairin(3), dairo(3), dairody(3), | |
| oair(3), otairor(3), qodair(3), qokairor(3), sairy(3), ypair(3), | |
| ytair(3), airal(2), airod(2), chdair(2), chodair(2), cholairy(2), | |
| dairair(2), dairam(2), dairar(2), dairl(2), dairol(2), kairam(2), | |
| okairy(2), pair(2), pairar(2), podair(2), qofair(2), sairol(2), | |
| shdair(2), shkair(2), tedair(2), yair(2), ydair(2), adairchdy(1), | |
| airaldy(1), airam(1), airar(1), airchy(1), airol(1), airolm(1), | |
| airols(1), airorlchy(1), airoy(1), airy(1), akair(1), alair(1), | |
| alairdy(1), alkair(1), aporair(1), arair(1), arairaly(1), | |
| chair(1), chairal(1), chdairod(1), chdalkair(1), chedair(1), | |
| cheeoldair(1), chokair(1), chokedair(1), chotair(1), chtair(1), | |
| chtairy(1), dairchey(1), daird(1), dairiy(1), dairkal(1), | |
| dairodg(1), dairom(1), dairydy(1), darair(1), dchairam(1), | |
| dkair(1), doair(1), dtedair(1), dyair(1), eair(1), epairody(1), | |
| fcheokair(1), kairy(1), kedair(1), koair(1), lair(1), lolkair(1), | |
| losair(1), lsair(1), lshodair(1), oairar(1), octhair(1), | |
| oedair(1), ofair(1), oiair(1), okairady(1), okaircham(1), | |
| okairo(1), okairody(1), okalair(1), okeeodair(1), oklairdy(1), | |
| okolair(1), okorair(1), olair(1), olpair(1), opairaly(1), | |
| opairam(1), oparairdly(1), opcheodair(1), opdairody(1), | |
| orairody(1), otairar(1), otairin(1), otalair(1), otchedair(1), | |
| otedair(1), oteodair(1), oteolair(1), pairain(1), pairody(1), | |
| parair(1), pchair(1), pchdairor(1), pchedairs(1), pchodair(1), | |
| pdair(1), pdrairdy(1), pdsairy(1), podairol(1), poedair(1), | |
| polairy(1), porair(1), posairy(1), pshoair(1), qairal(1), | |
| qoeair(1), qokairolchdy(1), qokeedair(1), qokeodair(1), | |
| qolair(1), qopairam(1), sairal(1), sairaly(1), sairn(1), | |
| sairom(1), sairor(1), schedair(1), shair(1), shdykairy(1), | |
| shedair(1), shekair(1), sholkair(1), soairal(1), sodair(1), | |
| solair(1), tairoor(1), tarair(1), tarairy(1), tchedair(1), | |
| tchodairos(1), toairshy(1), tolair(1), tshodair(1), ychair(1), | |
| ydairol(1), yfair(1), ykairaiin(1), ykairolky(1), ykdair(1), | |
| ykodair(1), ykolairol(1), ypchdair(1), ysair(1), yshealkair(1), | |
| yshedair(1), ytairal(1), yteair(1) | |
| airal(2): (word length: 5 / group items: 10) | |
| length: min=6, max=8, avg=6.9 | |
| top prefixes: sa(2), da(1), ai(1), ar(1), ch(1) | |
| contains: dairal(5), airaldy(1), arairaly(1), chairal(1), opairaly(1), | |
| qairal(1), sairal(1), sairaly(1), soairal(1), ytairal(1) | |
| airam(1): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: da(1), ka(1), dc(1), op(1), qo(1) | |
| contains: dairam(2), kairam(2), dchairam(1), opairam(1), qopairam(1) | |
| airar(1): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.2 | |
| top prefixes: da(1), pa(1), oa(1), ot(1) | |
| contains: dairar(2), pairar(2), oairar(1), otairar(1) | |
| airod(2): (word length: 5 / group items: 9) | |
| length: min=6, max=9, avg=7.6 | |
| top prefixes: da(2), ai(1), ch(1), ep(1), ok(1) | |
| contains: airody(3), dairody(3), chdairod(1), dairodg(1), epairody(1), | |
| okairody(1), opdairody(1), orairody(1), pairody(1) | |
| airody(3): (word length: 6 / group items: 6) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: da(1), ep(1), ok(1), op(1), or(1) | |
| contains: dairody(3), epairody(1), okairody(1), opdairody(1), | |
| orairody(1), pairody(1) | |
| airol(1): (word length: 5 / group items: 9) | |
| length: min=6, max=12, avg=7.7 | |
| top prefixes: ai(2), yk(2), da(1), sa(1), po(1) | |
| contains: dairol(2), sairol(2), airolm(1), airols(1), podairol(1), | |
| qokairolchdy(1), ydairol(1), ykairolky(1), ykolairol(1) | |
| airy(1): (word length: 4 / group items: 12) | |
| length: min=5, max=9, avg=6.7 | |
| top prefixes: da(2), ch(2), po(2), sa(1), ok(1) | |
| contains: dairy(4), sairy(3), cholairy(2), okairy(2), chtairy(1), | |
| dairydy(1), kairy(1), pdsairy(1), polairy(1), posairy(1), | |
| shdykairy(1), tarairy(1) | |
| ais(1): (word length: 3 / group items: 27) | |
| length: min=4, max=9, avg=6.0 | |
| top prefixes: da(5), qo(4), ka(3), ok(2), sa(2) | |
| contains: dais(4), otais(4), kais(2), aisam(1), chotais(1), daisam(1), | |
| daisin(1), daisn(1), daisoldy(1), ekais(1), kaisar(1), kaishd(1), | |
| lsais(1), ofais(1), okais(1), okaisy(1), olkais(1), pchodais(1), | |
| polsaisy(1), qoais(1), qopchais(1), qotais(1), qotedais(1), | |
| rais(1), sais(1), saraisl(1), ydaraishy(1) | |
| aisam(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: da(1) | |
| contains: daisam(1) | |
| aithy(5): (word length: 5 / group items: 5) | |
| length: min=6, max=9, avg=6.6 | |
| top prefixes: cp(1), ka(1), oa(1), ra(1), sa(1) | |
| contains: cphdaithy(1), kaithy(1), oaithy(1), raithy(1), saithy(1) | |
| aiy(1): (word length: 3 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qokaiy(1) | |
| akaiin(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ar(1), sa(1) | |
| contains: arakaiin(1), sakaiin(1) | |
| akain(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(1), ra(1) | |
| contains: chakain(1), rakain(1) | |
| akal(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: of(1) | |
| contains: ofakal(1) | |
| akar(2): (word length: 4 / group items: 5) | |
| length: min=5, max=6, avg=5.4 | |
| top prefixes: ak(1), da(1), ot(1), qa(1), sa(1) | |
| contains: akarar(1), dakar(1), otakar(1), qakar(1), sakar(1) | |
| aky(1): (word length: 3 / group items: 6) | |
| length: min=4, max=8, avg=6.0 | |
| top prefixes: ot(1), da(1), ko(1), ok(1), po(1) | |
| contains: otaky(2), daky(1), koldaky(1), okeedaky(1), poldaky(1), | |
| ykaky(1) | |
| alaiin(4): (word length: 6 / group items: 11) | |
| length: min=7, max=12, avg=8.9 | |
| top prefixes: ch(2), ol(2), da(1), ot(1), ok(1) | |
| contains: dalaiin(3), otalaiin(3), okalaiin(2), chalaiin(1), | |
| cheedalaiin(1), lchealaiin(1), ofalaiin(1), olalaiin(1), | |
| olkalaiin(1), opcholalaiin(1), qokalaiin(1) | |
| alain(4): (word length: 5 / group items: 5) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: da(1), oc(1), ok(1), ot(1), to(1) | |
| contains: dalain(1), ochepalain(1), okalain(1), otalain(1), todalain(1) | |
| alair(1): (word length: 5 / group items: 3) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: al(1), ok(1), ot(1) | |
| contains: alairdy(1), okalair(1), otalair(1) | |
| alal(5): (word length: 4 / group items: 19) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: da(4), ot(3), ch(3), al(2), ok(1) | |
| contains: okalal(6), dalal(5), otalal(3), opalal(2), salal(2), | |
| alaldy(1), alalor(1), chalal(1), chalaly(1), chdalal(1), | |
| dalaldam(1), dalalody(1), dalaly(1), odalaly(1), ofalals(1), | |
| osalal(1), otalalg(1), otalaly(1), qotalal(1) | |
| alam(8): (word length: 4 / group items: 9) | |
| length: min=5, max=8, avg=6.1 | |
| top prefixes: da(1), ot(1), ok(1), al(1), ea(1) | |
| contains: dalam(7), otalam(3), okalam(2), alamchy(1), ealam(1), | |
| opalam(1), qokalam(1), sholalam(1), talam(1) | |
| alar(6): (word length: 4 / group items: 20) | |
| length: min=5, max=8, avg=6.3 | |
| top prefixes: da(2), ch(2), of(2), or(2), ok(1) | |
| contains: okalar(6), dalar(5), otalar(3), dalary(2), salar(2), | |
| aralary(1), chkalar(1), chodalar(1), odalar(1), ofalar(1), | |
| ofaralar(1), opalar(1), oralar(1), oralaror(1), palar(1), | |
| psalar(1), qokalar(1), talar(1), ykeealar(1), ytalar(1) | |
| alchd(1): (word length: 5 / group items: 12) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: da(2), al(1), qo(1), ch(1), ka(1) | |
| contains: dalchdy(5), alchdy(2), qokalchdy(2), chdalchdy(1), dalchd(1), | |
| kalchdy(1), oalchdm(1), okalchdy(1), opalchdy(1), palchd(1), | |
| polalchdy(1), shekalchdy(1) | |
| alchdy(2): (word length: 6 / group items: 8) | |
| length: min=7, max=10, avg=8.4 | |
| top prefixes: da(1), qo(1), ch(1), ka(1), ok(1) | |
| contains: dalchdy(5), qokalchdy(2), chdalchdy(1), kalchdy(1), | |
| okalchdy(1), opalchdy(1), polalchdy(1), shekalchdy(1) | |
| alched(1): (word length: 6 / group items: 12) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: sa(3), al(2), da(2), ok(2), ka(1) | |
| contains: alchedy(4), dalchedy(4), okalchedy(2), salchedy(2), | |
| alchedar(1), dalched(1), kalchedy(1), okalched(1), otealchedy(1), | |
| qotalchedy(1), salched(1), salchedal(1) | |
| alchedy(4): (word length: 7 / group items: 6) | |
| length: min=8, max=10, avg=8.8 | |
| top prefixes: da(1), ok(1), sa(1), ka(1), ot(1) | |
| contains: dalchedy(4), okalchedy(2), salchedy(2), kalchedy(1), | |
| otealchedy(1), qotalchedy(1) | |
| alches(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1) | |
| contains: dalches(1) | |
| alchey(4): (word length: 6 / group items: 2) | |
| length: min=9, max=11, avg=10.0 | |
| top prefixes: ok(1), qo(1) | |
| contains: okalsalchey(1), qokalchey(1) | |
| alchl(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ra(1) | |
| contains: ralchl(1) | |
| alchor(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1) | |
| contains: dalchor(1) | |
| alchy(1): (word length: 5 / group items: 7) | |
| length: min=6, max=9, avg=7.3 | |
| top prefixes: ot(2), da(1), ok(1), ch(1), ko(1) | |
| contains: dalchy(3), okalchy(3), chkalchy(1), kodalchy(1), otalchy(1), | |
| otoralchy(1), ralchy(1) | |
| ald(3): (word length: 3 / group items: 79) | |
| length: min=4, max=11, avg=6.7 | |
| top prefixes: da(9), al(7), ok(7), ot(7), ch(6) | |
| contains: daldy(17), aldy(14), okaldy(9), qokaldy(9), otaldy(7), | |
| kaldy(4), aldaiin(3), aldar(3), daldaiin(3), aldam(2), olaldy(2), | |
| otald(2), otaldal(2), otaraldy(2), saldam(2), saldy(2), | |
| ackaldy(1), airaldy(1), alaldy(1), aldalosam(1), aldydy(1), | |
| arald(1), chald(1), chdaldy(1), choetchaldy(1), chtaldy(1), | |
| chykald(1), chypaldy(1), cphaldy(1), dainaldy(1), dalaldam(1), | |
| dald(1), daldal(1), daldalol(1), daldar(1), daldeam(1), | |
| dchdaldy(1), kaldaiin(1), kaldaim(1), kchaldy(1), kchdaldy(1), | |
| laldan(1), lkaldy(1), oaldar(1), oaldary(1), odaldy(1), | |
| ofaldo(1), okald(1), okalda(1), okaldain(1), okaldal(1), | |
| okolaldy(1), okoraldy(1), olald(1), opaldaiin(1), opaldy(1), | |
| opchaldy(1), orald(1), otaldiin(1), otchald(1), oteoaldy(1), | |
| qokaldar(1), qokealdy(1), qotaldy(1), raldl(1), raldy(1), | |
| raraldy(1), saldaiin(1), saldal(1), shaldy(1), shdaldy(1), | |
| shedaldy(1), shoaldy(1), taldain(1), taldar(1), ykald(1), | |
| ykaldy(1), ysaldal(1), yshealdy(1) | |
| aldaiin(3): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.2 | |
| top prefixes: da(1), ka(1), op(1), sa(1) | |
| contains: daldaiin(3), kaldaiin(1), opaldaiin(1), saldaiin(1) | |
| aldam(2): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: sa(1), da(1) | |
| contains: saldam(2), dalaldam(1) | |
| aldar(3): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.6 | |
| top prefixes: oa(2), da(1), qo(1), ta(1) | |
| contains: daldar(1), oaldar(1), oaldary(1), qokaldar(1), taldar(1) | |
| aldy(14): (word length: 4 / group items: 38) | |
| length: min=5, max=11, avg=6.9 | |
| top prefixes: ch(4), sh(4), ok(3), qo(3), ot(3) | |
| contains: daldy(17), okaldy(9), qokaldy(9), otaldy(7), kaldy(4), | |
| olaldy(2), otaraldy(2), saldy(2), ackaldy(1), airaldy(1), | |
| alaldy(1), aldydy(1), chdaldy(1), choetchaldy(1), chtaldy(1), | |
| chypaldy(1), cphaldy(1), dainaldy(1), dchdaldy(1), kchaldy(1), | |
| kchdaldy(1), lkaldy(1), odaldy(1), okolaldy(1), okoraldy(1), | |
| opaldy(1), opchaldy(1), oteoaldy(1), qokealdy(1), qotaldy(1), | |
| raldy(1), raraldy(1), shaldy(1), shdaldy(1), shedaldy(1), | |
| shoaldy(1), ykaldy(1), yshealdy(1) | |
| aleey(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ke(1) | |
| contains: kedaleey(1) | |
| alf(1): (word length: 3 / group items: 4) | |
| length: min=4, max=7, avg=5.5 | |
| top prefixes: al(2), da(1), sa(1) | |
| contains: alfo(1), alfshed(1), dalfchy(1), salf(1) | |
| alg(2): (word length: 3 / group items: 5) | |
| length: min=4, max=7, avg=5.6 | |
| top prefixes: ch(2), da(1), op(1), ot(1) | |
| contains: chodalg(2), chalg(1), dalg(1), opalg(1), otalalg(1) | |
| alkaiin(5): (word length: 7 / group items: 3) | |
| length: min=9, max=12, avg=10.0 | |
| top prefixes: op(1), sh(1), yc(1) | |
| contains: opalkaiin(2), shalkaiin(1), ycheealkaiin(1) | |
| alkain(7): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.8 | |
| top prefixes: ch(1), da(1), ot(1), yk(1) | |
| contains: chalkain(1), dalkain(1), otalkain(1), ykalkain(1) | |
| alkair(1): (word length: 6 / group items: 2) | |
| length: min=9, max=10, avg=9.5 | |
| top prefixes: ch(1), ys(1) | |
| contains: chdalkair(1), yshealkair(1) | |
| alkal(1): (word length: 5 / group items: 3) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: da(2), ka(1) | |
| contains: kalkal(2), dalkal(1), dalkalytam(1) | |
| alkam(6): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: op(1) | |
| contains: opalkam(1) | |
| alkar(4): (word length: 5 / group items: 4) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: da(1), ch(1), op(1), ot(1) | |
| contains: dalkar(3), chalkar(2), opalkar(1), otshealkar(1) | |
| alkedy(2): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: da(1), ch(1) | |
| contains: dalkedy(2), chedalkedy(1) | |
| alkeedy(4): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: sa(1), ch(1), pa(1) | |
| contains: salkeedy(2), chalkeedy(1), palkeedy(1) | |
| alkeey(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chalkeey(1) | |
| alkey(2): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: yk(1) | |
| contains: ykeealkey(1) | |
| alky(3): (word length: 4 / group items: 5) | |
| length: min=5, max=7, avg=5.8 | |
| top prefixes: sh(2), da(1), ot(1), ra(1) | |
| contains: dalky(1), otalky(1), ralky(1), shalky(1), shdalky(1) | |
| alo(3): (word length: 3 / group items: 103) | |
| length: min=4, max=10, avg=6.6 | |
| top prefixes: al(25), da(14), qo(8), ch(8), ot(6) | |
| contains: alol(9), dalor(8), alor(7), dalol(7), alody(6), alom(6), | |
| otalor(4), aloly(3), dalo(3), okalody(3), okalol(3), okalor(3), | |
| alod(2), aloees(2), aloiin(2), alols(2), alos(2), dalom(2), | |
| olalor(2), opalor(2), qokalor(2), salo(2), salol(2), alalor(1), | |
| aldalosam(1), aloal(1), alodam(1), alodar(1), alog(1), | |
| aloiiin(1), alold(1), aloldy(1), alolfchy(1), alolor(1), | |
| alolshedy(1), alory(1), alosheey(1), aloy(1), aralos(1), | |
| chalolky(1), chaloly(1), chalor(1), chdalor(1), chealol(1), | |
| chealor(1), chedalos(1), cheodalol(1), dalalody(1), daldalol(1), | |
| dalocthhy(1), dalody(1), dalohey(1), daloky(1), dalols(1), | |
| dalorain(1), dalory(1), daraloikhy(1), efaloir(1), kalos(1), | |
| ldalor(1), lkalol(1), loralody(1), ltalor(1), okalo(1), | |
| okedalor(1), olkalol(1), opaloiiry(1), opchealol(1), oraloly(1), | |
| otalod(1), otalody(1), otalom(1), otedalol(1), otesalod(1), | |
| pcharalor(1), poalosy(1), psheodalo(1), pshodalos(1), qaloin(1), | |
| qokalol(1), qokalom(1), qokaloro(1), qokalos(1), qopalor(1), | |
| qotalody(1), qotalom(1), ralom(1), saloiin(1), salols(1), | |
| shalom(1), shdalo(1), shokalol(1), soraloaly(1), talody(1), | |
| talol(1), talor(1), tchalody(1), xaloeees(1), ychealod(1), | |
| ykalo(1), ykalokain(1), yokalod(1), ytalody(1) | |
| aloal(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: so(1) | |
| contains: soraloaly(1) | |
| alod(2): (word length: 4 / group items: 16) | |
| length: min=5, max=8, avg=6.9 | |
| top prefixes: al(3), ot(3), da(2), ok(1), lo(1) | |
| contains: alody(6), okalody(3), alodam(1), alodar(1), dalalody(1), | |
| dalody(1), loralody(1), otalod(1), otalody(1), otesalod(1), | |
| qotalody(1), talody(1), tchalody(1), ychealod(1), yokalod(1), | |
| ytalody(1) | |
| alody(6): (word length: 5 / group items: 9) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: da(2), ok(1), lo(1), ot(1), qo(1) | |
| contains: okalody(3), dalalody(1), dalody(1), loralody(1), otalody(1), | |
| qotalody(1), talody(1), tchalody(1), ytalody(1) | |
| aloiin(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sa(1) | |
| contains: saloiin(1) | |
| alol(9): (word length: 4 / group items: 25) | |
| length: min=5, max=9, avg=6.7 | |
| top prefixes: al(7), ch(4), da(3), sa(2), ok(1) | |
| contains: dalol(7), aloly(3), okalol(3), alols(2), salol(2), alold(1), | |
| aloldy(1), alolfchy(1), alolor(1), alolshedy(1), chalolky(1), | |
| chaloly(1), chealol(1), cheodalol(1), daldalol(1), dalols(1), | |
| lkalol(1), olkalol(1), opchealol(1), oraloly(1), otedalol(1), | |
| qokalol(1), salols(1), shokalol(1), talol(1) | |
| alold(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: al(1) | |
| contains: aloldy(1) | |
| alols(2): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: al(1), da(1), sa(1) | |
| contains: alolshedy(1), dalols(1), salols(1) | |
| aloly(3): (word length: 5 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1), or(1) | |
| contains: chaloly(1), oraloly(1) | |
| alom(6): (word length: 4 / group items: 6) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: qo(2), da(1), ot(1), ra(1), sh(1) | |
| contains: dalom(2), otalom(1), qokalom(1), qotalom(1), ralom(1), | |
| shalom(1) | |
| alor(7): (word length: 4 / group items: 20) | |
| length: min=5, max=9, avg=6.5 | |
| top prefixes: da(3), qo(3), ch(3), ok(2), al(2) | |
| contains: dalor(8), otalor(4), okalor(3), olalor(2), opalor(2), | |
| qokalor(2), alalor(1), alory(1), chalor(1), chdalor(1), | |
| chealor(1), dalorain(1), dalory(1), ldalor(1), ltalor(1), | |
| okedalor(1), pcharalor(1), qokaloro(1), qopalor(1), talor(1) | |
| alory(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: da(1) | |
| contains: dalory(1) | |
| alos(2): (word length: 4 / group items: 8) | |
| length: min=5, max=9, avg=7.4 | |
| top prefixes: al(2), ar(1), ch(1), ka(1), po(1) | |
| contains: aldalosam(1), alosheey(1), aralos(1), chedalos(1), kalos(1), | |
| poalosy(1), pshodalos(1), qokalos(1) | |
| als(4): (word length: 3 / group items: 60) | |
| length: min=4, max=11, avg=7.0 | |
| top prefixes: da(8), ot(8), al(7), ch(5), ok(4) | |
| contains: dals(6), alshey(4), dalshdy(3), otalshedy(3), alshy(2), | |
| chals(2), otalsy(2), ainarals(1), alshdr(1), alshdy(1), | |
| alshedy(1), alshees(1), alsy(1), arals(1), chalsain(1), | |
| chetalshy(1), chosals(1), chotals(1), dalshal(1), dalshedo(1), | |
| dalshedy(1), dalshey(1), dalshy(1), dalsy(1), dkals(1), | |
| kalshey(1), kcheals(1), ldals(1), lshalshy(1), ofalals(1), | |
| okalsalchey(1), okalshdy(1), okalshey(1), okedals(1), olals(1), | |
| olalsy(1), olshalsy(1), oolals(1), opals(1), opalshedy(1), | |
| otals(1), otalsar(1), otalshdy(1), otalshy(1), otchodals(1), | |
| oteeodalsy(1), palshsar(1), pdalshor(1), poalshsal(1), | |
| posalshy(1), qokalsh(1), qokalshedy(1), qotals(1), qotalshy(1), | |
| rals(1), sals(1), salshcthdy(1), salsoiin(1), talshdy(1), | |
| ydals(1) | |
| alshdy(1): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: da(1), ok(1), ot(1), ta(1) | |
| contains: dalshdy(3), okalshdy(1), otalshdy(1), talshdy(1) | |
| alshedy(1): (word length: 7 / group items: 4) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: ot(1), da(1), op(1), qo(1) | |
| contains: otalshedy(3), dalshedy(1), opalshedy(1), qokalshedy(1) | |
| alshey(4): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: da(1), ka(1), ok(1) | |
| contains: dalshey(1), kalshey(1), okalshey(1) | |
| alshy(2): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.7 | |
| top prefixes: ch(1), da(1), ls(1), ot(1), po(1) | |
| contains: chetalshy(1), dalshy(1), lshalshy(1), otalshy(1), posalshy(1), | |
| qotalshy(1) | |
| alsy(1): (word length: 4 / group items: 5) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: ot(2), ol(2), da(1) | |
| contains: otalsy(2), dalsy(1), olalsy(1), olshalsy(1), oteeodalsy(1) | |
| aly(29): (word length: 3 / group items: 114) | |
| length: min=4, max=10, avg=6.5 | |
| top prefixes: ch(21), ok(11), da(7), sh(6), ot(5) | |
| contains: daly(30), okaly(24), otaly(19), qokaly(18), ykaly(6), | |
| chaly(5), qotaly(5), saly(5), ytaly(5), chdaly(3), chealy(3), | |
| chedaly(3), chodaly(3), olaly(3), alys(2), chkaly(2), chokaly(2), | |
| daraly(2), kaly(2), odaly(2), okeedaly(2), okeodaly(2), oraly(2), | |
| oteeoaly(2), raly(2), sheodaly(2), aiiraly(1), ainaly(1), | |
| arairaly(1), araly(1), asaly(1), chalaly(1), chckhaly(1), | |
| chedkaly(1), chekaly(1), cheokaly(1), chfaly(1), chofaly(1), | |
| cholaly(1), cholraly(1), choltaly(1), choraly(1), chpaly(1), | |
| chsaly(1), chtaly(1), cphealy(1), cthdaly(1), cthodoaly(1), | |
| dalaly(1), dalkalytam(1), dalychs(1), dalydal(1), darolaly(1), | |
| dchedaly(1), doiisaly(1), dshaly(1), dykaly(1), kotaly(1), | |
| ldaly(1), lkchaly(1), lkealy(1), lodaly(1), lraly(1), oafoaly(1), | |
| ochaly(1), octhodaly(1), odalaly(1), odalydary(1), oeedaly(1), | |
| oinaly(1), okaikaly(1), okalys(1), okaraly(1), okealy(1), | |
| okeoaly(1), okoaly(1), okodaly(1), okoldaly(1), olaraly(1), | |
| oleealy(1), olkaly(1), olsaly(1), opairaly(1), opaly(1), | |
| opchaly(1), oqotaly(1), orasaly(1), orolaly(1), otalaly(1), | |
| otardaly(1), oteoshaly(1), poaly(1), pydaly(1), pyoaly(1), | |
| qoekaly(1), sairaly(1), seesaly(1), shaly(1), shdaly(1), | |
| shealy(1), shekaly(1), shekealy(1), soraloaly(1), soraly(1), | |
| taly(1), tchaly(1), todaly(1), tshaly(1), yaly(1), ylaly(1), | |
| yoraly(1), yqokaly(1), ytchaly(1), ytodaly(1) | |
| alys(2): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1) | |
| contains: okalys(1) | |
| amam(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: da(1) | |
| contains: damamm(1) | |
| amchy(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: al(1) | |
| contains: alamchy(1) | |
| amd(1): (word length: 3 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: da(1), ka(1), qo(1) | |
| contains: daramdal(1), kamdam(1), qokamdy(1) | |
| amom(1): (word length: 4 / group items: 2) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: da(1), fa(1) | |
| contains: damom(1), famom(1) | |
| amy(1): (word length: 3 / group items: 3) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: ot(2), ch(1) | |
| contains: cheamy(1), otamy(1), otaramy(1) | |
| aol(1): (word length: 3 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: da(1), ka(1) | |
| contains: daoly(1), kaolkar(1) | |
| apy(1): (word length: 3 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: yt(1) | |
| contains: ytapy(1) | |
| araiin(10): (word length: 6 / group items: 11) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: da(2), ok(2), ch(2), ra(1), sa(1) | |
| contains: raraiin(6), saraiin(4), daraiin(2), okaraiin(2), taraiin(2), | |
| charaiin(1), chearaiin(1), daraiinm(1), okcharaiin(1), | |
| otaraiin(1), qoparaiin(1) | |
| arain(2): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: ot(2), ch(1), sa(1), ka(1), yk(1) | |
| contains: charain(3), sarain(3), karainy(1), otarain(1), otararain(1), | |
| ykarain(1) | |
| arair(1): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.2 | |
| top prefixes: ta(2), ar(1), da(1), op(1), pa(1) | |
| contains: arairaly(1), darair(1), oparairdly(1), parair(1), tarair(1), | |
| tarairy(1) | |
| aral(16): (word length: 4 / group items: 35) | |
| length: min=5, max=12, avg=6.7 | |
| top prefixes: da(6), ar(6), ok(4), ot(2), ra(2) | |
| contains: saral(6), okaral(5), otaral(3), daral(2), daraly(2), | |
| otaraldy(2), raral(2), taral(2), ainarals(1), aralary(1), | |
| arald(1), aralos(1), arals(1), araly(1), araral(1), | |
| chkaidararal(1), darala(1), darall(1), daraloikhy(1), dararal(1), | |
| karal(1), ofaral(1), ofaralar(1), okaralet(1), okaraly(1), | |
| okechdaral(1), olaraly(1), oparal(1), pcharalor(1), poaral(1), | |
| pocharal(1), raraldy(1), sharal(1), ydaral(1), ypsharal(1) | |
| arald(1): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ot(1), ra(1) | |
| contains: otaraldy(2), raraldy(1) | |
| arals(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ai(1) | |
| contains: ainarals(1) | |
| araly(1): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.7 | |
| top prefixes: da(1), ok(1), ol(1) | |
| contains: daraly(2), okaraly(1), olaraly(1) | |
| aram(12): (word length: 4 / group items: 24) | |
| length: min=5, max=11, avg=6.8 | |
| top prefixes: da(3), ch(3), ot(3), ok(3), of(2) | |
| contains: daram(7), charam(4), otaram(4), okaram(3), raram(3), | |
| qokaram(2), sharam(2), araram(1), chkchedaram(1), chparam(1), | |
| daramdal(1), darams(1), dolaram(1), oaram(1), ofaram(1), | |
| ofaramoty(1), okeearam(1), okeedaram(1), oparam(1), otaramy(1), | |
| otoloaram(1), saram(1), taram(1), teedaram(1) | |
| arar(7): (word length: 4 / group items: 27) | |
| length: min=5, max=12, avg=7.0 | |
| top prefixes: ar(5), ot(3), da(3), ka(2), sa(1) | |
| contains: otarar(5), sarar(4), arary(3), darar(3), karar(2), polarar(2), | |
| tarar(2), akarar(1), araral(1), araram(1), ararchodaiin(1), | |
| araroy(1), chkaidararal(1), dararal(1), dararda(1), dkarar(1), | |
| kararo(1), lcharar(1), okarar(1), otararain(1), oteoarar(1), | |
| parar(1), pchallarar(1), qokarary(1), sydarary(1), ykesodarar(1), | |
| ytarar(1) | |
| araral(1): (word length: 6 / group items: 2) | |
| length: min=7, max=12, avg=9.5 | |
| top prefixes: ch(1), da(1) | |
| contains: chkaidararal(1), dararal(1) | |
| arary(3): (word length: 5 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1), sy(1) | |
| contains: qokarary(1), sydarary(1) | |
| archol(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otarchol(1) | |
| are(1): (word length: 3 / group items: 6) | |
| length: min=4, max=9, avg=6.5 | |
| top prefixes: ar(1), da(1), ko(1), oc(1), oe(1) | |
| contains: aree(1), dareky(1), korare(1), ochodare(1), oesearees(1), | |
| ytarem(1) | |
| aree(1): (word length: 4 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: oe(1) | |
| contains: oesearees(1) | |
| arg(1): (word length: 3 / group items: 1) | |
| length: min=4, max=4, avg=4.0 | |
| top prefixes: sa(1) | |
| contains: sarg(1) | |
| ariin(2): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ot(1), ch(1), da(1), dy(1), od(1) | |
| contains: otariin(2), chariin(1), dariin(1), dydariin(1), odariin(1) | |
| aro(1): (word length: 3 / group items: 83) | |
| length: min=4, max=11, avg=6.7 | |
| top prefixes: ar(22), da(13), ch(6), or(5), sa(4) | |
| contains: arody(13), arol(12), aror(6), sarol(4), daro(3), darol(3), | |
| darom(3), daror(3), arod(2), arodl(2), karody(2), okarol(2), | |
| tarol(2), araroy(1), arodaim(1), arodchedy(1), arodly(1), | |
| aroiin(1), aroka(1), arolkeey(1), arolky(1), arolor(1), | |
| arolsas(1), arom(1), arorochees(1), arorsheey(1), aros(1), | |
| aroshy(1), aroteey(1), arotey(1), charor(1), chdarol(1), | |
| chkarol(1), chokaro(1), chosaroshol(1), chytaroiin(1), | |
| cpharom(1), daroal(1), darod(1), darodsf(1), darody(1), | |
| darolaly(1), darolm(1), darolsy(1), darordaiin(1), darory(1), | |
| doaro(1), folorarom(1), kararo(1), koldarod(1), koleearol(1), | |
| larorol(1), oaro(1), ofaror(1), opcharoiin(1), oralaror(1), | |
| oraro(1), oraroekeol(1), orarol(1), orarorchy(1), osaro(1), | |
| otaro(1), otarody(1), otodarod(1), otolarol(1), parody(1), | |
| paroiin(1), pchdarody(1), podaroar(1), rarolchl(1), raroshy(1), | |
| saro(1), saroldal(1), sarols(1), tarodaiin(1), taror(1), | |
| taros(1), tchdarol(1), tchoarorshy(1), teodarody(1), | |
| tsheoarom(1), ykaro(1), ytarody(1) | |
| arod(2): (word length: 4 / group items: 17) | |
| length: min=5, max=9, avg=7.0 | |
| top prefixes: ar(5), da(3), ot(2), ka(1), ko(1) | |
| contains: arody(13), arodl(2), karody(2), arodaim(1), arodchedy(1), | |
| arodly(1), darod(1), darodsf(1), darody(1), koldarod(1), | |
| otarody(1), otodarod(1), parody(1), pchdarody(1), tarodaiin(1), | |
| teodarody(1), ytarody(1) | |
| arodl(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ar(1) | |
| contains: arodly(1) | |
| arody(13): (word length: 5 / group items: 7) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: ka(1), da(1), ot(1), pa(1), pc(1) | |
| contains: karody(2), darody(1), otarody(1), parody(1), pchdarody(1), | |
| teodarody(1), ytarody(1) | |
| aroiin(1): (word length: 6 / group items: 3) | |
| length: min=7, max=10, avg=9.0 | |
| top prefixes: ch(1), op(1), pa(1) | |
| contains: chytaroiin(1), opcharoiin(1), paroiin(1) | |
| arol(12): (word length: 4 / group items: 20) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: da(4), ar(4), sa(3), ch(2), ok(1) | |
| contains: sarol(4), darol(3), okarol(2), tarol(2), arolkeey(1), | |
| arolky(1), arolor(1), arolsas(1), chdarol(1), chkarol(1), | |
| darolaly(1), darolm(1), darolsy(1), koleearol(1), orarol(1), | |
| otolarol(1), rarolchl(1), saroldal(1), sarols(1), tchdarol(1) | |
| arom(1): (word length: 4 / group items: 4) | |
| length: min=5, max=9, avg=7.5 | |
| top prefixes: da(1), cp(1), fo(1), ts(1) | |
| contains: darom(3), cpharom(1), folorarom(1), tsheoarom(1) | |
| aror(6): (word length: 4 / group items: 12) | |
| length: min=5, max=11, avg=7.7 | |
| top prefixes: da(3), ar(2), or(2), ch(1), la(1) | |
| contains: daror(3), arorochees(1), arorsheey(1), charor(1), | |
| darordaiin(1), darory(1), larorol(1), ofaror(1), oralaror(1), | |
| orarorchy(1), taror(1), tchoarorshy(1) | |
| aros(1): (word length: 4 / group items: 4) | |
| length: min=5, max=11, avg=7.2 | |
| top prefixes: ar(1), ch(1), ra(1), ta(1) | |
| contains: aroshy(1), chosaroshol(1), raroshy(1), taros(1) | |
| aroshy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ra(1) | |
| contains: raroshy(1) | |
| arshey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1) | |
| contains: darshey(1) | |
| ary(26): (word length: 3 / group items: 56) | |
| length: min=4, max=9, avg=6.3 | |
| top prefixes: qo(7), ch(5), da(4), ot(4), ar(3) | |
| contains: dary(24), okary(11), sary(8), chary(6), kary(5), otary(5), | |
| rary(4), arary(3), opary(3), dalary(2), ltary(2), orary(2), | |
| aralary(1), aryly(1), cheary(1), cheolkary(1), chofary(1), | |
| chsary(1), cphary(1), cthoary(1), dacsary(1), daryry(1), | |
| dolary(1), dytary(1), fary(1), kodary(1), korary(1), ksheoary(1), | |
| loary(1), lshedary(1), oaldary(1), odalydary(1), oeeesary(1), | |
| oeeseary(1), olkeeeary(1), ololary(1), oraryteop(1), osary(1), | |
| otaryly(1), oteeary(1), otydary(1), qodary(1), qokarary(1), | |
| qokary(1), qolkary(1), qopary(1), qotary(1), qotedary(1), | |
| sarydy(1), shdary(1), shodary(1), sorary(1), sydarary(1), | |
| tokary(1), yfary(1), ytary(1) | |
| aryly(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otaryly(1) | |
| asa(1): (word length: 3 / group items: 9) | |
| length: min=5, max=7, avg=5.9 | |
| top prefixes: da(5), as(1), or(1), ot(1), yt(1) | |
| contains: asaly(1), dasady(1), dasaiin(1), dasain(1), dasam(1), | |
| dasar(1), orasaly(1), otasam(1), ytasal(1) | |
| asaly(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: or(1) | |
| contains: orasaly(1) | |
| ash(1): (word length: 3 / group items: 3) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: qo(1), to(1), yt(1) | |
| contains: qokeeashdy(1), todashx(1), ytashy(1) | |
| ataiin(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chataiin(1) | |
| ateey(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: da(1) | |
| contains: dateey(1) | |
| atey(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: oteatey(1) | |
| cfhdy(1): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: ch(2), oc(1), pc(1) | |
| contains: chcfhdy(1), chocfhdy(1), ocfhdy(1), pchcfhdy(1) | |
| cfheo(1): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: cf(3), ch(1) | |
| contains: cfheol(2), cfheody(1), cfheos(1), chcfheor(1) | |
| cfhey(2): (word length: 5 / group items: 5) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: ch(1), oc(1), pc(1), qo(1), sh(1) | |
| contains: chcfhey(1), ocfhey(1), pchecfhey(1), qocfhey(1), shocfhey(1) | |
| cfhol(6): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(1), ol(1) | |
| contains: chcfhol(1), olcfholy(1) | |
| cfhy(6): (word length: 4 / group items: 16) | |
| length: min=5, max=10, avg=7.6 | |
| top prefixes: ch(3), sh(2), fc(2), al(1), cf(1) | |
| contains: chcfhy(2), shocfhy(2), alcfhy(1), cfhyaiin(1), checfhy(1), | |
| chocfhy(1), eeecfhy(1), fchcfhy(1), fchecfhy(1), olchocfhy(1), | |
| qopchcfhy(1), shokocfhy(1), sochorcfhy(1), tcfhy(1), | |
| tdokchcfhy(1), ykocfhy(1) | |
| cha(2): (word length: 3 / group items: 193) | |
| length: min=4, max=11, avg=6.9 | |
| top prefixes: ch(60), qo(19), ok(10), ot(8), pc(8) | |
| contains: char(72), chal(48), chaiin(45), cham(20), chain(18), chan(11), | |
| chary(6), lchal(6), otcham(6), otchar(6), chaly(5), dchaiin(5), | |
| charam(4), dchar(4), okchar(4), otchal(4), tchar(4), charain(3), | |
| kchaiin(3), lchar(3), okchal(3), opchal(3), pchal(3), pchar(3), | |
| qotchar(3), ychain(3), chalkar(2), chals(2), chokchaiin(2), | |
| dchal(2), kchar(2), ochar(2), ofchar(2), okchaiin(2), okchan(2), | |
| olchar(2), opchar(2), otchaiin(2), qokchaiin(2), qopchar(2), | |
| qotchaiin(2), tchal(2), ychar(2), aiirchar(1), chad(1), | |
| chadaiin(1), chady(1), chaiiin(1), chaiind(1), chaiir(1), | |
| chaim(1), chaindy(1), chair(1), chairal(1), chakain(1), | |
| chakeey(1), chakod(1), chalaiin(1), chalal(1), chalaly(1), | |
| chald(1), chalg(1), chalkain(1), chalkeedy(1), chalkeeedy(1), | |
| chalkeey(1), chalolky(1), chaloly(1), chalor(1), chalr(1), | |
| chalsain(1), chaltar(1), chap(1), chapchy(1), charaiin(1), | |
| chariin(1), charor(1), chas(1), chataiin(1), cheolchal(1), | |
| cheotchar(1), chepcham(1), chepchar(1), chetchaiin(1), | |
| chochar(1), choetchaldy(1), cholchaiin(1), cholcham(1), | |
| chopchal(1), chpchar(1), chypcham(1), cphchar(1), cthaichar(1), | |
| dchain(1), dchairam(1), dcham(1), dchochar(1), dtchan(1), | |
| dykchal(1), echa(1), etchal(1), fcham(1), iirchal(1), kchain(1), | |
| kchal(1), kchaldy(1), kcham(1), kchochaiin(1), kochardy(1), | |
| lchaiin(1), lchain(1), lcham(1), lcharar(1), lfchal(1), | |
| lkchaly(1), ochaiin(1), ochaly(1), ochkchar(1), odchaiin(1), | |
| ofchain(1), okaircham(1), okalchal(1), okchafdy(1), okchain(1), | |
| okcharaiin(1), okokchal(1), olcha(1), olchad(1), olchain(1), | |
| olchal(1), olcham(1), olfcham(1), opchaiin(1), opchaikhy(1), | |
| opchaldy(1), opchaly(1), opcharoiin(1), orchaiin(1), oschaiin(1), | |
| otalchal(1), otchald(1), otchetchar(1), otechar(1), palchar(1), | |
| pchafdan(1), pchaiin(1), pchair(1), pchallarar(1), pcharalor(1), | |
| pcharasy(1), pochaiin(1), pocharal(1), polchal(1), pychal(1), | |
| qchar(1), qetchar(1), qochaiin(1), qochar(1), qoekchar(1), | |
| qofchal(1), qokalchal(1), qokalchar(1), qokchain(1), qokchal(1), | |
| qokchar(1), qopchaiin(1), qopchais(1), qopcham(1), qorchain(1), | |
| qotchain(1), qotcham(1), rchar(1), rchealcham(1), schaiin(1), | |
| schain(1), schar(1), scharchy(1), sotchaiin(1), tchaiin(1), | |
| tchain(1), tchalody(1), tchaly(1), ychair(1), ycham(1), | |
| ykchaiin(1), ykchal(1), ypchaiin(1), ypchal(1), ypchar(1), | |
| ytchaiin(1), ytchaly(1), ytchar(1), ytchas(1) | |
| chad(1): (word length: 4 / group items: 3) | |
| length: min=5, max=8, avg=6.3 | |
| top prefixes: ch(2), ol(1) | |
| contains: chadaiin(1), chady(1), olchad(1) | |
| chaiin(45): (word length: 6 / group items: 27) | |
| length: min=7, max=10, avg=8.1 | |
| top prefixes: ch(4), qo(4), kc(2), dc(1), ok(1) | |
| contains: dchaiin(5), kchaiin(3), chokchaiin(2), okchaiin(2), | |
| otchaiin(2), qokchaiin(2), qotchaiin(2), chaiind(1), | |
| chetchaiin(1), cholchaiin(1), kchochaiin(1), lchaiin(1), | |
| ochaiin(1), odchaiin(1), opchaiin(1), orchaiin(1), oschaiin(1), | |
| pchaiin(1), pochaiin(1), qochaiin(1), qopchaiin(1), schaiin(1), | |
| sotchaiin(1), tchaiin(1), ykchaiin(1), ypchaiin(1), ytchaiin(1) | |
| chain(18): (word length: 5 / group items: 13) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: qo(3), yc(1), ch(1), dc(1), kc(1) | |
| contains: ychain(3), chaindy(1), dchain(1), kchain(1), lchain(1), | |
| ofchain(1), okchain(1), olchain(1), qokchain(1), qorchain(1), | |
| qotchain(1), schain(1), tchain(1) | |
| chair(1): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ch(1), dc(1), pc(1), yc(1) | |
| contains: chairal(1), dchairam(1), pchair(1), ychair(1) | |
| chal(48): (word length: 4 / group items: 54) | |
| length: min=5, max=11, avg=6.9 | |
| top prefixes: ch(21), ot(3), ok(3), op(3), tc(3) | |
| contains: lchal(6), chaly(5), otchal(4), okchal(3), opchal(3), pchal(3), | |
| chalkar(2), chals(2), dchal(2), tchal(2), chalaiin(1), chalal(1), | |
| chalaly(1), chald(1), chalg(1), chalkain(1), chalkeedy(1), | |
| chalkeeedy(1), chalkeey(1), chalolky(1), chaloly(1), chalor(1), | |
| chalr(1), chalsain(1), chaltar(1), cheolchal(1), choetchaldy(1), | |
| chopchal(1), dykchal(1), etchal(1), iirchal(1), kchal(1), | |
| kchaldy(1), lfchal(1), lkchaly(1), ochaly(1), okalchal(1), | |
| okokchal(1), olchal(1), opchaldy(1), opchaly(1), otalchal(1), | |
| otchald(1), pchallarar(1), polchal(1), pychal(1), qofchal(1), | |
| qokalchal(1), qokchal(1), tchalody(1), tchaly(1), ykchal(1), | |
| ypchal(1), ytchaly(1) | |
| chalal(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chalaly(1) | |
| chald(1): (word length: 5 / group items: 4) | |
| length: min=7, max=11, avg=8.2 | |
| top prefixes: ch(1), kc(1), op(1), ot(1) | |
| contains: choetchaldy(1), kchaldy(1), opchaldy(1), otchald(1) | |
| chals(2): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chalsain(1) | |
| chaly(5): (word length: 5 / group items: 5) | |
| length: min=6, max=7, avg=6.6 | |
| top prefixes: lk(1), oc(1), op(1), tc(1), yt(1) | |
| contains: lkchaly(1), ochaly(1), opchaly(1), tchaly(1), ytchaly(1) | |
| cham(20): (word length: 4 / group items: 15) | |
| length: min=5, max=10, avg=6.7 | |
| top prefixes: ch(3), ol(2), qo(2), ot(1), dc(1) | |
| contains: otcham(6), chepcham(1), cholcham(1), chypcham(1), dcham(1), | |
| fcham(1), kcham(1), lcham(1), okaircham(1), olcham(1), | |
| olfcham(1), qopcham(1), qotcham(1), rchealcham(1), ycham(1) | |
| chan(11): (word length: 4 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1), dt(1) | |
| contains: okchan(2), dtchan(1) | |
| chap(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chapchy(1) | |
| char(72): (word length: 4 / group items: 50) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: ch(10), qo(6), ot(3), pc(3), dc(2) | |
| contains: chary(6), otchar(6), charam(4), dchar(4), okchar(4), tchar(4), | |
| charain(3), lchar(3), pchar(3), qotchar(3), kchar(2), ochar(2), | |
| ofchar(2), olchar(2), opchar(2), qopchar(2), ychar(2), | |
| aiirchar(1), charaiin(1), chariin(1), charor(1), cheotchar(1), | |
| chepchar(1), chochar(1), chpchar(1), cphchar(1), cthaichar(1), | |
| dchochar(1), kochardy(1), lcharar(1), ochkchar(1), okcharaiin(1), | |
| opcharoiin(1), otchetchar(1), otechar(1), palchar(1), | |
| pcharalor(1), pcharasy(1), pocharal(1), qchar(1), qetchar(1), | |
| qochar(1), qoekchar(1), qokalchar(1), qokchar(1), rchar(1), | |
| schar(1), scharchy(1), ypchar(1), ytchar(1) | |
| charaiin(1): (word length: 8 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ok(1) | |
| contains: okcharaiin(1) | |
| chas(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: yt(1) | |
| contains: ytchas(1) | |
| chcfhdy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: pc(1) | |
| contains: pchcfhdy(1) | |
| chcfhy(2): (word length: 6 / group items: 3) | |
| length: min=7, max=10, avg=8.7 | |
| top prefixes: fc(1), qo(1), td(1) | |
| contains: fchcfhy(1), qopchcfhy(1), tdokchcfhy(1) | |
| chchs(1): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(1), qo(1) | |
| contains: chchsty(1), qopchchs(1) | |
| chchy(2): (word length: 5 / group items: 5) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: ch(1), dc(1), qo(1), rc(1), yt(1) | |
| contains: choekchchy(1), dchchy(1), qokechchy(1), rchchy(1), ytchchy(1) | |
| chckh(3): (word length: 5 / group items: 34) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: ch(26), dc(2), da(1), lc(1), ol(1) | |
| contains: chckhy(140), chckhey(30), chckhdy(13), chckhedy(11), | |
| chckhhy(9), chckhal(5), chckhd(4), chckhaiin(3), dchckhy(3), | |
| chckheody(2), chckhol(2), chckhor(2), chckhaly(1), chckham(1), | |
| chckhan(1), chckheal(1), chckheed(1), chckheey(1), chckhhhy(1), | |
| chckhod(1), chckhoda(1), chckhody(1), chckhom(1), chckhoy(1), | |
| chckhs(1), chckhyd(1), chckhyfchy(1), dalchckhy(1), dchckhedy(1), | |
| lchckhy(1), olchckhy(1), qokechckhy(1), schckhy(1), ychckhy(1) | |
| chckhal(5): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chckhaly(1) | |
| chckhd(4): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chckhdy(13) | |
| chckhedy(11): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: dc(1) | |
| contains: dchckhedy(1) | |
| chckhod(1): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(2) | |
| contains: chckhoda(1), chckhody(1) | |
| chckhy(140): (word length: 6 / group items: 9) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: ch(2), dc(1), da(1), lc(1), ol(1) | |
| contains: dchckhy(3), chckhyd(1), chckhyfchy(1), dalchckhy(1), | |
| lchckhy(1), olchckhy(1), qokechckhy(1), schckhy(1), ychckhy(1) | |
| chcphdy(2): (word length: 7 / group items: 1) | |
| length: min=12, max=12, avg=12.0 | |
| top prefixes: ch(1) | |
| contains: chofochcphdy(1) | |
| chcphedy(3): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: lc(1) | |
| contains: lchcphedy(1) | |
| chcs(1): (word length: 4 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: kc(1), yt(1) | |
| contains: kchcsey(1), ytchcseey(1) | |
| chct(1): (word length: 4 / group items: 34) | |
| length: min=5, max=11, avg=7.4 | |
| top prefixes: ch(24), or(2), ol(1), ct(1), dc(1) | |
| contains: chcthy(79), chcthdy(7), chcthedy(7), chcthey(7), chcthhy(7), | |
| chcth(3), chctho(3), chcthody(3), chcthal(2), chctham(2), | |
| olchcthy(2), orchcthy(2), chcta(1), chctey(1), chcthaiin(1), | |
| chcthain(1), chcthar(1), chcthd(1), chcthed(1), chcthihy(1), | |
| chcthod(1), chcthor(1), chcthosy(1), chcthso(1), chcty(1), | |
| cheolchcthy(1), cthachcthy(1), dchcthy(1), lchcthy(1), | |
| orchcthdy(1), otolchcthy(1), schcthy(1), tchcthy(1), ychcthod(1) | |
| chcth(3): (word length: 5 / group items: 30) | |
| length: min=6, max=11, avg=7.6 | |
| top prefixes: ch(20), or(2), ol(1), ct(1), dc(1) | |
| contains: chcthy(79), chcthdy(7), chcthedy(7), chcthey(7), chcthhy(7), | |
| chctho(3), chcthody(3), chcthal(2), chctham(2), olchcthy(2), | |
| orchcthy(2), chcthaiin(1), chcthain(1), chcthar(1), chcthd(1), | |
| chcthed(1), chcthihy(1), chcthod(1), chcthor(1), chcthosy(1), | |
| chcthso(1), cheolchcthy(1), cthachcthy(1), dchcthy(1), | |
| lchcthy(1), orchcthdy(1), otolchcthy(1), schcthy(1), tchcthy(1), | |
| ychcthod(1) | |
| chcthd(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(1), or(1) | |
| contains: chcthdy(7), orchcthdy(1) | |
| chcthdy(7): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: or(1) | |
| contains: orchcthdy(1) | |
| chcthed(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chcthedy(7) | |
| chctho(3): (word length: 6 / group items: 5) | |
| length: min=7, max=8, avg=7.6 | |
| top prefixes: ch(4), yc(1) | |
| contains: chcthody(3), chcthod(1), chcthor(1), chcthosy(1), ychcthod(1) | |
| chcthod(1): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1), yc(1) | |
| contains: chcthody(3), ychcthod(1) | |
| chcthy(79): (word length: 6 / group items: 9) | |
| length: min=7, max=11, avg=8.3 | |
| top prefixes: ol(1), or(1), ch(1), ct(1), dc(1) | |
| contains: olchcthy(2), orchcthy(2), cheolchcthy(1), cthachcthy(1), | |
| dchcthy(1), lchcthy(1), otolchcthy(1), schcthy(1), tchcthy(1) | |
| chd(8): (word length: 3 / group items: 242) | |
| length: min=4, max=12, avg=7.1 | |
| top prefixes: ch(51), qo(25), pc(16), ot(10), ok(10) | |
| contains: chdy(152), qokchdy(56), otchdy(30), qotchdy(23), okchdy(21), | |
| chdar(20), kchdy(20), chdal(19), opchdy(19), lchdy(18), | |
| chdaiin(16), qopchdy(15), tchdy(15), pchdy(11), chdam(10), | |
| ytchdy(10), chdain(9), chdor(8), dchdy(8), olchdy(8), ykchdy(8), | |
| okchd(6), qokchd(6), ypchdy(6), dalchdy(5), lkchdy(5), ofchdy(5), | |
| otechdy(5), pchdar(5), fchdy(4), kechdy(4), okechdy(4), | |
| olkchdy(4), pchdair(4), qotchd(4), chdaly(3), okchdar(3), | |
| otchdal(3), pchdaiin(3), qekchdy(3), qofchdy(3), qokechdy(3), | |
| schdy(3), alchdy(2), chdair(2), chdedy(2), chdol(2), chotchdy(2), | |
| dchdar(2), dlchd(2), kchdal(2), lchdain(2), lchdal(2), lpchdy(2), | |
| okchdal(2), olchdaiin(2), pchdam(2), pchdol(2), polchdy(2), | |
| qokalchdy(2), shefchdy(2), tchdaiin(2), tchdor(2), ychdy(2), | |
| adairchdy(1), alchd(1), alkchdy(1), alpchdar(1), alpchdy(1), | |
| amchd(1), cfhekchdy(1), chchdy(1), chda(1), chdaiirsainy(1), | |
| chdail(1), chdairod(1), chdalal(1), chdalchdy(1), chdaldy(1), | |
| chdalkair(1), chdalor(1), chdarol(1), chdchdy(1), chdchol(1), | |
| chdchy(1), chddy(1), chdeey(1), chdlcty(1), chdo(1), | |
| chdodaiin(1), chdody(1), chdolaiin(1), chdoly(1), chdos(1), | |
| chdykchedy(1), chdypdaiin(1), chdyshdy(1), chechdaiin(1), | |
| cheepchdy(1), chefchdy(1), chekchdy(1), cheolchdaiin(1), | |
| cheolchdy(1), chepchdy(1), chetchdy(1), chkchdar(1), chlchd(1), | |
| chofchdy(1), cholpchd(1), chopchdy(1), ckhchdy(1), dalchd(1), | |
| darchdar(1), dchd(1), dchdal(1), dchdaldy(1), dchdas(1), | |
| dchdor(1), deeschdy(1), dolchds(1), dorchdy(1), dyfchdy(1), | |
| dytchdy(1), fchdar(1), fdeechdy(1), kalchdy(1), kchdaiin(1), | |
| kchdaldy(1), kchdar(1), kchdol(1), kchdpy(1), kcheedchdy(1), | |
| kcholchdar(1), keechdy(1), kolchdy(1), kolfchdy(1), kschdy(1), | |
| lchdol(1), lchechdy(1), lchpchdy(1), lfchdy(1), lkechdy(1), | |
| lpchdain(1), ltchdy(1), oalchdm(1), ochdy(1), odarchdy(1), | |
| odchd(1), odchdy(1), oekchdy(1), oetchdy(1), ofchdady(1), | |
| ofchdysd(1), okalchdy(1), okchdam(1), okchdldlo(1), okchdpchy(1), | |
| okechdaral(1), olchdar(1), olkchdal(1), olkeechdy(1), olpchdy(1), | |
| oltchdy(1), opalchdy(1), opchdain(1), opchdal(1), opchdar(1), | |
| opchdard(1), orkchdy(1), otchd(1), otchdain(1), otchdo(1), | |
| otechd(1), otlchdain(1), otolchd(1), otychdy(1), palchd(1), | |
| parchdy(1), pchd(1), pchdairor(1), pchdal(1), pchdarody(1), | |
| pchdeedy(1), pchdlar(1), pchdoiin(1), pchedchdy(1), | |
| pcholkchdy(1), pchtchdy(1), polalchdy(1), pychdar(1), | |
| pydchdom(1), qetchdy(1), qochdaiin(1), qoeechdy(1), | |
| qofchdaiin(1), qofchdal(1), qofchdar(1), qokairolchdy(1), | |
| qokchdain(1), qokchdar(1), qokchdyl(1), qokolkchdy(1), | |
| qokychdy(1), qolchdy(1), qopchd(1), qotchdain(1), qotchdal(1), | |
| qotchdar(1), qotolchd(1), rkchdy(1), shchdy(1), shdchdy(1), | |
| shekalchdy(1), shepchdy(1), sheytchdy(1), shorchdy(1), | |
| shotchdy(1), skchdy(1), solchd(1), solpchd(1), sotchdaiin(1), | |
| sotchdy(1), sshkchdy(1), tchd(1), tchdarol(1), tchddy(1), | |
| tchdoltdy(1), tchdys(1), tolchd(1), tolchdaiin(1), tolkchdy(1), | |
| ychdain(1), yfchdy(1), ykchdar(1), ykchdg(1), ykchochdy(1), | |
| ylchdy(1), ypchd(1), ypchdaiin(1), ypchdair(1), ypchdar(1), | |
| ytchdam(1) | |
| chda(1): (word length: 4 / group items: 76) | |
| length: min=5, max=12, avg=7.7 | |
| top prefixes: ch(19), qo(9), pc(7), kc(5), ok(4) | |
| contains: chdar(20), chdal(19), chdaiin(16), chdam(10), chdain(9), | |
| pchdar(5), pchdair(4), chdaly(3), okchdar(3), otchdal(3), | |
| pchdaiin(3), chdair(2), dchdar(2), kchdal(2), lchdain(2), | |
| lchdal(2), okchdal(2), olchdaiin(2), pchdam(2), tchdaiin(2), | |
| alpchdar(1), chdaiirsainy(1), chdail(1), chdairod(1), chdalal(1), | |
| chdalchdy(1), chdaldy(1), chdalkair(1), chdalor(1), chdarol(1), | |
| chechdaiin(1), cheolchdaiin(1), chkchdar(1), darchdar(1), | |
| dchdal(1), dchdaldy(1), dchdas(1), fchdar(1), kchdaiin(1), | |
| kchdaldy(1), kchdar(1), kcholchdar(1), lpchdain(1), ofchdady(1), | |
| okchdam(1), okechdaral(1), olchdar(1), olkchdal(1), opchdain(1), | |
| opchdal(1), opchdar(1), opchdard(1), otchdain(1), otlchdain(1), | |
| pchdairor(1), pchdal(1), pchdarody(1), pychdar(1), qochdaiin(1), | |
| qofchdaiin(1), qofchdal(1), qofchdar(1), qokchdain(1), | |
| qokchdar(1), qotchdain(1), qotchdal(1), qotchdar(1), | |
| sotchdaiin(1), tchdarol(1), tolchdaiin(1), ychdain(1), | |
| ykchdar(1), ypchdaiin(1), ypchdair(1), ypchdar(1), ytchdam(1) | |
| chdaiin(16): (word length: 7 / group items: 11) | |
| length: min=8, max=12, avg=9.4 | |
| top prefixes: ch(2), qo(2), pc(1), ol(1), tc(1) | |
| contains: pchdaiin(3), olchdaiin(2), tchdaiin(2), chechdaiin(1), | |
| cheolchdaiin(1), kchdaiin(1), qochdaiin(1), qofchdaiin(1), | |
| sotchdaiin(1), tolchdaiin(1), ypchdaiin(1) | |
| chdain(9): (word length: 6 / group items: 8) | |
| length: min=7, max=9, avg=8.1 | |
| top prefixes: ot(2), qo(2), lc(1), lp(1), op(1) | |
| contains: lchdain(2), lpchdain(1), opchdain(1), otchdain(1), | |
| otlchdain(1), qokchdain(1), qotchdain(1), ychdain(1) | |
| chdair(2): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: pc(2), ch(1), yp(1) | |
| contains: pchdair(4), chdairod(1), pchdairor(1), ypchdair(1) | |
| chdal(19): (word length: 5 / group items: 18) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: ch(6), kc(2), dc(2), qo(2), ot(1) | |
| contains: chdaly(3), otchdal(3), kchdal(2), lchdal(2), okchdal(2), | |
| chdalal(1), chdalchdy(1), chdaldy(1), chdalkair(1), chdalor(1), | |
| dchdal(1), dchdaldy(1), kchdaldy(1), olkchdal(1), opchdal(1), | |
| pchdal(1), qofchdal(1), qotchdal(1) | |
| chdaldy(1): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: dc(1), kc(1) | |
| contains: dchdaldy(1), kchdaldy(1) | |
| chdam(10): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.7 | |
| top prefixes: pc(1), ok(1), yt(1) | |
| contains: pchdam(2), okchdam(1), ytchdam(1) | |
| chdar(20): (word length: 5 / group items: 22) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: qo(3), pc(2), ok(2), ch(2), kc(2) | |
| contains: pchdar(5), okchdar(3), dchdar(2), alpchdar(1), chdarol(1), | |
| chkchdar(1), darchdar(1), fchdar(1), kchdar(1), kcholchdar(1), | |
| okechdaral(1), olchdar(1), opchdar(1), opchdard(1), pchdarody(1), | |
| pychdar(1), qofchdar(1), qokchdar(1), qotchdar(1), tchdarol(1), | |
| ykchdar(1), ypchdar(1) | |
| chdarol(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: tc(1) | |
| contains: tchdarol(1) | |
| chddy(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: tc(1) | |
| contains: tchddy(1) | |
| chdo(1): (word length: 4 / group items: 16) | |
| length: min=5, max=9, avg=6.6 | |
| top prefixes: ch(7), pc(2), tc(2), dc(1), kc(1) | |
| contains: chdor(8), chdol(2), pchdol(2), tchdor(2), chdodaiin(1), | |
| chdody(1), chdolaiin(1), chdoly(1), chdos(1), dchdor(1), | |
| kchdol(1), lchdol(1), otchdo(1), pchdoiin(1), pydchdom(1), | |
| tchdoltdy(1) | |
| chdol(2): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: ch(2), pc(1), kc(1), lc(1), tc(1) | |
| contains: pchdol(2), chdolaiin(1), chdoly(1), kchdol(1), lchdol(1), | |
| tchdoltdy(1) | |
| chdor(8): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: tc(1), dc(1) | |
| contains: tchdor(2), dchdor(1) | |
| chdy(152): (word length: 4 / group items: 110) | |
| length: min=5, max=12, avg=7.3 | |
| top prefixes: ch(15), qo(12), sh(8), ol(5), pc(4) | |
| contains: qokchdy(56), otchdy(30), qotchdy(23), okchdy(21), kchdy(20), | |
| opchdy(19), lchdy(18), qopchdy(15), tchdy(15), pchdy(11), | |
| ytchdy(10), dchdy(8), olchdy(8), ykchdy(8), ypchdy(6), | |
| dalchdy(5), lkchdy(5), ofchdy(5), otechdy(5), fchdy(4), | |
| kechdy(4), okechdy(4), olkchdy(4), qekchdy(3), qofchdy(3), | |
| qokechdy(3), schdy(3), alchdy(2), chotchdy(2), lpchdy(2), | |
| polchdy(2), qokalchdy(2), shefchdy(2), ychdy(2), adairchdy(1), | |
| alkchdy(1), alpchdy(1), cfhekchdy(1), chchdy(1), chdalchdy(1), | |
| chdchdy(1), chdykchedy(1), chdypdaiin(1), chdyshdy(1), | |
| cheepchdy(1), chefchdy(1), chekchdy(1), cheolchdy(1), | |
| chepchdy(1), chetchdy(1), chofchdy(1), chopchdy(1), ckhchdy(1), | |
| deeschdy(1), dorchdy(1), dyfchdy(1), dytchdy(1), fdeechdy(1), | |
| kalchdy(1), kcheedchdy(1), keechdy(1), kolchdy(1), kolfchdy(1), | |
| kschdy(1), lchechdy(1), lchpchdy(1), lfchdy(1), lkechdy(1), | |
| ltchdy(1), ochdy(1), odarchdy(1), odchdy(1), oekchdy(1), | |
| oetchdy(1), ofchdysd(1), okalchdy(1), olkeechdy(1), olpchdy(1), | |
| oltchdy(1), opalchdy(1), orkchdy(1), otychdy(1), parchdy(1), | |
| pchedchdy(1), pcholkchdy(1), pchtchdy(1), polalchdy(1), | |
| qetchdy(1), qoeechdy(1), qokairolchdy(1), qokchdyl(1), | |
| qokolkchdy(1), qokychdy(1), qolchdy(1), rkchdy(1), shchdy(1), | |
| shdchdy(1), shekalchdy(1), shepchdy(1), sheytchdy(1), | |
| shorchdy(1), shotchdy(1), skchdy(1), sotchdy(1), sshkchdy(1), | |
| tchdys(1), tolkchdy(1), yfchdy(1), ykchochdy(1), ylchdy(1) | |
| che(2): (word length: 3 / group items: 1215) | |
| length: min=4, max=14, avg=7.5 | |
| top prefixes: ch(449), qo(81), yc(52), ol(43), ot(43) | |
| contains: chedy(501), chey(344), cheey(174), cheol(173), lchedy(119), | |
| cheor(100), cheody(89), cheky(65), cheo(65), cheedy(59), | |
| chear(51), opchedy(50), checkhy(47), lchey(45), qokchedy(39), | |
| olchedy(38), ches(36), otchedy(34), pchedy(34), chees(33), | |
| cheos(33), tchedy(33), chedaiin(32), okchey(32), qopchedy(32), | |
| otchey(31), cheal(30), chedar(30), qokchey(30), olchey(29), | |
| opchey(29), checthy(28), dchedy(27), chety(25), okchedy(25), | |
| chedal(24), cheeky(24), qotchedy(24), ycheey(24), ched(23), | |
| kchedy(22), tchey(22), kchey(21), chedain(19), qotchey(19), | |
| dchey(18), cheeo(17), ychey(17), lkchedy(16), ycheo(15), | |
| cheeor(14), ycheol(14), dcheey(13), lcheey(13), olcheey(13), | |
| ychedy(13), cheeody(12), chekal(12), pchey(12), ypchedy(12), | |
| ytchey(12), cheodaiin(11), fchedy(11), pchedar(11), pcheol(11), | |
| qolchey(11), rchedy(11), checkhey(10), cheockhy(10), cheoky(10), | |
| cheom(10), qolchedy(10), qopchey(10), ytchedy(10), cheeey(9), | |
| cheeol(9), lcheedy(9), rchey(9), ycheor(9), chekaiin(8), | |
| chekar(8), cheodain(8), dcheol(8), lcheol(8), lkchey(8), | |
| ochedy(8), ochey(8), olcheol(8), opcheol(8), qofchedy(8), | |
| solchedy(8), ycheeo(8), cheeos(7), chekain(7), chekey(7), | |
| cheodal(7), chepy(7), dcheo(7), ofchedy(7), okcheey(7), | |
| pcheody(7), schedy(7), tcheo(7), ycheedy(7), ykchedy(7), | |
| chedam(6), chedol(6), cheekey(6), chekeey(6), chetar(6), | |
| lched(6), lpchedy(6), olkchedy(6), orchey(6), polchedy(6), | |
| qochey(6), tcheey(6), tcheody(6), tcheol(6), ykchey(6), cheam(5), | |
| cheedar(5), chekchy(5), cheoar(5), cheocthy(5), cheod(5), | |
| cheokeey(5), cheoldy(5), cheoly(5), cheoty(5), cher(5), | |
| chetain(5), chetey(5), kcheey(5), kcheody(5), kcheol(5), | |
| ofchey(5), opcheey(5), pchedal(5), pcheor(5), qotched(5), | |
| schey(5), ypchey(5), alchedy(4), alchey(4), checthey(4), | |
| cheedaiin(4), cheeteey(4), chekedy(4), chekeedy(4), cheodar(4), | |
| cheokain(4), cheoy(4), chep(4), chepar(4), chepchy(4), | |
| chetchy(4), dalchedy(4), dcheedy(4), dcheor(4), fcheey(4), | |
| kcheo(4), kcheor(4), lcheo(4), okechedy(4), olfchedy(4), | |
| olkchey(4), olpchedy(4), opchedaiin(4), otcheor(4), pchedaiin(4), | |
| pcheey(4), qokechedy(4), qopcheey(4), qotcheedy(4), qotcheo(4), | |
| rcheey(4), solchey(4), ychedar(4), cheaiin(3), chealy(3), | |
| chedaly(3), cheekain(3), cheen(3), cheesy(3), cheety(3), | |
| chefchy(3), cheg(3), chek(3), chekody(3), chekol(3), cheokey(3), | |
| cheols(3), cheory(3), chesy(3), chetaiin(3), chetedy(3), | |
| cheteey(3), cheyky(3), chokchey(3), chotchey(3), dched(3), | |
| dolchedy(3), kechedy(3), lcheam(3), lcheckhy(3), lcheody(3), | |
| lkcheo(3), lkechedy(3), ocheey(3), okcheody(3), olched(3), | |
| olcheedy(3), olcheor(3), opcheedy(3), opcheody(3), otcheey(3), | |
| otches(3), pcheo(3), pcheodar(3), qofcheol(3), qokcheo(3), | |
| qokcheody(3), qotcheol(3), tchedor(3), tcheor(3), yched(3), | |
| ycheody(3), ycheoky(3), yfchey(3), ykcheor(3), cheain(2), | |
| chean(2), chechey(2), checkhdy(2), checkhed(2), checkhol(2), | |
| checphey(2), checthedy(2), chedaiiin(2), chedo(2), chedor(2), | |
| cheeaiin(2), cheeal(2), cheed(2), cheedain(2), cheef(2), | |
| cheekaiin(2), cheeod(2), cheer(2), cheked(2), chekeol(2), | |
| cheoaiin(2), cheoal(2), cheockhey(2), cheodam(2), cheodor(2), | |
| cheok(2), cheokaiin(2), cheokal(2), cheokam(2), cheokedy(2), | |
| cheokeeo(2), cheokeol(2), cheolkeedy(2), cheolor(2), cheorol(2), | |
| cheotey(2), cheotol(2), chepchedy(2), chepchey(2), chetody(2), | |
| chokchedy(2), cholchedy(2), cholchey(2), chopchedy(2), | |
| chopchey(2), darchedy(2), dcheeody(2), dcheeos(2), dcheody(2), | |
| dcheoky(2), dcheos(2), dolchey(2), dychedy(2), fcheody(2), | |
| fchey(2), kcheeor(2), kcheodaiin(2), lcheal(2), lchedam(2), | |
| lchedar(2), lchees(2), lcheod(2), lcheor(2), lfchedy(2), | |
| lkches(2), lkechey(2), ocheos(2), okalchedy(2), okchedam(2), | |
| okcheo(2), okcheor(2), okechey(2), okochey(2), okolchey(2), | |
| olchear(2), olcheo(2), olcheody(2), olfchey(2), olpchey(2), | |
| oltchey(2), opchear(2), opched(2), opcheor(2), opches(2), | |
| orchedy(2), orcheey(2), otcheody(2), otochedy(2), otolchey(2), | |
| pchear(2), pchedain(2), pcheedy(2), pcheeody(2), pcheos(2), | |
| pochedy(2), polched(2), polchey(2), qochedy(2), qocheey(2), | |
| qokcheedy(2), qokcheey(2), qokcheor(2), qolcheedy(2), | |
| qolcheol(2), qopcheedy(2), qopcheody(2), qopcheos(2), | |
| qotcheaiin(2), qotchedar(2), qotolcheo(2), rcheky(2), | |
| salchedy(2), scheaiin(2), scheey(2), scheo(2), scheol(2), | |
| scheor(2), sches(2), shchey(2), shkchedy(2), shopchey(2), | |
| solcheol(2), tchedar(2), tcheos(2), tocheo(2), ycheain(2), | |
| ychear(2), ychedaiin(2), ychedal(2), ycheeody(2), ychees(2), | |
| ychekchy(2), ycheod(2), yches(2), acheody(1), adchey(1), | |
| akchedy(1), alched(1), alchedar(1), alcheey(1), alcheky(1), | |
| alches(1), archeey(1), archeody(1), archeor(1), arodchedy(1), | |
| arorochees(1), chcheey(1), chcheky(1), chchetal(1), | |
| chdykchedy(1), chead(1), cheady(1), cheaikhy(1), chealol(1), | |
| chealor(1), chealror(1), cheamar(1), cheamy(1), chearaiin(1), | |
| cheary(1), cheas(1), checfhy(1), chechdaiin(1), chechol(1), | |
| chechy(1), checkhd(1), checkhedy(1), checkho(1), checphedy(1), | |
| checthal(1), chectham(1), checthdy(1), checthhy(1), cheda(1), | |
| chedacphy(1), chedady(1), chedair(1), chedalkedy(1), chedalos(1), | |
| chedan(1), chedas(1), chedchey(1), chedchy(1), chedees(1), | |
| chedeey(1), chedey(1), chedkain(1), chedkaly(1), chedkel(1), | |
| chedky(1), chedl(1), chedos(1), cheds(1), chedydy(1), | |
| chedykar(1), chedyl(1), chedyor(1), chedyr(1), chedyteokain(1), | |
| chedytey(1), chedyty(1), chee(1), cheea(1), cheear(1), | |
| cheeckhody(1), cheecpheey(1), cheecthy(1), cheedalaiin(1), | |
| cheedls(1), cheeeal(1), cheeedaiin(1), cheeen(1), cheeeo(1), | |
| cheees(1), cheeetchol(1), cheeety(1), cheefar(1), cheefy(1), | |
| cheeg(1), cheeir(1), cheekan(1), cheekchey(1), cheekdam(1), | |
| cheekeey(1), cheekeo(1), cheekeody(1), cheel(1), cheem(1), | |
| cheeodam(1), cheeods(1), cheeoekey(1), cheeokeey(1), | |
| cheeokseo(1), cheeoldair(1), cheeoldy(1), cheeool(1), | |
| cheeorfor(1), cheeotaiin(1), cheeoy(1), cheepaiin(1), | |
| cheepchdy(1), cheesees(1), cheet(1), cheeta(1), cheetam(1), | |
| cheetar(1), cheeykam(1), cheeytey(1), chef(1), chefaiin(1), | |
| chefain(1), chefal(1), chefalas(1), chefar(1), chefchdy(1), | |
| chefchey(1), chefchol(1), chefoly(1), chefy(1), cheis(1), | |
| chekaiiin(1), chekaim(1), chekaiphy(1), chekaithhy(1), | |
| chekalchs(1), chekaly(1), chekam(1), chekchdy(1), chekcheey(1), | |
| chekchey(1), chekchoy(1), chekeal(1), chekear(1), chekechy(1), | |
| chekeeal(1), chekeek(1), chekeen(1), chekeesshy(1), chekeg(1), | |
| chekeo(1), chekeoar(1), chekeod(1), chekeody(1), chekeor(1), | |
| chekes(1), chekeys(1), chekhol(1), chekl(1), chekor(1), | |
| chelal(1), chem(1), cheoain(1), cheockay(1), cheockhdy(1), | |
| cheockhedchy(1), cheocphey(1), cheocphy(1), cheocthedy(1), | |
| cheoctheey(1), cheocthey(1), cheoda(1), cheodaiiin(1), | |
| cheodaiir(1), cheodalol(1), cheodchy(1), cheodeeey(1), | |
| cheodeey(1), cheodkedy(1), cheodl(1), cheodoiidaiin(1), cheoe(1), | |
| cheoees(1), cheoekar(1), cheoekcy(1), cheoekeey(1), cheoekey(1), | |
| cheoepey(1), cheoepy(1), cheoet(1), cheoiees(1), cheokaidy(1), | |
| cheokaiim(1), cheokaly(1), cheokar(1), cheokcheo(1), | |
| cheokchet(1), cheokchey(1), cheokchy(1), cheokeain(1), | |
| cheokeeos(1), cheokeo(1), cheokeodal(1), cheokeos(1), cheokor(1), | |
| cheokorchey(1), cheolaiin(1), cheolchal(1), cheolchcthy(1), | |
| cheolchdaiin(1), cheolchdy(1), cheolchey(1), cheoldain(1), | |
| cheolkain(1), cheolkary(1), cheolkedy(1), cheolkeepchy(1), | |
| cheolkeey(1), cheolky(1), cheolpy(1), cheolshy(1), cheoltain(1), | |
| cheoltar(1), cheoltchedaiin(1), cheoltey(1), cheomam(1), | |
| cheooky(1), cheoor(1), cheop(1), cheopaiin(1), cheopcheod(1), | |
| cheopolteeedy(1), cheopor(1), cheopy(1), cheoral(1), cheoram(1), | |
| cheosaiin(1), cheosdy(1), cheoseesey(1), cheot(1), cheotaiin(1), | |
| cheotain(1), cheotam(1), cheotar(1), cheotchar(1), cheotchey(1), | |
| cheotchy(1), cheotdaiin(1), cheoteeo(1), cheoteeodal(1), | |
| cheoteey(1), cheotydy(1), chepaiin(1), chepakeo(1), chepcham(1), | |
| chepchar(1), chepchdy(1), chepched(1), chepchees(1), | |
| chepchefy(1), chepcheol(1), chepchx(1), chepol(1), chery(1), | |
| chesckhy(1), chese(1), chesey(1), cheshy(1), chesokeeoteody(1), | |
| chess(1), chet(1), chetal(1), chetalshy(1), chetam(1), chetan(1), | |
| chetas(1), chetchaiin(1), chetchdy(1), chetchey(1), chetcho(1), | |
| chetchody(1), chetdy(1), chetechy(1), chetedar(1), cheteedy(1), | |
| cheteeeosaiin(1), chetegy(1), chetesescher(1), chetolain(1), | |
| chetshedy(1), chetshy(1), cheyd(1), cheykaiin(1), cheykain(1), | |
| cheykechey(1), cheykedy(1), cheykeeed(1), cheykeeoy(1), | |
| cheykey(1), cheyl(1), cheyor(1), cheys(1), cheytal(1), | |
| cheytey(1), cheyty(1), chkchean(1), chkchedaram(1), chkcheean(1), | |
| chokcheey(1), chokcheo(1), cholkched(1), cholkcheol(1), | |
| chopcheey(1), chopcheopchy(1), chotchedy(1), chotcheey(1), | |
| chotcheol(1), chotcheytchol(1), chpchedy(1), chpcheod(1), | |
| chpcheor(1), chpcheos(1), chpchey(1), chpkcheos(1), chtchey(1), | |
| chypchey(1), ckcheey(1), cpchety(1), ctchey(1), dacheedy(1), | |
| dairchey(1), dalched(1), dalcheeeky(1), dalches(1), | |
| darailchedy(1), darcheedal(1), darcheos(1), darchey(1), | |
| dcheaiin(1), dcheckhey(1), dchedaiin(1), dchedain(1), dchedal(1), | |
| dchedaly(1), dchedar(1), dchee(1), dcheeckhos(1), dcheecthey(1), | |
| dcheeey(1), dcheeky(1), dcheeokeody(1), dcheeol(1), dcheeoy(1), | |
| dchees(1), dchefoey(1), dchekcsdy(1), dcheoain(1), dcheocy(1), | |
| dcheod(1), dcheodaiin(1), dcheodain(1), dcheodl(1), dcheoldy(1), | |
| dcheoteos(1), dcheoty(1), dchepain(1), dchetdy(1), dcheytain(1), | |
| docheeo(1), dolcheedy(1), dolcheey(1), dolfchedy(1), | |
| dorkcheky(1), dpchedy(1), dscheey(1), dsechey(1), dshcheal(1), | |
| dychear(1), dycheckhy(1), dylches(1), echedy(1), efchedy(1), | |
| ekchey(1), epchey(1), etcheody(1), fchecfhy(1), fchedey(1), | |
| fchedol(1), fchedypaiin(1), fchedys(1), fchee(1), fcheeody(1), | |
| fcheeol(1), fcheodal(1), fcheokair(1), fcheol(1), fcheolain(1), | |
| fcheos(1), fcheshd(1), fchodycheol(1), folchear(1), folchey(1), | |
| iiincheom(1), kalchedy(1), kche(1), kcheals(1), kcheat(1), | |
| kchedaiin(1), kchedar(1), kcheed(1), kcheedchdy(1), kcheedy(1), | |
| kcheeky(1), kcheeos(1), kchekain(1), kcheodar(1), kcheoey(1), | |
| kcheoly(1), kchetam(1), kecheokeo(1), kechey(1), keechey(1), | |
| keolchey(1), kocheor(1), kolchedy(1), kolcheey(1), kolches(1), | |
| kolchey(1), kolschees(1), ksholochey(1), lchea(1), lchealaiin(1), | |
| lchealaim(1), lchear(1), lchechdy(1), lcheckhedy(1), | |
| lcheckhey(1), lchedal(1), lchedo(1), lchedr(1), lcheed(1), | |
| lcheeey(1), lcheel(1), lcheeol(1), lcheeor(1), lcheg(1), | |
| lcheoekam(1), lcheolshedy(1), lcheos(1), lcheylchy(1), ldchey(1), | |
| lfcheedy(1), lfcheol(1), lkarchees(1), lkcheol(1), lkeches(1), | |
| lkeechey(1), lklcheol(1), llchey(1), lochedy(1), lochey(1), | |
| lpcheedy(1), lpchees(1), lpcheo(1), lpchey(1), ltcheody(1), | |
| ltchey(1), oalcheg(1), oalcheol(1), ocheain(1), ochedain(1), | |
| ochedal(1), ochedar(1), ocheedy(1), ocheeky(1), ocheky(1), | |
| ocheodaiin(1), ocheoithey(1), ocheol(1), ocheor(1), | |
| ochepalain(1), ochepchody(1), oches(1), odchecthy(1), odchedy(1), | |
| odchees(1), odchey(1), oechedy(1), ofcheay(1), ofchedaiin(1), | |
| ofchedaiis(1), ofchedol(1), ofcheds(1), ofcheefar(1), | |
| ofcheesy(1), ofcheol(1), ofcheor(1), ofychey(1), okachey(1), | |
| okaeechey(1), okalched(1), okalcheg(1), okalsalchey(1), okche(1), | |
| okchechy(1), okchedaiin(1), okchedyly(1), okcheefy(1), | |
| okcheeg(1), okcheeo(1), okcheochy(1), okcheod(1), okcheol(1), | |
| okches(1), okchesal(1), okchesy(1), okearcheol(1), okecheay(1), | |
| okecheey(1), okeeolkcheey(1), okeeylchedy(1), okilcheol(1), | |
| okshchedy(1), olcheckhy(1), olchedaiin(1), olchedr(1), | |
| olchedyo(1), olcheear(1), olcheedar(1), olcheees(1), olcheeey(1), | |
| olcheem(1), olcheeo(1), olcheeol(1), olchees(1), olcheesey(1), | |
| olcheety(1), olchef(1), olcheky(1), olcheom(1), olcheos(1), | |
| olchesy(1), olkeechey(1), ololchey(1), olotchedy(1), olpcheey(1), | |
| olpchesd(1), oltchedy(1), oltcheey(1), opcheaiin(1), | |
| opchealol(1), opcheas(1), opchedal(1), opcheddl(1), opcheear(1), | |
| opcheed(1), opcheedoy(1), opcheeky(1), opcheeo(1), opcheeol(1), | |
| opchees(1), opchekaiin(1), opchekan(1), opcheo(1), opcheocf(1), | |
| opcheodair(1), opcheodal(1), opcheolfy(1), opchepy(1), | |
| opchety(1), oqofchedy(1), orchedal(1), orchedar(1), orcheo(1), | |
| orcheol(1), orcheory(1), orcheos(1), orlchey(1), oscheor(1), | |
| oshchey(1), otchechy(1), otchedain(1), otchedair(1), otchedar(1), | |
| otchedey(1), otcheed(1), otcheedaiin(1), otcheedy(1), otcheeo(1), | |
| otcheo(1), otcheochy(1), otcheodaiin(1), otcheodar(1), | |
| otcheol(1), otcheolom(1), otcheoly(1), otcheos(1), otchetchar(1), | |
| otcheypchedy(1), otcholcheaiin(1), otealchedy(1), otechedy(1), | |
| otecheedy(1), otecheo(1), oteedchey(1), oteeedchey(1), | |
| oteochedy(1), oteochey(1), oteodched(1), otkchedy(1), | |
| otokchey(1), otolches(1), otorchety(1), otycheedy(1), otychey(1), | |
| pcheam(1), pchecfhey(1), pched(1), pchedairs(1), pchedas(1), | |
| pchedchdy(1), pchedeey(1), pchedey(1), pcheed(1), pcheety(1), | |
| pcheockhy(1), pcheocphy(1), pcheodaiin(1), pcheodain(1), | |
| pcheodal(1), pcheodchy(1), pcheoepchy(1), pcheokeey(1), | |
| pcheoldom(1), pcheolkal(1), pcheoly(1), pcheoor(1), pcheoy(1), | |
| pchesfchy(1), pocheody(1), pochey(1), podchey(1), pofochey(1), | |
| polchechy(1), polcheolkain(1), porchey(1), pschedal(1), | |
| qchedy(1), qepchedy(1), qepchey(1), qochecthm(1), qochedain(1), | |
| qocheeol(1), qocheky(1), qocheo(1), qocheol(1), qocheor(1), | |
| qocheoty(1), qoches(1), qoctchey(1), qodched(1), qofcheepy(1), | |
| qofchey(1), qokalcheol(1), qokalchey(1), qokche(1), qokched(1), | |
| qokcheodaiin(1), qokcheol(1), qokecheos(1), qokechey(1), | |
| qokeechey(1), qokeeolchey(1), qoklcheey(1), qokolchedy(1), | |
| qokolchey(1), qolcheey(1), qolcheor(1), qoleechedy(1), | |
| qoochey(1), qopchear(1), qopchedaiin(1), qopchedal(1), | |
| qopcheddy(1), qopchedyd(1), qopcheeody(1), qopcheoain(1), | |
| qopcheol(1), qopcher(1), qopches(1), qopchesy(1), qopchety(1), | |
| qorchedy(1), qoscheody(1), qotalchedy(1), qotcheea(1), | |
| qotcheeaiin(1), qotches(1), qotecheor(1), qpchedy(1), qtchedy(1), | |
| qykchey(1), ralkchedy(1), rchealcham(1), rched(1), rchedar(1), | |
| rcheeo(1), rchees(1), rcheetey(1), rcheo(1), rcheodal(1), | |
| rcheold(1), rches(1), rfchykchey(1), rolchedy(1), rolchey(1), | |
| rorcheey(1), rpchey(1), salched(1), salchedal(1), sayfchedy(1), | |
| schea(1), schedaiir(1), schedair(1), scheeol(1), scheer(1), | |
| schekol(1), scheom(1), scheos(1), schesy(1), schety(1), | |
| scseykcheol(1), secheeol(1), shapchedyfeey(1), shcheaiin(1), | |
| shekcheor(1), shekchey(1), sheotchedy(1), shepchedy(1), | |
| shetcheodchs(1), shkchey(1), shlches(1), shoefcheey(1), | |
| shokche(1), shokcheey(1), shokchey(1), sholschey(1), | |
| shopolchedy(1), shorchey(1), shotchey(1), shypchedy(1), | |
| socfchees(1), sochey(1), sokcheey(1), solkchedy(1), sorcheey(1), | |
| tcheain(1), tcheay(1), tched(1), tchedaiin(1), tchedair(1), | |
| tchedal(1), tchede(1), tchedol(1), tchedydy(1), tcheen(1), | |
| tcheeos(1), tcheepchey(1), tcheod(1), tcheodaiin(1), tcheodal(1), | |
| tcheodar(1), tcheodl(1), tcheoko(1), tcheolchy(1), tcheorsho(1), | |
| tchotchey(1), techedy(1), tedcheo(1), teolkechey(1), tochey(1), | |
| tolchedy(1), torchey(1), typchey(1), ychealod(1), ycheas(1), | |
| ycheckhey(1), ychecthy(1), ychedain(1), ychedl(1), | |
| ycheealkaiin(1), ycheear(1), ycheechy(1), ycheeckhy(1), | |
| ycheedaiin(1), ycheekeey(1), ycheeodaiin(1), ycheeodain(1), | |
| ycheeol(1), ycheeor(1), ycheeoy(1), ycheety(1), ycheeytal(1), | |
| ycheeytydaiin(1), ychek(1), ycheoar(1), ycheochy(1), | |
| ycheockhy(1), ycheodain(1), ycheolk(1), ycheom(1), ycheool(1), | |
| ycheoraiin(1), ycheos(1), ycheoto(1), yfchedy(1), yfcheky(1), | |
| yfcheodly(1), ykched(1), ykchedain(1), ykchedor(1), ykcheg(1), | |
| ykcheodain(1), ykcheody(1), ykcheshd(1), ykchscheg(1), | |
| ykechey(1), ylchedor(1), ylcheey(1), yochedy(1), ypcheddy(1), | |
| ypchedpy(1), ypcheedy(1), ypcheeey(1), ypcheey(1), ypcheg(1), | |
| ypcher(1), ypchery(1), ypolcheey(1), yrchey(1), yshchey(1), | |
| ytcheas(1), ytched(1), ytchedal(1), ytcheear(1), ytcheeky(1), | |
| ytcheey(1), ytcheo(1), ytcheodar(1), ytcheodytor(1), yteched(1), | |
| ytecheol(1), ytoeopchey(1) | |
| chead(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ch(1) | |
| contains: cheady(1) | |
| cheaiin(3): (word length: 7 / group items: 6) | |
| length: min=8, max=13, avg=9.5 | |
| top prefixes: qo(1), sc(1), dc(1), op(1), ot(1) | |
| contains: qotcheaiin(2), scheaiin(2), dcheaiin(1), opcheaiin(1), | |
| otcholcheaiin(1), shcheaiin(1) | |
| cheain(2): (word length: 6 / group items: 3) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yc(1), oc(1), tc(1) | |
| contains: ycheain(2), ocheain(1), tcheain(1) | |
| cheal(30): (word length: 5 / group items: 12) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: ch(4), lc(3), ds(1), kc(1), op(1) | |
| contains: chealy(3), lcheal(2), chealol(1), chealor(1), chealror(1), | |
| dshcheal(1), kcheals(1), lchealaiin(1), lchealaim(1), | |
| opchealol(1), rchealcham(1), ychealod(1) | |
| chealol(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: op(1) | |
| contains: opchealol(1) | |
| cheam(5): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.2 | |
| top prefixes: ch(2), lc(1), pc(1) | |
| contains: lcheam(3), cheamar(1), cheamy(1), pcheam(1) | |
| chean(2): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chkchean(1) | |
| chear(51): (word length: 5 / group items: 10) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: ch(2), ol(1), op(1), pc(1), yc(1) | |
| contains: olchear(2), opchear(2), pchear(2), ychear(2), chearaiin(1), | |
| cheary(1), dychear(1), folchear(1), lchear(1), qopchear(1) | |
| cheas(1): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.7 | |
| top prefixes: op(1), yc(1), yt(1) | |
| contains: opcheas(1), ycheas(1), ytcheas(1) | |
| checfhy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: fc(1) | |
| contains: fchecfhy(1) | |
| chechy(1): (word length: 6 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: ok(1), ot(1), po(1) | |
| contains: okchechy(1), otchechy(1), polchechy(1) | |
| checkhd(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: checkhdy(2) | |
| checkhed(2): (word length: 8 / group items: 2) | |
| length: min=9, max=10, avg=9.5 | |
| top prefixes: ch(1), lc(1) | |
| contains: checkhedy(1), lcheckhedy(1) | |
| checkhedy(1): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: lc(1) | |
| contains: lcheckhedy(1) | |
| checkhey(10): (word length: 8 / group items: 3) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: dc(1), lc(1), yc(1) | |
| contains: dcheckhey(1), lcheckhey(1), ycheckhey(1) | |
| checkho(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: checkhol(2) | |
| checkhy(47): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.7 | |
| top prefixes: lc(1), dy(1), ol(1) | |
| contains: lcheckhy(3), dycheckhy(1), olcheckhy(1) | |
| checthy(28): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: od(1), yc(1) | |
| contains: odchecthy(1), ychecthy(1) | |
| ched(23): (word length: 4 / group items: 238) | |
| length: min=5, max=14, avg=7.7 | |
| top prefixes: ch(50), qo(20), ot(12), pc(11), ol(10) | |
| contains: chedy(501), lchedy(119), opchedy(50), qokchedy(39), | |
| olchedy(38), otchedy(34), pchedy(34), tchedy(33), chedaiin(32), | |
| qopchedy(32), chedar(30), dchedy(27), okchedy(25), chedal(24), | |
| qotchedy(24), kchedy(22), chedain(19), lkchedy(16), ychedy(13), | |
| ypchedy(12), fchedy(11), pchedar(11), rchedy(11), qolchedy(10), | |
| ytchedy(10), ochedy(8), qofchedy(8), solchedy(8), ofchedy(7), | |
| schedy(7), ykchedy(7), chedam(6), chedol(6), lched(6), | |
| lpchedy(6), olkchedy(6), polchedy(6), pchedal(5), qotched(5), | |
| alchedy(4), dalchedy(4), okechedy(4), olfchedy(4), olpchedy(4), | |
| opchedaiin(4), pchedaiin(4), qokechedy(4), ychedar(4), | |
| chedaly(3), dched(3), dolchedy(3), kechedy(3), lkechedy(3), | |
| olched(3), tchedor(3), yched(3), chedaiiin(2), chedo(2), | |
| chedor(2), chepchedy(2), chokchedy(2), cholchedy(2), | |
| chopchedy(2), darchedy(2), dychedy(2), lchedam(2), lchedar(2), | |
| lfchedy(2), okalchedy(2), okchedam(2), opched(2), orchedy(2), | |
| otochedy(2), pchedain(2), pochedy(2), polched(2), qochedy(2), | |
| qotchedar(2), salchedy(2), shkchedy(2), tchedar(2), ychedaiin(2), | |
| ychedal(2), akchedy(1), alched(1), alchedar(1), arodchedy(1), | |
| chdykchedy(1), cheda(1), chedacphy(1), chedady(1), chedair(1), | |
| chedalkedy(1), chedalos(1), chedan(1), chedas(1), chedchey(1), | |
| chedchy(1), chedees(1), chedeey(1), chedey(1), chedkain(1), | |
| chedkaly(1), chedkel(1), chedky(1), chedl(1), chedos(1), | |
| cheds(1), chedydy(1), chedykar(1), chedyl(1), chedyor(1), | |
| chedyr(1), chedyteokain(1), chedytey(1), chedyty(1), | |
| cheoltchedaiin(1), chepched(1), chkchedaram(1), cholkched(1), | |
| chotchedy(1), chpchedy(1), dalched(1), darailchedy(1), | |
| dchedaiin(1), dchedain(1), dchedal(1), dchedaly(1), dchedar(1), | |
| dolfchedy(1), dpchedy(1), echedy(1), efchedy(1), fchedey(1), | |
| fchedol(1), fchedypaiin(1), fchedys(1), kalchedy(1), | |
| kchedaiin(1), kchedar(1), kolchedy(1), lchedal(1), lchedo(1), | |
| lchedr(1), lochedy(1), ochedain(1), ochedal(1), ochedar(1), | |
| odchedy(1), oechedy(1), ofchedaiin(1), ofchedaiis(1), | |
| ofchedol(1), ofcheds(1), okalched(1), okchedaiin(1), | |
| okchedyly(1), okeeylchedy(1), okshchedy(1), olchedaiin(1), | |
| olchedr(1), olchedyo(1), olotchedy(1), oltchedy(1), opchedal(1), | |
| opcheddl(1), oqofchedy(1), orchedal(1), orchedar(1), | |
| otchedain(1), otchedair(1), otchedar(1), otchedey(1), | |
| otcheypchedy(1), otealchedy(1), otechedy(1), oteochedy(1), | |
| oteodched(1), otkchedy(1), pched(1), pchedairs(1), pchedas(1), | |
| pchedchdy(1), pchedeey(1), pchedey(1), pschedal(1), qchedy(1), | |
| qepchedy(1), qochedain(1), qodched(1), qokched(1), qokolchedy(1), | |
| qoleechedy(1), qopchedaiin(1), qopchedal(1), qopcheddy(1), | |
| qopchedyd(1), qorchedy(1), qotalchedy(1), qpchedy(1), qtchedy(1), | |
| ralkchedy(1), rched(1), rchedar(1), rolchedy(1), salched(1), | |
| salchedal(1), sayfchedy(1), schedaiir(1), schedair(1), | |
| shapchedyfeey(1), sheotchedy(1), shepchedy(1), shopolchedy(1), | |
| shypchedy(1), solkchedy(1), tched(1), tchedaiin(1), tchedair(1), | |
| tchedal(1), tchede(1), tchedol(1), tchedydy(1), techedy(1), | |
| tolchedy(1), ychedain(1), ychedl(1), yfchedy(1), ykched(1), | |
| ykchedain(1), ykchedor(1), ylchedor(1), yochedy(1), ypcheddy(1), | |
| ypchedpy(1), ytched(1), ytchedal(1), yteched(1) | |
| cheda(1): (word length: 5 / group items: 67) | |
| length: min=6, max=14, avg=8.1 | |
| top prefixes: ch(16), pc(6), dc(5), yc(4), qo(4) | |
| contains: chedaiin(32), chedar(30), chedal(24), chedain(19), | |
| pchedar(11), chedam(6), pchedal(5), opchedaiin(4), pchedaiin(4), | |
| ychedar(4), chedaly(3), chedaiiin(2), lchedam(2), lchedar(2), | |
| okchedam(2), pchedain(2), qotchedar(2), tchedar(2), ychedaiin(2), | |
| ychedal(2), alchedar(1), chedacphy(1), chedady(1), chedair(1), | |
| chedalkedy(1), chedalos(1), chedan(1), chedas(1), | |
| cheoltchedaiin(1), chkchedaram(1), dchedaiin(1), dchedain(1), | |
| dchedal(1), dchedaly(1), dchedar(1), kchedaiin(1), kchedar(1), | |
| lchedal(1), ochedain(1), ochedal(1), ochedar(1), ofchedaiin(1), | |
| ofchedaiis(1), okchedaiin(1), olchedaiin(1), opchedal(1), | |
| orchedal(1), orchedar(1), otchedain(1), otchedair(1), | |
| otchedar(1), pchedairs(1), pchedas(1), pschedal(1), qochedain(1), | |
| qopchedaiin(1), qopchedal(1), rchedar(1), salchedal(1), | |
| schedaiir(1), schedair(1), tchedaiin(1), tchedair(1), tchedal(1), | |
| ychedain(1), ykchedain(1), ytchedal(1) | |
| chedaiin(32): (word length: 8 / group items: 11) | |
| length: min=9, max=14, avg=10.0 | |
| top prefixes: op(1), pc(1), yc(1), ch(1), dc(1) | |
| contains: opchedaiin(4), pchedaiin(4), ychedaiin(2), cheoltchedaiin(1), | |
| dchedaiin(1), kchedaiin(1), ofchedaiin(1), okchedaiin(1), | |
| olchedaiin(1), qopchedaiin(1), tchedaiin(1) | |
| chedain(19): (word length: 7 / group items: 7) | |
| length: min=8, max=9, avg=8.4 | |
| top prefixes: pc(1), dc(1), oc(1), ot(1), qo(1) | |
| contains: pchedain(2), dchedain(1), ochedain(1), otchedain(1), | |
| qochedain(1), ychedain(1), ykchedain(1) | |
| chedair(1): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ot(1), pc(1), sc(1), tc(1) | |
| contains: otchedair(1), pchedairs(1), schedair(1), tchedair(1) | |
| chedal(24): (word length: 6 / group items: 16) | |
| length: min=7, max=10, avg=7.8 | |
| top prefixes: ch(3), dc(2), pc(1), yc(1), lc(1) | |
| contains: pchedal(5), chedaly(3), ychedal(2), chedalkedy(1), | |
| chedalos(1), dchedal(1), dchedaly(1), lchedal(1), ochedal(1), | |
| opchedal(1), orchedal(1), pschedal(1), qopchedal(1), | |
| salchedal(1), tchedal(1), ytchedal(1) | |
| chedaly(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: dc(1) | |
| contains: dchedaly(1) | |
| chedam(6): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: lc(1), ok(1) | |
| contains: lchedam(2), okchedam(2) | |
| chedar(30): (word length: 6 / group items: 13) | |
| length: min=7, max=11, avg=7.7 | |
| top prefixes: pc(1), yc(1), lc(1), qo(1), tc(1) | |
| contains: pchedar(11), ychedar(4), lchedar(2), qotchedar(2), tchedar(2), | |
| alchedar(1), chkchedaram(1), dchedar(1), kchedar(1), ochedar(1), | |
| orchedar(1), otchedar(1), rchedar(1) | |
| chedas(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: pc(1) | |
| contains: pchedas(1) | |
| chedeey(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: pc(1) | |
| contains: pchedeey(1) | |
| chedey(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: fc(1), ot(1), pc(1) | |
| contains: fchedey(1), otchedey(1), pchedey(1) | |
| chedl(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: yc(1) | |
| contains: ychedl(1) | |
| chedo(2): (word length: 5 / group items: 10) | |
| length: min=6, max=8, avg=6.9 | |
| top prefixes: ch(3), tc(2), fc(1), lc(1), of(1) | |
| contains: chedol(6), tchedor(3), chedor(2), chedos(1), fchedol(1), | |
| lchedo(1), ofchedol(1), tchedol(1), ykchedor(1), ylchedor(1) | |
| chedol(6): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: fc(1), of(1), tc(1) | |
| contains: fchedol(1), ofchedol(1), tchedol(1) | |
| chedor(2): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: tc(1), yk(1), yl(1) | |
| contains: tchedor(3), ykchedor(1), ylchedor(1) | |
| cheds(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: of(1) | |
| contains: ofcheds(1) | |
| chedy(501): (word length: 5 / group items: 111) | |
| length: min=6, max=13, avg=8.0 | |
| top prefixes: ch(15), qo(12), ol(7), ot(7), ok(6) | |
| contains: lchedy(119), opchedy(50), qokchedy(39), olchedy(38), | |
| otchedy(34), pchedy(34), tchedy(33), qopchedy(32), dchedy(27), | |
| okchedy(25), qotchedy(24), kchedy(22), lkchedy(16), ychedy(13), | |
| ypchedy(12), fchedy(11), rchedy(11), qolchedy(10), ytchedy(10), | |
| ochedy(8), qofchedy(8), solchedy(8), ofchedy(7), schedy(7), | |
| ykchedy(7), lpchedy(6), olkchedy(6), polchedy(6), alchedy(4), | |
| dalchedy(4), okechedy(4), olfchedy(4), olpchedy(4), qokechedy(4), | |
| dolchedy(3), kechedy(3), lkechedy(3), chepchedy(2), chokchedy(2), | |
| cholchedy(2), chopchedy(2), darchedy(2), dychedy(2), lfchedy(2), | |
| okalchedy(2), orchedy(2), otochedy(2), pochedy(2), qochedy(2), | |
| salchedy(2), shkchedy(2), akchedy(1), arodchedy(1), | |
| chdykchedy(1), chedydy(1), chedykar(1), chedyl(1), chedyor(1), | |
| chedyr(1), chedyteokain(1), chedytey(1), chedyty(1), | |
| chotchedy(1), chpchedy(1), darailchedy(1), dolfchedy(1), | |
| dpchedy(1), echedy(1), efchedy(1), fchedypaiin(1), fchedys(1), | |
| kalchedy(1), kolchedy(1), lochedy(1), odchedy(1), oechedy(1), | |
| okchedyly(1), okeeylchedy(1), okshchedy(1), olchedyo(1), | |
| olotchedy(1), oltchedy(1), oqofchedy(1), otcheypchedy(1), | |
| otealchedy(1), otechedy(1), oteochedy(1), otkchedy(1), qchedy(1), | |
| qepchedy(1), qokolchedy(1), qoleechedy(1), qopchedyd(1), | |
| qorchedy(1), qotalchedy(1), qpchedy(1), qtchedy(1), ralkchedy(1), | |
| rolchedy(1), sayfchedy(1), shapchedyfeey(1), sheotchedy(1), | |
| shepchedy(1), shopolchedy(1), shypchedy(1), solkchedy(1), | |
| tchedydy(1), techedy(1), tolchedy(1), yfchedy(1), yochedy(1) | |
| chedydy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: tc(1) | |
| contains: tchedydy(1) | |
| chedyl(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ok(1) | |
| contains: okchedyly(1) | |
| chee(1): (word length: 4 / group items: 235) | |
| length: min=5, max=13, avg=7.6 | |
| top prefixes: ch(79), yc(19), ol(14), qo(14), dc(13) | |
| contains: cheey(174), cheedy(59), chees(33), cheeky(24), ycheey(24), | |
| cheeo(17), cheeor(14), dcheey(13), lcheey(13), olcheey(13), | |
| cheeody(12), cheeey(9), cheeol(9), lcheedy(9), ycheeo(8), | |
| cheeos(7), okcheey(7), ycheedy(7), cheekey(6), tcheey(6), | |
| cheedar(5), kcheey(5), opcheey(5), cheedaiin(4), cheeteey(4), | |
| dcheedy(4), fcheey(4), pcheey(4), qopcheey(4), qotcheedy(4), | |
| rcheey(4), cheekain(3), cheen(3), cheesy(3), cheety(3), | |
| ocheey(3), olcheedy(3), opcheedy(3), otcheey(3), cheeaiin(2), | |
| cheeal(2), cheed(2), cheedain(2), cheef(2), cheekaiin(2), | |
| cheeod(2), cheer(2), dcheeody(2), dcheeos(2), kcheeor(2), | |
| lchees(2), orcheey(2), pcheedy(2), pcheeody(2), qocheey(2), | |
| qokcheedy(2), qokcheey(2), qolcheedy(2), qopcheedy(2), scheey(2), | |
| ycheeody(2), ychees(2), alcheey(1), archeey(1), arorochees(1), | |
| chcheey(1), cheea(1), cheear(1), cheeckhody(1), cheecpheey(1), | |
| cheecthy(1), cheedalaiin(1), cheedls(1), cheeeal(1), | |
| cheeedaiin(1), cheeen(1), cheeeo(1), cheees(1), cheeetchol(1), | |
| cheeety(1), cheefar(1), cheefy(1), cheeg(1), cheeir(1), | |
| cheekan(1), cheekchey(1), cheekdam(1), cheekeey(1), cheekeo(1), | |
| cheekeody(1), cheel(1), cheem(1), cheeodam(1), cheeods(1), | |
| cheeoekey(1), cheeokeey(1), cheeokseo(1), cheeoldair(1), | |
| cheeoldy(1), cheeool(1), cheeorfor(1), cheeotaiin(1), cheeoy(1), | |
| cheepaiin(1), cheepchdy(1), cheesees(1), cheet(1), cheeta(1), | |
| cheetam(1), cheetar(1), cheeykam(1), cheeytey(1), chekcheey(1), | |
| chepchees(1), chkcheean(1), chokcheey(1), chopcheey(1), | |
| chotcheey(1), ckcheey(1), dacheedy(1), dalcheeeky(1), | |
| darcheedal(1), dchee(1), dcheeckhos(1), dcheecthey(1), | |
| dcheeey(1), dcheeky(1), dcheeokeody(1), dcheeol(1), dcheeoy(1), | |
| dchees(1), docheeo(1), dolcheedy(1), dolcheey(1), dscheey(1), | |
| fchee(1), fcheeody(1), fcheeol(1), kcheed(1), kcheedchdy(1), | |
| kcheedy(1), kcheeky(1), kcheeos(1), kolcheey(1), kolschees(1), | |
| lcheed(1), lcheeey(1), lcheel(1), lcheeol(1), lcheeor(1), | |
| lfcheedy(1), lkarchees(1), lpcheedy(1), lpchees(1), ocheedy(1), | |
| ocheeky(1), odchees(1), ofcheefar(1), ofcheesy(1), okcheefy(1), | |
| okcheeg(1), okcheeo(1), okecheey(1), okeeolkcheey(1), | |
| olcheear(1), olcheedar(1), olcheees(1), olcheeey(1), olcheem(1), | |
| olcheeo(1), olcheeol(1), olchees(1), olcheesey(1), olcheety(1), | |
| olpcheey(1), oltcheey(1), opcheear(1), opcheed(1), opcheedoy(1), | |
| opcheeky(1), opcheeo(1), opcheeol(1), opchees(1), otcheed(1), | |
| otcheedaiin(1), otcheedy(1), otcheeo(1), otecheedy(1), | |
| otycheedy(1), pcheed(1), pcheety(1), qocheeol(1), qofcheepy(1), | |
| qoklcheey(1), qolcheey(1), qopcheeody(1), qotcheea(1), | |
| qotcheeaiin(1), rcheeo(1), rchees(1), rcheetey(1), rorcheey(1), | |
| scheeol(1), scheer(1), secheeol(1), shoefcheey(1), shokcheey(1), | |
| socfchees(1), sokcheey(1), sorcheey(1), tcheen(1), tcheeos(1), | |
| tcheepchey(1), ycheealkaiin(1), ycheear(1), ycheechy(1), | |
| ycheeckhy(1), ycheedaiin(1), ycheekeey(1), ycheeodaiin(1), | |
| ycheeodain(1), ycheeol(1), ycheeor(1), ycheeoy(1), ycheety(1), | |
| ycheeytal(1), ycheeytydaiin(1), ylcheey(1), ypcheedy(1), | |
| ypcheeey(1), ypcheey(1), ypolcheey(1), ytcheear(1), ytcheeky(1), | |
| ytcheey(1) | |
| cheea(1): (word length: 5 / group items: 11) | |
| length: min=6, max=12, avg=8.3 | |
| top prefixes: ch(4), qo(2), yc(2), ol(1), op(1) | |
| contains: cheeaiin(2), cheeal(2), cheear(1), chkcheean(1), olcheear(1), | |
| opcheear(1), qotcheea(1), qotcheeaiin(1), ycheealkaiin(1), | |
| ycheear(1), ytcheear(1) | |
| cheeaiin(2): (word length: 8 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: qo(1) | |
| contains: qotcheeaiin(1) | |
| cheeal(2): (word length: 6 / group items: 1) | |
| length: min=12, max=12, avg=12.0 | |
| top prefixes: yc(1) | |
| contains: ycheealkaiin(1) | |
| cheear(1): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.8 | |
| top prefixes: ol(1), op(1), yc(1), yt(1) | |
| contains: olcheear(1), opcheear(1), ycheear(1), ytcheear(1) | |
| cheed(2): (word length: 5 / group items: 37) | |
| length: min=6, max=11, avg=8.1 | |
| top prefixes: ch(6), ot(5), qo(4), op(3), kc(3) | |
| contains: cheedy(59), lcheedy(9), ycheedy(7), cheedar(5), cheedaiin(4), | |
| dcheedy(4), qotcheedy(4), olcheedy(3), opcheedy(3), cheedain(2), | |
| pcheedy(2), qokcheedy(2), qolcheedy(2), qopcheedy(2), | |
| cheedalaiin(1), cheedls(1), dacheedy(1), darcheedal(1), | |
| dolcheedy(1), kcheed(1), kcheedchdy(1), kcheedy(1), lcheed(1), | |
| lfcheedy(1), lpcheedy(1), ocheedy(1), olcheedar(1), opcheed(1), | |
| opcheedoy(1), otcheed(1), otcheedaiin(1), otcheedy(1), | |
| otecheedy(1), otycheedy(1), pcheed(1), ycheedaiin(1), ypcheedy(1) | |
| cheedaiin(4): (word length: 9 / group items: 2) | |
| length: min=10, max=11, avg=10.5 | |
| top prefixes: ot(1), yc(1) | |
| contains: otcheedaiin(1), ycheedaiin(1) | |
| cheedar(5): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ol(1) | |
| contains: olcheedar(1) | |
| cheedy(59): (word length: 6 / group items: 20) | |
| length: min=7, max=9, avg=8.1 | |
| top prefixes: qo(4), ot(3), lc(1), yc(1), dc(1) | |
| contains: lcheedy(9), ycheedy(7), dcheedy(4), qotcheedy(4), olcheedy(3), | |
| opcheedy(3), pcheedy(2), qokcheedy(2), qolcheedy(2), | |
| qopcheedy(2), dacheedy(1), dolcheedy(1), kcheedy(1), lfcheedy(1), | |
| lpcheedy(1), ocheedy(1), otcheedy(1), otecheedy(1), otycheedy(1), | |
| ypcheedy(1) | |
| cheees(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olcheees(1) | |
| cheeey(9): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: dc(1), lc(1), ol(1), yp(1) | |
| contains: dcheeey(1), lcheeey(1), olcheeey(1), ypcheeey(1) | |
| cheef(2): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ch(2), of(1), ok(1) | |
| contains: cheefar(1), cheefy(1), ofcheefar(1), okcheefy(1) | |
| cheefar(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: of(1) | |
| contains: ofcheefar(1) | |
| cheefy(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okcheefy(1) | |
| cheeg(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okcheeg(1) | |
| cheekeey(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: yc(1) | |
| contains: ycheekeey(1) | |
| cheekeo(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: cheekeody(1) | |
| cheeky(24): (word length: 6 / group items: 5) | |
| length: min=7, max=8, avg=7.4 | |
| top prefixes: dc(1), kc(1), oc(1), op(1), yt(1) | |
| contains: dcheeky(1), kcheeky(1), ocheeky(1), opcheeky(1), ytcheeky(1) | |
| cheel(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: lc(1) | |
| contains: lcheel(1) | |
| cheem(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olcheem(1) | |
| cheen(3): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: tc(1) | |
| contains: tcheen(1) | |
| cheeo(17): (word length: 5 / group items: 48) | |
| length: min=6, max=11, avg=7.6 | |
| top prefixes: ch(16), yc(7), dc(5), kc(2), fc(2) | |
| contains: cheeor(14), cheeody(12), cheeol(9), ycheeo(8), cheeos(7), | |
| cheeod(2), dcheeody(2), dcheeos(2), kcheeor(2), pcheeody(2), | |
| ycheeody(2), cheeodam(1), cheeods(1), cheeoekey(1), cheeokeey(1), | |
| cheeokseo(1), cheeoldair(1), cheeoldy(1), cheeool(1), | |
| cheeorfor(1), cheeotaiin(1), cheeoy(1), dcheeokeody(1), | |
| dcheeol(1), dcheeoy(1), docheeo(1), fcheeody(1), fcheeol(1), | |
| kcheeos(1), lcheeol(1), lcheeor(1), okcheeo(1), olcheeo(1), | |
| olcheeol(1), opcheeo(1), opcheeol(1), otcheeo(1), qocheeol(1), | |
| qopcheeody(1), rcheeo(1), scheeol(1), secheeol(1), tcheeos(1), | |
| ycheeodaiin(1), ycheeodain(1), ycheeol(1), ycheeor(1), ycheeoy(1) | |
| cheeod(2): (word length: 6 / group items: 10) | |
| length: min=7, max=11, avg=8.5 | |
| top prefixes: ch(3), yc(3), dc(1), pc(1), fc(1) | |
| contains: cheeody(12), dcheeody(2), pcheeody(2), ycheeody(2), | |
| cheeodam(1), cheeods(1), fcheeody(1), qopcheeody(1), | |
| ycheeodaiin(1), ycheeodain(1) | |
| cheeody(12): (word length: 7 / group items: 5) | |
| length: min=8, max=10, avg=8.4 | |
| top prefixes: dc(1), pc(1), yc(1), fc(1), qo(1) | |
| contains: dcheeody(2), pcheeody(2), ycheeody(2), fcheeody(1), | |
| qopcheeody(1) | |
| cheeol(9): (word length: 6 / group items: 11) | |
| length: min=7, max=10, avg=7.7 | |
| top prefixes: ch(2), dc(1), fc(1), lc(1), ol(1) | |
| contains: cheeoldair(1), cheeoldy(1), dcheeol(1), fcheeol(1), | |
| lcheeol(1), olcheeol(1), opcheeol(1), qocheeol(1), scheeol(1), | |
| secheeol(1), ycheeol(1) | |
| cheeor(14): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=7.5 | |
| top prefixes: kc(1), ch(1), lc(1), yc(1) | |
| contains: kcheeor(2), cheeorfor(1), lcheeor(1), ycheeor(1) | |
| cheeos(7): (word length: 6 / group items: 3) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dc(1), kc(1), tc(1) | |
| contains: dcheeos(2), kcheeos(1), tcheeos(1) | |
| cheeoy(1): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dc(1), yc(1) | |
| contains: dcheeoy(1), ycheeoy(1) | |
| cheer(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: sc(1) | |
| contains: scheer(1) | |
| chees(33): (word length: 5 / group items: 17) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: ch(3), ol(2), lc(1), yc(1), ar(1) | |
| contains: cheesy(3), lchees(2), ychees(2), arorochees(1), cheesees(1), | |
| chepchees(1), dchees(1), kolschees(1), lkarchees(1), lpchees(1), | |
| odchees(1), ofcheesy(1), olchees(1), olcheesey(1), opchees(1), | |
| rchees(1), socfchees(1) | |
| cheesy(3): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: of(1) | |
| contains: ofcheesy(1) | |
| cheet(1): (word length: 5 / group items: 9) | |
| length: min=6, max=8, avg=7.1 | |
| top prefixes: ch(5), ol(1), pc(1), rc(1), yc(1) | |
| contains: cheeteey(4), cheety(3), cheeta(1), cheetam(1), cheetar(1), | |
| olcheety(1), pcheety(1), rcheetey(1), ycheety(1) | |
| cheeta(1): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(2) | |
| contains: cheetam(1), cheetar(1) | |
| cheety(3): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ol(1), pc(1), yc(1) | |
| contains: olcheety(1), pcheety(1), ycheety(1) | |
| cheey(174): (word length: 5 / group items: 48) | |
| length: min=6, max=13, avg=7.7 | |
| top prefixes: ch(7), qo(5), yc(3), ol(3), ok(3) | |
| contains: ycheey(24), dcheey(13), lcheey(13), olcheey(13), okcheey(7), | |
| tcheey(6), kcheey(5), opcheey(5), fcheey(4), pcheey(4), | |
| qopcheey(4), rcheey(4), ocheey(3), otcheey(3), orcheey(2), | |
| qocheey(2), qokcheey(2), scheey(2), alcheey(1), archeey(1), | |
| chcheey(1), cheeykam(1), cheeytey(1), chekcheey(1), chokcheey(1), | |
| chopcheey(1), chotcheey(1), ckcheey(1), dolcheey(1), dscheey(1), | |
| kolcheey(1), okecheey(1), okeeolkcheey(1), olpcheey(1), | |
| oltcheey(1), qoklcheey(1), qolcheey(1), rorcheey(1), | |
| shoefcheey(1), shokcheey(1), sokcheey(1), sorcheey(1), | |
| ycheeytal(1), ycheeytydaiin(1), ylcheey(1), ypcheey(1), | |
| ypolcheey(1), ytcheey(1) | |
| chef(1): (word length: 4 / group items: 14) | |
| length: min=5, max=9, avg=7.2 | |
| top prefixes: ch(12), dc(1), ol(1) | |
| contains: chefchy(3), chefaiin(1), chefain(1), chefal(1), chefalas(1), | |
| chefar(1), chefchdy(1), chefchey(1), chefchol(1), chefoly(1), | |
| chefy(1), chepchefy(1), dchefoey(1), olchef(1) | |
| chefal(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chefalas(1) | |
| chefy(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chepchefy(1) | |
| cheg(3): (word length: 4 / group items: 6) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: yk(2), lc(1), oa(1), ok(1), yp(1) | |
| contains: lcheg(1), oalcheg(1), okalcheg(1), ykcheg(1), ykchscheg(1), | |
| ypcheg(1) | |
| chek(3): (word length: 4 / group items: 58) | |
| length: min=5, max=10, avg=7.3 | |
| top prefixes: ch(44), yc(2), op(2), rc(1), al(1) | |
| contains: cheky(65), chekal(12), chekaiin(8), chekar(8), chekain(7), | |
| chekey(7), chekeey(6), chekchy(5), chekedy(4), chekeedy(4), | |
| chekody(3), chekol(3), cheked(2), chekeol(2), rcheky(2), | |
| ychekchy(2), alcheky(1), chcheky(1), chekaiiin(1), chekaim(1), | |
| chekaiphy(1), chekaithhy(1), chekalchs(1), chekaly(1), chekam(1), | |
| chekchdy(1), chekcheey(1), chekchey(1), chekchoy(1), chekeal(1), | |
| chekear(1), chekechy(1), chekeeal(1), chekeek(1), chekeen(1), | |
| chekeesshy(1), chekeg(1), chekeo(1), chekeoar(1), chekeod(1), | |
| chekeody(1), chekeor(1), chekes(1), chekeys(1), chekhol(1), | |
| chekl(1), chekor(1), dchekcsdy(1), dorkcheky(1), kchekain(1), | |
| ocheky(1), olcheky(1), opchekaiin(1), opchekan(1), qocheky(1), | |
| schekol(1), ychek(1), yfcheky(1) | |
| chekaiin(8): (word length: 8 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: op(1) | |
| contains: opchekaiin(1) | |
| chekain(7): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: kc(1) | |
| contains: kchekain(1) | |
| chekal(12): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(2) | |
| contains: chekalchs(1), chekaly(1) | |
| chekchy(5): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yc(1) | |
| contains: ychekchy(2) | |
| cheked(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chekedy(4) | |
| chekeo(1): (word length: 6 / group items: 5) | |
| length: min=7, max=8, avg=7.4 | |
| top prefixes: ch(5) | |
| contains: chekeol(2), chekeoar(1), chekeod(1), chekeody(1), chekeor(1) | |
| chekeod(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chekeody(1) | |
| chekey(7): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chekeys(1) | |
| chekol(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sc(1) | |
| contains: schekol(1) | |
| cheky(65): (word length: 5 / group items: 8) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: rc(1), al(1), ch(1), do(1), oc(1) | |
| contains: rcheky(2), alcheky(1), chcheky(1), dorkcheky(1), ocheky(1), | |
| olcheky(1), qocheky(1), yfcheky(1) | |
| cheo(65): (word length: 4 / group items: 332) | |
| length: min=5, max=14, avg=7.8 | |
| top prefixes: ch(139), qo(23), pc(19), yc(16), dc(15) | |
| contains: cheol(173), cheor(100), cheody(89), cheos(33), ycheo(15), | |
| ycheol(14), cheodaiin(11), pcheol(11), cheockhy(10), cheoky(10), | |
| cheom(10), ycheor(9), cheodain(8), dcheol(8), lcheol(8), | |
| olcheol(8), opcheol(8), cheodal(7), dcheo(7), pcheody(7), | |
| tcheo(7), tcheody(6), tcheol(6), cheoar(5), cheocthy(5), | |
| cheod(5), cheokeey(5), cheoldy(5), cheoly(5), cheoty(5), | |
| kcheody(5), kcheol(5), pcheor(5), cheodar(4), cheokain(4), | |
| cheoy(4), dcheor(4), kcheo(4), kcheor(4), lcheo(4), otcheor(4), | |
| qotcheo(4), cheokey(3), cheols(3), cheory(3), lcheody(3), | |
| lkcheo(3), okcheody(3), olcheor(3), opcheody(3), pcheo(3), | |
| pcheodar(3), qofcheol(3), qokcheo(3), qokcheody(3), qotcheol(3), | |
| tcheor(3), ycheody(3), ycheoky(3), ykcheor(3), cheoaiin(2), | |
| cheoal(2), cheockhey(2), cheodam(2), cheodor(2), cheok(2), | |
| cheokaiin(2), cheokal(2), cheokam(2), cheokedy(2), cheokeeo(2), | |
| cheokeol(2), cheolkeedy(2), cheolor(2), cheorol(2), cheotey(2), | |
| cheotol(2), dcheody(2), dcheoky(2), dcheos(2), fcheody(2), | |
| kcheodaiin(2), lcheod(2), lcheor(2), ocheos(2), okcheo(2), | |
| okcheor(2), olcheo(2), olcheody(2), opcheor(2), otcheody(2), | |
| pcheos(2), qokcheor(2), qolcheol(2), qopcheody(2), qopcheos(2), | |
| qotolcheo(2), scheo(2), scheol(2), scheor(2), solcheol(2), | |
| tcheos(2), tocheo(2), ycheod(2), acheody(1), archeody(1), | |
| archeor(1), cheoain(1), cheockay(1), cheockhdy(1), | |
| cheockhedchy(1), cheocphey(1), cheocphy(1), cheocthedy(1), | |
| cheoctheey(1), cheocthey(1), cheoda(1), cheodaiiin(1), | |
| cheodaiir(1), cheodalol(1), cheodchy(1), cheodeeey(1), | |
| cheodeey(1), cheodkedy(1), cheodl(1), cheodoiidaiin(1), cheoe(1), | |
| cheoees(1), cheoekar(1), cheoekcy(1), cheoekeey(1), cheoekey(1), | |
| cheoepey(1), cheoepy(1), cheoet(1), cheoiees(1), cheokaidy(1), | |
| cheokaiim(1), cheokaly(1), cheokar(1), cheokcheo(1), | |
| cheokchet(1), cheokchey(1), cheokchy(1), cheokeain(1), | |
| cheokeeos(1), cheokeo(1), cheokeodal(1), cheokeos(1), cheokor(1), | |
| cheokorchey(1), cheolaiin(1), cheolchal(1), cheolchcthy(1), | |
| cheolchdaiin(1), cheolchdy(1), cheolchey(1), cheoldain(1), | |
| cheolkain(1), cheolkary(1), cheolkedy(1), cheolkeepchy(1), | |
| cheolkeey(1), cheolky(1), cheolpy(1), cheolshy(1), cheoltain(1), | |
| cheoltar(1), cheoltchedaiin(1), cheoltey(1), cheomam(1), | |
| cheooky(1), cheoor(1), cheop(1), cheopaiin(1), cheopcheod(1), | |
| cheopolteeedy(1), cheopor(1), cheopy(1), cheoral(1), cheoram(1), | |
| cheosaiin(1), cheosdy(1), cheoseesey(1), cheot(1), cheotaiin(1), | |
| cheotain(1), cheotam(1), cheotar(1), cheotchar(1), cheotchey(1), | |
| cheotchy(1), cheotdaiin(1), cheoteeo(1), cheoteeodal(1), | |
| cheoteey(1), cheotydy(1), chepcheol(1), chokcheo(1), | |
| cholkcheol(1), chopcheopchy(1), chotcheol(1), chpcheod(1), | |
| chpcheor(1), chpcheos(1), chpkcheos(1), darcheos(1), dcheoain(1), | |
| dcheocy(1), dcheod(1), dcheodaiin(1), dcheodain(1), dcheodl(1), | |
| dcheoldy(1), dcheoteos(1), dcheoty(1), etcheody(1), fcheodal(1), | |
| fcheokair(1), fcheol(1), fcheolain(1), fcheos(1), fchodycheol(1), | |
| iiincheom(1), kcheodar(1), kcheoey(1), kcheoly(1), kecheokeo(1), | |
| kocheor(1), lcheoekam(1), lcheolshedy(1), lcheos(1), lfcheol(1), | |
| lkcheol(1), lklcheol(1), lpcheo(1), ltcheody(1), oalcheol(1), | |
| ocheodaiin(1), ocheoithey(1), ocheol(1), ocheor(1), ofcheol(1), | |
| ofcheor(1), okcheochy(1), okcheod(1), okcheol(1), okearcheol(1), | |
| okilcheol(1), olcheom(1), olcheos(1), opcheo(1), opcheocf(1), | |
| opcheodair(1), opcheodal(1), opcheolfy(1), orcheo(1), orcheol(1), | |
| orcheory(1), orcheos(1), oscheor(1), otcheo(1), otcheochy(1), | |
| otcheodaiin(1), otcheodar(1), otcheol(1), otcheolom(1), | |
| otcheoly(1), otcheos(1), otecheo(1), pcheockhy(1), pcheocphy(1), | |
| pcheodaiin(1), pcheodain(1), pcheodal(1), pcheodchy(1), | |
| pcheoepchy(1), pcheokeey(1), pcheoldom(1), pcheolkal(1), | |
| pcheoly(1), pcheoor(1), pcheoy(1), pocheody(1), polcheolkain(1), | |
| qocheo(1), qocheol(1), qocheor(1), qocheoty(1), qokalcheol(1), | |
| qokcheodaiin(1), qokcheol(1), qokecheos(1), qolcheor(1), | |
| qopcheoain(1), qopcheol(1), qoscheody(1), qotecheor(1), rcheo(1), | |
| rcheodal(1), rcheold(1), scheom(1), scheos(1), scseykcheol(1), | |
| shekcheor(1), shetcheodchs(1), tcheod(1), tcheodaiin(1), | |
| tcheodal(1), tcheodar(1), tcheodl(1), tcheoko(1), tcheolchy(1), | |
| tcheorsho(1), tedcheo(1), ycheoar(1), ycheochy(1), ycheockhy(1), | |
| ycheodain(1), ycheolk(1), ycheom(1), ycheool(1), ycheoraiin(1), | |
| ycheos(1), ycheoto(1), yfcheodly(1), ykcheodain(1), ykcheody(1), | |
| ytcheo(1), ytcheodar(1), ytcheodytor(1), ytecheol(1) | |
| cheoain(1): (word length: 7 / group items: 2) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: dc(1), qo(1) | |
| contains: dcheoain(1), qopcheoain(1) | |
| cheoar(5): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yc(1) | |
| contains: ycheoar(1) | |
| cheockhy(10): (word length: 8 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: pc(1), yc(1) | |
| contains: pcheockhy(1), ycheockhy(1) | |
| cheocphy(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: pc(1) | |
| contains: pcheocphy(1) | |
| cheod(5): (word length: 5 / group items: 72) | |
| length: min=6, max=13, avg=8.3 | |
| top prefixes: ch(19), pc(6), tc(6), dc(5), qo(4) | |
| contains: cheody(89), cheodaiin(11), cheodain(8), cheodal(7), | |
| pcheody(7), tcheody(6), kcheody(5), cheodar(4), lcheody(3), | |
| okcheody(3), opcheody(3), pcheodar(3), qokcheody(3), ycheody(3), | |
| cheodam(2), cheodor(2), dcheody(2), fcheody(2), kcheodaiin(2), | |
| lcheod(2), olcheody(2), otcheody(2), qopcheody(2), ycheod(2), | |
| acheody(1), archeody(1), cheoda(1), cheodaiiin(1), cheodaiir(1), | |
| cheodalol(1), cheodchy(1), cheodeeey(1), cheodeey(1), | |
| cheodkedy(1), cheodl(1), cheodoiidaiin(1), cheopcheod(1), | |
| chpcheod(1), dcheod(1), dcheodaiin(1), dcheodain(1), dcheodl(1), | |
| etcheody(1), fcheodal(1), kcheodar(1), ltcheody(1), | |
| ocheodaiin(1), okcheod(1), opcheodair(1), opcheodal(1), | |
| otcheodaiin(1), otcheodar(1), pcheodaiin(1), pcheodain(1), | |
| pcheodal(1), pcheodchy(1), pocheody(1), qokcheodaiin(1), | |
| qoscheody(1), rcheodal(1), shetcheodchs(1), tcheod(1), | |
| tcheodaiin(1), tcheodal(1), tcheodar(1), tcheodl(1), | |
| ycheodain(1), yfcheodly(1), ykcheodain(1), ykcheody(1), | |
| ytcheodar(1), ytcheodytor(1) | |
| cheoda(1): (word length: 6 / group items: 30) | |
| length: min=7, max=12, avg=9.0 | |
| top prefixes: ch(8), pc(4), tc(3), kc(2), dc(2) | |
| contains: cheodaiin(11), cheodain(8), cheodal(7), cheodar(4), | |
| pcheodar(3), cheodam(2), kcheodaiin(2), cheodaiiin(1), | |
| cheodaiir(1), cheodalol(1), dcheodaiin(1), dcheodain(1), | |
| fcheodal(1), kcheodar(1), ocheodaiin(1), opcheodair(1), | |
| opcheodal(1), otcheodaiin(1), otcheodar(1), pcheodaiin(1), | |
| pcheodain(1), pcheodal(1), qokcheodaiin(1), rcheodal(1), | |
| tcheodaiin(1), tcheodal(1), tcheodar(1), ycheodain(1), | |
| ykcheodain(1), ytcheodar(1) | |
| cheodaiin(11): (word length: 9 / group items: 7) | |
| length: min=10, max=12, avg=10.4 | |
| top prefixes: kc(1), dc(1), oc(1), ot(1), pc(1) | |
| contains: kcheodaiin(2), dcheodaiin(1), ocheodaiin(1), otcheodaiin(1), | |
| pcheodaiin(1), qokcheodaiin(1), tcheodaiin(1) | |
| cheodain(8): (word length: 8 / group items: 4) | |
| length: min=9, max=10, avg=9.2 | |
| top prefixes: dc(1), pc(1), yc(1), yk(1) | |
| contains: dcheodain(1), pcheodain(1), ycheodain(1), ykcheodain(1) | |
| cheodal(7): (word length: 7 / group items: 6) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: ch(1), fc(1), op(1), pc(1), rc(1) | |
| contains: cheodalol(1), fcheodal(1), opcheodal(1), pcheodal(1), | |
| rcheodal(1), tcheodal(1) | |
| cheodar(4): (word length: 7 / group items: 5) | |
| length: min=8, max=9, avg=8.4 | |
| top prefixes: pc(1), kc(1), ot(1), tc(1), yt(1) | |
| contains: pcheodar(3), kcheodar(1), otcheodar(1), tcheodar(1), | |
| ytcheodar(1) | |
| cheodchy(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: pc(1) | |
| contains: pcheodchy(1) | |
| cheodl(1): (word length: 6 / group items: 3) | |
| length: min=7, max=9, avg=7.7 | |
| top prefixes: dc(1), tc(1), yf(1) | |
| contains: dcheodl(1), tcheodl(1), yfcheodly(1) | |
| cheody(89): (word length: 6 / group items: 21) | |
| length: min=7, max=11, avg=7.9 | |
| top prefixes: qo(3), pc(1), tc(1), kc(1), lc(1) | |
| contains: pcheody(7), tcheody(6), kcheody(5), lcheody(3), okcheody(3), | |
| opcheody(3), qokcheody(3), ycheody(3), dcheody(2), fcheody(2), | |
| olcheody(2), otcheody(2), qopcheody(2), acheody(1), archeody(1), | |
| etcheody(1), ltcheody(1), pocheody(1), qoscheody(1), ykcheody(1), | |
| ytcheodytor(1) | |
| cheoe(1): (word length: 5 / group items: 11) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: ch(8), kc(1), lc(1), pc(1) | |
| contains: cheoees(1), cheoekar(1), cheoekcy(1), cheoekeey(1), | |
| cheoekey(1), cheoepey(1), cheoepy(1), cheoet(1), kcheoey(1), | |
| lcheoekam(1), pcheoepchy(1) | |
| cheok(2): (word length: 5 / group items: 31) | |
| length: min=6, max=11, avg=8.2 | |
| top prefixes: ch(25), yc(1), dc(1), fc(1), ke(1) | |
| contains: cheoky(10), cheokeey(5), cheokain(4), cheokey(3), ycheoky(3), | |
| cheokaiin(2), cheokal(2), cheokam(2), cheokedy(2), cheokeeo(2), | |
| cheokeol(2), dcheoky(2), cheokaidy(1), cheokaiim(1), cheokaly(1), | |
| cheokar(1), cheokcheo(1), cheokchet(1), cheokchey(1), | |
| cheokchy(1), cheokeain(1), cheokeeos(1), cheokeo(1), | |
| cheokeodal(1), cheokeos(1), cheokor(1), cheokorchey(1), | |
| fcheokair(1), kecheokeo(1), pcheokeey(1), tcheoko(1) | |
| cheokal(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: cheokaly(1) | |
| cheokeeo(2): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: cheokeeos(1) | |
| cheokeey(5): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: pc(1) | |
| contains: pcheokeey(1) | |
| cheokeo(1): (word length: 7 / group items: 4) | |
| length: min=8, max=10, avg=8.8 | |
| top prefixes: ch(3), ke(1) | |
| contains: cheokeol(2), cheokeodal(1), cheokeos(1), kecheokeo(1) | |
| cheokor(1): (word length: 7 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ch(1) | |
| contains: cheokorchey(1) | |
| cheoky(10): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yc(1), dc(1) | |
| contains: ycheoky(3), dcheoky(2) | |
| cheol(173): (word length: 5 / group items: 73) | |
| length: min=6, max=14, avg=8.2 | |
| top prefixes: ch(27), qo(7), pc(4), fc(3), ok(3) | |
| contains: ycheol(14), pcheol(11), dcheol(8), lcheol(8), olcheol(8), | |
| opcheol(8), tcheol(6), cheoldy(5), cheoly(5), kcheol(5), | |
| cheols(3), qofcheol(3), qotcheol(3), cheolkeedy(2), cheolor(2), | |
| qolcheol(2), scheol(2), solcheol(2), cheolaiin(1), cheolchal(1), | |
| cheolchcthy(1), cheolchdaiin(1), cheolchdy(1), cheolchey(1), | |
| cheoldain(1), cheolkain(1), cheolkary(1), cheolkedy(1), | |
| cheolkeepchy(1), cheolkeey(1), cheolky(1), cheolpy(1), | |
| cheolshy(1), cheoltain(1), cheoltar(1), cheoltchedaiin(1), | |
| cheoltey(1), chepcheol(1), cholkcheol(1), chotcheol(1), | |
| dcheoldy(1), fcheol(1), fcheolain(1), fchodycheol(1), kcheoly(1), | |
| lcheolshedy(1), lfcheol(1), lkcheol(1), lklcheol(1), oalcheol(1), | |
| ocheol(1), ofcheol(1), okcheol(1), okearcheol(1), okilcheol(1), | |
| opcheolfy(1), orcheol(1), otcheol(1), otcheolom(1), otcheoly(1), | |
| pcheoldom(1), pcheolkal(1), pcheoly(1), polcheolkain(1), | |
| qocheol(1), qokalcheol(1), qokcheol(1), qopcheol(1), rcheold(1), | |
| scseykcheol(1), tcheolchy(1), ycheolk(1), ytecheol(1) | |
| cheoldy(5): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: dc(1) | |
| contains: dcheoldy(1) | |
| cheolkain(1): (word length: 9 / group items: 1) | |
| length: min=12, max=12, avg=12.0 | |
| top prefixes: po(1) | |
| contains: polcheolkain(1) | |
| cheols(3): (word length: 6 / group items: 2) | |
| length: min=8, max=11, avg=9.5 | |
| top prefixes: ch(1), lc(1) | |
| contains: cheolshy(1), lcheolshedy(1) | |
| cheoly(5): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: kc(1), ot(1), pc(1) | |
| contains: kcheoly(1), otcheoly(1), pcheoly(1) | |
| cheom(10): (word length: 5 / group items: 5) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: ch(1), ii(1), ol(1), sc(1), yc(1) | |
| contains: cheomam(1), iiincheom(1), olcheom(1), scheom(1), ycheom(1) | |
| cheoor(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: pc(1) | |
| contains: pcheoor(1) | |
| cheop(1): (word length: 5 / group items: 6) | |
| length: min=6, max=13, avg=9.5 | |
| top prefixes: ch(6) | |
| contains: cheopaiin(1), cheopcheod(1), cheopolteeedy(1), cheopor(1), | |
| cheopy(1), chopcheopchy(1) | |
| cheor(100): (word length: 5 / group items: 30) | |
| length: min=6, max=10, avg=7.1 | |
| top prefixes: ch(5), qo(4), yc(2), tc(2), pc(1) | |
| contains: ycheor(9), pcheor(5), dcheor(4), kcheor(4), otcheor(4), | |
| cheory(3), olcheor(3), tcheor(3), ykcheor(3), cheorol(2), | |
| lcheor(2), okcheor(2), opcheor(2), qokcheor(2), scheor(2), | |
| archeor(1), cheoral(1), cheoram(1), chpcheor(1), kocheor(1), | |
| ocheor(1), ofcheor(1), orcheory(1), oscheor(1), qocheor(1), | |
| qolcheor(1), qotecheor(1), shekcheor(1), tcheorsho(1), | |
| ycheoraiin(1) | |
| cheory(3): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: or(1) | |
| contains: orcheory(1) | |
| cheos(33): (word length: 5 / group items: 19) | |
| length: min=6, max=10, avg=7.2 | |
| top prefixes: ch(5), qo(2), dc(1), oc(1), pc(1) | |
| contains: dcheos(2), ocheos(2), pcheos(2), qopcheos(2), tcheos(2), | |
| cheosaiin(1), cheosdy(1), cheoseesey(1), chpcheos(1), | |
| chpkcheos(1), darcheos(1), fcheos(1), lcheos(1), olcheos(1), | |
| orcheos(1), otcheos(1), qokecheos(1), scheos(1), ycheos(1) | |
| cheot(1): (word length: 5 / group items: 19) | |
| length: min=6, max=11, avg=8.1 | |
| top prefixes: ch(15), dc(2), qo(1), yc(1) | |
| contains: cheoty(5), cheotey(2), cheotol(2), cheotaiin(1), cheotain(1), | |
| cheotam(1), cheotar(1), cheotchar(1), cheotchey(1), cheotchy(1), | |
| cheotdaiin(1), cheoteeo(1), cheoteeodal(1), cheoteey(1), | |
| cheotydy(1), dcheoteos(1), dcheoty(1), qocheoty(1), ycheoto(1) | |
| cheoteeo(1): (word length: 8 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ch(1) | |
| contains: cheoteeodal(1) | |
| cheoty(5): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: ch(1), dc(1), qo(1) | |
| contains: cheotydy(1), dcheoty(1), qocheoty(1) | |
| cheoy(4): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: pc(1) | |
| contains: pcheoy(1) | |
| chep(4): (word length: 4 / group items: 20) | |
| length: min=5, max=10, avg=7.9 | |
| top prefixes: ch(16), oc(2), dc(1), op(1) | |
| contains: chepy(7), chepar(4), chepchy(4), chepchedy(2), chepchey(2), | |
| chepaiin(1), chepakeo(1), chepcham(1), chepchar(1), chepchdy(1), | |
| chepched(1), chepchees(1), chepchefy(1), chepcheol(1), | |
| chepchx(1), chepol(1), dchepain(1), ochepalain(1), ochepchody(1), | |
| opchepy(1) | |
| chepched(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chepchedy(2) | |
| chepy(7): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: op(1) | |
| contains: opchepy(1) | |
| cher(5): (word length: 4 / group items: 5) | |
| length: min=5, max=12, avg=7.4 | |
| top prefixes: ch(2), yp(2), qo(1) | |
| contains: chery(1), chetesescher(1), qopcher(1), ypcher(1), ypchery(1) | |
| chery(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yp(1) | |
| contains: ypchery(1) | |
| ches(36): (word length: 4 / group items: 34) | |
| length: min=5, max=14, avg=6.8 | |
| top prefixes: ch(7), qo(4), ok(3), ot(2), lk(2) | |
| contains: chesy(3), otches(3), lkches(2), opches(2), sches(2), yches(2), | |
| alches(1), chesckhy(1), chese(1), chesey(1), cheshy(1), | |
| chesokeeoteody(1), chess(1), dalches(1), dylches(1), fcheshd(1), | |
| kolches(1), lkeches(1), oches(1), okches(1), okchesal(1), | |
| okchesy(1), olchesy(1), olpchesd(1), otolches(1), pchesfchy(1), | |
| qoches(1), qopches(1), qopchesy(1), qotches(1), rches(1), | |
| schesy(1), shlches(1), ykcheshd(1) | |
| chese(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ch(1) | |
| contains: chesey(1) | |
| chesy(3): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ok(1), ol(1), qo(1), sc(1) | |
| contains: okchesy(1), olchesy(1), qopchesy(1), schesy(1) | |
| chet(1): (word length: 4 / group items: 39) | |
| length: min=5, max=13, avg=7.7 | |
| top prefixes: ch(31), ot(2), cp(1), dc(1), kc(1) | |
| contains: chety(25), chetar(6), chetain(5), chetey(5), chetchy(4), | |
| chetaiin(3), chetedy(3), cheteey(3), chetody(2), chchetal(1), | |
| cheokchet(1), chetal(1), chetalshy(1), chetam(1), chetan(1), | |
| chetas(1), chetchaiin(1), chetchdy(1), chetchey(1), chetcho(1), | |
| chetchody(1), chetdy(1), chetechy(1), chetedar(1), cheteedy(1), | |
| cheteeeosaiin(1), chetegy(1), chetesescher(1), chetolain(1), | |
| chetshedy(1), chetshy(1), cpchety(1), dchetdy(1), kchetam(1), | |
| opchety(1), otchetchar(1), otorchety(1), qopchety(1), schety(1) | |
| chetal(1): (word length: 6 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ch(2) | |
| contains: chchetal(1), chetalshy(1) | |
| chetam(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: kc(1) | |
| contains: kchetam(1) | |
| chetcho(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chetchody(1) | |
| chetdy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dc(1) | |
| contains: dchetdy(1) | |
| chety(25): (word length: 5 / group items: 5) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: cp(1), op(1), ot(1), qo(1), sc(1) | |
| contains: cpchety(1), opchety(1), otorchety(1), qopchety(1), schety(1) | |
| chey(344): (word length: 4 / group items: 145) | |
| length: min=5, max=13, avg=7.3 | |
| top prefixes: ch(34), qo(13), ot(8), sh(8), ok(7) | |
| contains: lchey(45), okchey(32), otchey(31), qokchey(30), olchey(29), | |
| opchey(29), tchey(22), kchey(21), qotchey(19), dchey(18), | |
| ychey(17), pchey(12), ytchey(12), qolchey(11), qopchey(10), | |
| rchey(9), lkchey(8), ochey(8), orchey(6), qochey(6), ykchey(6), | |
| ofchey(5), schey(5), ypchey(5), alchey(4), olkchey(4), | |
| solchey(4), cheyky(3), chokchey(3), chotchey(3), yfchey(3), | |
| chechey(2), chepchey(2), cholchey(2), chopchey(2), dolchey(2), | |
| fchey(2), lkechey(2), okechey(2), okochey(2), okolchey(2), | |
| olfchey(2), olpchey(2), oltchey(2), otolchey(2), polchey(2), | |
| shchey(2), shopchey(2), adchey(1), chedchey(1), cheekchey(1), | |
| chefchey(1), chekchey(1), cheokchey(1), cheokorchey(1), | |
| cheolchey(1), cheotchey(1), chetchey(1), cheyd(1), cheykaiin(1), | |
| cheykain(1), cheykechey(1), cheykedy(1), cheykeeed(1), | |
| cheykeeoy(1), cheykey(1), cheyl(1), cheyor(1), cheys(1), | |
| cheytal(1), cheytey(1), cheyty(1), chotcheytchol(1), chpchey(1), | |
| chtchey(1), chypchey(1), ctchey(1), dairchey(1), darchey(1), | |
| dcheytain(1), dsechey(1), ekchey(1), epchey(1), folchey(1), | |
| kechey(1), keechey(1), keolchey(1), kolchey(1), ksholochey(1), | |
| lcheylchy(1), ldchey(1), lkeechey(1), llchey(1), lochey(1), | |
| lpchey(1), ltchey(1), odchey(1), ofychey(1), okachey(1), | |
| okaeechey(1), okalsalchey(1), olkeechey(1), ololchey(1), | |
| orlchey(1), oshchey(1), otcheypchedy(1), oteedchey(1), | |
| oteeedchey(1), oteochey(1), otokchey(1), otychey(1), pochey(1), | |
| podchey(1), pofochey(1), porchey(1), qepchey(1), qoctchey(1), | |
| qofchey(1), qokalchey(1), qokechey(1), qokeechey(1), | |
| qokeeolchey(1), qokolchey(1), qoochey(1), qykchey(1), | |
| rfchykchey(1), rolchey(1), rpchey(1), shekchey(1), shkchey(1), | |
| shokchey(1), sholschey(1), shorchey(1), shotchey(1), sochey(1), | |
| tcheepchey(1), tchotchey(1), teolkechey(1), tochey(1), | |
| torchey(1), typchey(1), ykechey(1), yrchey(1), yshchey(1), | |
| ytoeopchey(1) | |
| cheyl(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: lc(1) | |
| contains: lcheylchy(1) | |
| chhy(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1) | |
| contains: okchhy(1) | |
| chk(1): (word length: 3 / group items: 54) | |
| length: min=4, max=12, avg=6.9 | |
| top prefixes: ch(44), yc(2), al(1), ec(1), ko(1) | |
| contains: chkaiin(18), chky(18), chkal(13), chkeey(13), chkain(12), | |
| chkar(12), chkey(8), chkchy(6), chkedy(5), chkam(3), chkchol(3), | |
| chkol(3), chkaly(2), chkeedy(2), chkoldy(2), alchky(1), | |
| chchky(1), chka(1), chkaidararal(1), chkalar(1), chkalchy(1), | |
| chkarol(1), chkas(1), chkchdar(1), chkchean(1), chkchedaram(1), | |
| chkcheean(1), chkchod(1), chkchody(1), chkchory(1), | |
| chkchykoly(1), chkdain(1), chkeaiin(1), chkear(1), chkeeal(1), | |
| chkeeey(1), chkeeody(1), chkeody(1), chkeor(1), chko(1), | |
| chkodal(1), chkor(1), chkorchy(1), chkoy(1), chkshy(1), | |
| echkolal(1), kochky(1), ochkchar(1), oepchksheey(1), | |
| qokchkeey(1), solchkal(1), tchkaiin(1), ychkl(1), ychky(1) | |
| chka(1): (word length: 4 / group items: 13) | |
| length: min=5, max=12, avg=6.8 | |
| top prefixes: ch(11), so(1), tc(1) | |
| contains: chkaiin(18), chkal(13), chkain(12), chkar(12), chkam(3), | |
| chkaly(2), chkaidararal(1), chkalar(1), chkalchy(1), chkarol(1), | |
| chkas(1), solchkal(1), tchkaiin(1) | |
| chkaiin(18): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: tc(1) | |
| contains: tchkaiin(1) | |
| chkal(13): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: ch(3), so(1) | |
| contains: chkaly(2), chkalar(1), chkalchy(1), solchkal(1) | |
| chkar(12): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chkarol(1) | |
| chkchod(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chkchody(1) | |
| chkchy(6): (word length: 6 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: chkchykoly(1) | |
| chkeey(13): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokchkeey(1) | |
| chko(1): (word length: 4 / group items: 7) | |
| length: min=5, max=8, avg=6.4 | |
| top prefixes: ch(6), ec(1) | |
| contains: chkol(3), chkoldy(2), chkodal(1), chkor(1), chkorchy(1), | |
| chkoy(1), echkolal(1) | |
| chkol(3): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(1), ec(1) | |
| contains: chkoldy(2), echkolal(1) | |
| chkor(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chkorchy(1) | |
| chky(18): (word length: 4 / group items: 4) | |
| length: min=5, max=6, avg=5.8 | |
| top prefixes: al(1), ch(1), ko(1), yc(1) | |
| contains: alchky(1), chchky(1), kochky(1), ychky(1) | |
| chl(26): (word length: 3 / group items: 25) | |
| length: min=4, max=11, avg=5.6 | |
| top prefixes: ch(14), ra(2), lc(1), al(1), do(1) | |
| contains: chls(3), chlar(2), chll(2), lchl(2), alchl(1), chlaiiin(1), | |
| chlal(1), chlam(1), chlchd(1), chlchpsheey(1), chldaiin(1), | |
| chllo(1), chlol(1), chlor(1), chlr(1), chly(1), dolchl(1), | |
| okechly(1), orchl(1), otchl(1), polchls(1), ralchl(1), | |
| rarolchl(1), rchl(1), ytchl(1) | |
| chll(2): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ch(1) | |
| contains: chllo(1) | |
| chls(3): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: po(1) | |
| contains: polchls(1) | |
| chly(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okechly(1) | |
| cho(69): (word length: 3 / group items: 740) | |
| length: min=4, max=15, avg=7.2 | |
| top prefixes: ch(325), qo(37), ot(32), tc(32), pc(31) | |
| contains: chol(397), chor(220), chody(94), chodaiin(44), choky(39), | |
| chos(38), choty(37), otchol(28), dchol(26), dchor(26), | |
| chockhy(21), kchol(21), kchor(20), okchor(20), tchor(19), | |
| chocthy(18), otchor(18), qokchol(18), chokaiin(17), chokchy(16), | |
| ychor(16), choly(15), chom(15), okchol(15), chodar(14), | |
| qotchor(14), choiin(13), choy(13), qotchol(13), tchol(13), | |
| ytchor(13), chory(12), chotchy(12), pchor(12), ychol(12), | |
| chokain(11), chokeey(11), chotar(11), otcho(11), qokchor(11), | |
| qotcho(11), choldy(10), qokcho(10), chod(9), chodain(9), | |
| chokal(9), chotaiin(9), chotal(9), chotey(9), okcho(9), pchol(8), | |
| tcho(8), tchody(8), choaiin(7), chodal(7), chokar(7), chokey(7), | |
| choteey(7), chotol(7), chocthey(6), chokor(6), kcho(6), | |
| kchody(6), lchor(6), ochor(6), opchol(6), opchor(6), otchody(6), | |
| qopchol(6), ykcho(6), ykchol(6), ytchol(6), chockhey(5), chok(5), | |
| chokeody(5), chokeol(5), cholody(5), cholor(5), chopchy(5), | |
| choraiin(5), chotam(5), dcho(5), ochol(5), pchodaiin(5), | |
| pchody(5), schol(5), ycho(5), ykchor(5), ytchody(5), chochy(4), | |
| chodchy(4), chokam(4), chokchol(4), chokol(4), cholaiin(4), | |
| cholal(4), cholkaiin(4), cholky(4), chosaiin(4), chot(4), | |
| chotain(4), chotor(4), lchol(4), otchos(4), qokchod(4), tchos(4), | |
| ykchody(4), chkchol(3), choar(3), chocphy(3), chodaly(3), | |
| chokchey(3), chokedy(3), chokeedy(3), chokody(3), cholkal(3), | |
| cholkar(3), cholkeedy(3), cholo(3), chols(3), chopy(3), | |
| chorol(3), choror(3), choshy(3), chotchey(3), choteol(3), | |
| choto(3), chotols(3), dchokchy(3), dchos(3), fchol(3), fchor(3), | |
| kchod(3), kchos(3), lcho(3), lchody(3), okchody(3), olchor(3), | |
| otchod(3), pchocthy(3), pchodain(3), qopchor(3), qotchody(3), | |
| schor(3), tchodaiin(3), ypchol(3), ytchoy(3), alchor(2), | |
| chochor(2), chockhar(2), chockhdy(2), chocty(2), chodair(2), | |
| chodalg(2), chodey(2), chodo(2), chodol(2), chodr(2), choeey(2), | |
| choekeey(2), chofchy(2), choikhy(2), chokaly(2), chokan(2), | |
| chokchaiin(2), chokchedy(2), chokcho(2), chokeeey(2), | |
| chokeeody(2), chokeo(2), choko(2), chokshor(2), cholairy(2), | |
| cholar(2), cholchedy(2), cholchey(2), cholkain(2), cholkeeey(2), | |
| cholol(2), cholols(2), chool(2), choor(2), chop(2), chopchedy(2), | |
| chopchey(2), chorain(2), chordy(2), chosar(2), chotchdy(2), | |
| chotedy(2), chotom(2), chotshol(2), dchodaiin(2), dchody(2), | |
| dchog(2), fchodaiin(2), fcholdy(2), kchokchy(2), kchom(2), | |
| kchoy(2), ocho(2), ochody(2), oepchol(2), ofchor(2), okchod(2), | |
| okchoda(2), okchom(2), okchoy(2), opchody(2), opcholor(2), | |
| otchodar(2), otchoky(2), otchoshy(2), pcho(2), pchodar(2), | |
| pchodol(2), pcholky(2), pcholy(2), qocho(2), qochol(2), | |
| qofchol(2), qokchody(2), qotchod(2), qotchoiin(2), schody(2), | |
| shopcho(2), tchod(2), tchodar(2), tchoky(2), tcholol(2), | |
| tchols(2), ychocthy(2), ychody(2), ykecho(2), ypchor(2), | |
| ytcho(2), ytchos(2), alchol(1), ararchodaiin(1), archol(1), | |
| chchoty(1), chdchol(1), chechol(1), cheeetchol(1), chefchol(1), | |
| chekchoy(1), chetcho(1), chetchody(1), chfchol(1), chkchod(1), | |
| chkchody(1), chkchory(1), choal(1), chocfhdy(1), chocfhhg(1), | |
| chocfhor(1), chocfhy(1), chochar(1), chochs(1), chockhed(1), | |
| chockhedy(1), chockhhor(1), chockhhy(1), chockhol(1), | |
| chockhor(1), chocpheod(1), chocphol(1), chocphor(1), chocthar(1), | |
| chocthedy(1), choctheeey(1), chocthody(1), choctoy(1), | |
| chodaiindy(1), chodalar(1), chodalr(1), chodam(1), choddal(1), | |
| choddy(1), chodl(1), chodoldy(1), chodykchy(1), chodys(1), | |
| choeee(1), choeees(1), choees(1), choeesy(1), choefy(1), | |
| choek(1), choekchchy(1), choekchy(1), choekeeos(1), choekey(1), | |
| choeky(1), choetchaldy(1), choetchy(1), choeteedy(1), choetey(1), | |
| choety(1), chof(1), chofaly(1), chofary(1), chofchdy(1), | |
| chofchody(1), chofchol(1), chofochcphdy(1), chofol(1), chofy(1), | |
| chofydy(1), choikhedy(1), choiphy(1), chokair(1), chokaro(1), | |
| chokcheey(1), chokcheo(1), chokchodaiin(1), chokchor(1), | |
| chokcod(1), chokeal(1), choked(1), chokedair(1), chokeear(1), | |
| chokeed(1), chokeedam(1), chokeeo(1), chokeeodol(1), | |
| chokeeoky(1), chokeeor(1), chokees(1), chokeod(1), chokeor(1), | |
| chokeos(1), chokesey(1), chokoaiin(1), chokoiin(1), chokoishe(1), | |
| chokokor(1), chokoldy(1), chokolg(1), chokoran(1), chokory(1), | |
| chokshchy(1), chokshy(1), choksy(1), chokyt(1), cholaiim(1), | |
| cholaly(1), cholam(1), cholchaiin(1), cholcham(1), choldaiin(1), | |
| choldal(1), choldar(1), choldchy(1), choldshy(1), cholfchy(1), | |
| cholfor(1), cholfy(1), cholkched(1), cholkcheol(1), cholkchy(1), | |
| cholkeeedy(1), cholkeey(1), cholkeod(1), cholkshedy(1), | |
| chololer(1), chololy(1), choloro(1), cholp(1), cholpchd(1), | |
| cholraly(1), cholsho(1), choltaiin(1), choltal(1), choltaly(1), | |
| choltam(1), choltar(1), cholty(1), cholxy(1), chon(1), choo(1), | |
| choody(1), choolkeey(1), chopar(1), chopchal(1), chopchdy(1), | |
| chopcheey(1), chopcheopchy(1), chopcho(1), chopchol(1), | |
| chopdain(1), chopo(1), chopol(1), choraly(1), chorar(1), | |
| chorcholsal(1), chorchor(1), chorchy(1), chordom(1), choro(1), | |
| chorochy(1), chorody(1), choroiin(1), chorolk(1), chorom(1), | |
| choross(1), chosals(1), chosaroshol(1), choschy(1), choshydy(1), | |
| chosory(1), chosy(1), chotair(1), chotais(1), chotals(1), | |
| chotchedy(1), chotcheey(1), chotcheol(1), chotcheytchol(1), | |
| chotcho(1), chotchody(1), chotchol(1), chotchs(1), chotear(1), | |
| choteedy(1), choteeen(1), choteeey(1), chotehy(1), choteody(1), | |
| choteoky(1), choteoly(1), choteos(1), chotody(1), chots(1), | |
| chotshe(1), chotshy(1), chotyokchy(1), chotyr(1), choypshedy(1), | |
| chpchol(1), chtchol(1), chtchor(1), ckcho(1), ckchol(1), | |
| cphokchol(1), dalchor(1), darchor(1), dchochar(1), dchod(1), | |
| dchodar(1), dchodees(1), dchokchr(1), dchokey(1), dchokol(1), | |
| dcholal(1), dcholdy(1), dcholy(1), dchom(1), dchorol(1), | |
| dchoty(1), dechoekol(1), dochod(1), dolchoy(1), dorchory(1), | |
| dychokchy(1), dytchor(1), ekchody(1), esechor(1), etocho(1), | |
| fchcho(1), fcho(1), fchochor(1), fchocthar(1), fchoctheody(1), | |
| fchodees(1), fchodycheol(1), fchoiin(1), fchokshy(1), fchoky(1), | |
| fcholy(1), fchom(1), fchosaiin(1), fchoy(1), fochof(1), | |
| fochor(1), folchol(1), folchor(1), kchoan(1), kchoar(1), | |
| kchochaiin(1), kchochy(1), kchodan(1), kcholchdar(1), kcholy(1), | |
| kchorchor(1), kchorl(1), kchoror(1), kchoty(1), kdchody(1), | |
| kechodshey(1), kechody(1), kochor(1), kotchody(1), lchoar(1), | |
| lchod(1), lcholkaiin(1), lkchol(1), lkchor(1), lkechor(1), | |
| lolchor(1), lpychol(1), ochepchody(1), ochoaiin(1), ochockhy(1), | |
| ochodare(1), ochoiky(1), ochokeey(1), ocholdy(1), ocholshod(1), | |
| ocholy(1), ochory(1), ochos(1), ochoyk(1), odshchol(1), ofcho(1), | |
| ofchol(1), ofchory(1), ofchoshy(1), okaiifchody(1), okchoal(1), | |
| okchochor(1), okchocthy(1), okchodeey(1), okchodshy(1), | |
| okchoiiin(1), okchokol(1), okchokshy(1), okchop(1), okchos(1), | |
| okchosam(1), okchoteees(1), okechod(1), okechoked(1), okechol(1), | |
| okecholy(1), okechoy(1), okeechor(1), okokchodm(1), olcho(1), | |
| olchocfhy(1), olchod(1), olchoiin(1), olchokal(1), olfchor(1), | |
| olkcho(1), olkchokeedy(1), oochockhy(1), opcho(1), opchod(1), | |
| opcholalaiin(1), opcholdg(1), opcholdy(1), opchordy(1), | |
| opchosam(1), opodchol(1), orcho(1), orchoer(1), orchor(1), | |
| oscho(1), oschotshl(1), otarcho(1), otarchol(1), otchodal(1), | |
| otchodals(1), otchodor(1), otcholcheaiin(1), otcholchy(1), | |
| otcholocthol(1), otchom(1), otchordy(1), otchotor(1), otchoty(1), | |
| otchoy(1), otechodor(1), otechol(1), otedchor(1), oteeolchor(1), | |
| oteochor(1), otochor(1), otokcho(1), otolfcho(1), otshchor(1), | |
| otytchol(1), oykchor(1), pchocty(1), pchod(1), pchodair(1), | |
| pchodais(1), pchodal(1), pchoetal(1), pchof(1), pchofar(1), | |
| pchofychy(1), pchoiiin(1), pcholkal(1), pcholkchdy(1), | |
| pcholkeedy(1), pcholor(1), pchom(1), pchooiin(1), pchoraiin(1), | |
| pchoror(1), pchosos(1), pchotchy(1), pdychoiin(1), pochor(1), | |
| poldchody(1), porechol(1), potchokar(1), pychory(1), qchodal(1), | |
| qchor(1), qekeochor(1), qochodaiin(1), qochoithy(1), qofcho(1), | |
| qofchor(1), qokchocthor(1), qokchodal(1), qokchon(1), | |
| qokchory(1), qokchos(1), qokecho(1), qokeechom(1), qopchody(1), | |
| qopcholy(1), qopchypcho(1), qoschodam(1), qotcholm(1), | |
| qotchoraiin(1), qotchos(1), qotchotchy(1), qotechoep(1), | |
| qoypchol(1), rcho(1), rchody(1), rchol(1), rchos(1), rotcho(1), | |
| rychos(1), saiichor(1), samchorly(1), scho(1), schoal(1), | |
| schocthhy(1), schodain(1), schodar(1), schodchy(1), schokey(1), | |
| schold(1), schos(1), schoshe(1), shechol(1), shepchol(1), | |
| shkchody(1), shkchor(1), shocho(1), shochol(1), sholfchor(1), | |
| shorpchor(1), shotcho(1), shotchot(1), sochorcfhy(1), | |
| soefchocphy(1), sokchol(1), sokchor(1), talchos(1), tchoar(1), | |
| tchoarorshy(1), tchodain(1), tchodairos(1), tchodls(1), | |
| tchodol(1), tchoep(1), tchokedy(1), tchokyd(1), tcholdchy(1), | |
| tcholkaiin(1), tcholshol(1), tcholy(1), tchom(1), tchory(1), | |
| tchosos(1), tchotchey(1), tchotchol(1), tchotchor(1), | |
| tchotshey(1), tchtcho(1), techol(1), tochody(1), tochol(1), | |
| tochon(1), tolchor(1), tolchory(1), ychockaey(1), ychockhy(1), | |
| ychodaiin(1), ychoees(1), ychok(1), ychom(1), ychoopy(1), | |
| ychopordg(1), ychos(1), ychosar(1), ychoy(1), ydarchom(1), | |
| ydchos(1), yfchor(1), ykchochdy(1), ykchokeo(1), ykcholqod(1), | |
| ykcholy(1), ykchom(1), ykchon(1), ykchos(1), ykchotchy(1), | |
| ykechod(1), ykechody(1), ykeeochody(1), ylcho(1), yochor(1), | |
| ypchocfy(1), ypchocpheosaiin(1), ypcholdy(1), ypcholy(1), | |
| ytalchos(1), ytchodaiin(1), ytchodyy(1), ytchoky(1), ytchom(1) | |
| choaiin(7): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: oc(1) | |
| contains: ochoaiin(1) | |
| choal(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ok(1), sc(1) | |
| contains: okchoal(1), schoal(1) | |
| choar(3): (word length: 5 / group items: 4) | |
| length: min=6, max=11, avg=7.2 | |
| top prefixes: tc(2), kc(1), lc(1) | |
| contains: kchoar(1), lchoar(1), tchoar(1), tchoarorshy(1) | |
| chocfhy(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ol(1) | |
| contains: olchocfhy(1) | |
| chochar(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: dc(1) | |
| contains: dchochar(1) | |
| chochor(2): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: fc(1), ok(1) | |
| contains: fchochor(1), okchochor(1) | |
| chochy(4): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: kc(1) | |
| contains: kchochy(1) | |
| chockhed(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chockhedy(1) | |
| chockhy(21): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: oc(1), oo(1), yc(1) | |
| contains: ochockhy(1), oochockhy(1), ychockhy(1) | |
| chocphy(3): (word length: 7 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: so(1) | |
| contains: soefchocphy(1) | |
| chocthar(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: fc(1) | |
| contains: fchocthar(1) | |
| chocthy(18): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: pc(1), yc(1), ok(1) | |
| contains: pchocthy(3), ychocthy(2), okchocthy(1) | |
| chocty(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: pc(1) | |
| contains: pchocty(1) | |
| chod(9): (word length: 4 / group items: 113) | |
| length: min=5, max=12, avg=7.5 | |
| top prefixes: ch(29), pc(9), tc(8), qo(8), ok(8) | |
| contains: chody(94), chodaiin(44), chodar(14), chodain(9), tchody(8), | |
| chodal(7), kchody(6), otchody(6), pchodaiin(5), pchody(5), | |
| ytchody(5), chodchy(4), qokchod(4), ykchody(4), chodaly(3), | |
| kchod(3), lchody(3), okchody(3), otchod(3), pchodain(3), | |
| qotchody(3), tchodaiin(3), chodair(2), chodalg(2), chodey(2), | |
| chodo(2), chodol(2), chodr(2), dchodaiin(2), dchody(2), | |
| fchodaiin(2), ochody(2), okchod(2), okchoda(2), opchody(2), | |
| otchodar(2), pchodar(2), pchodol(2), qokchody(2), qotchod(2), | |
| schody(2), tchod(2), tchodar(2), ychody(2), ararchodaiin(1), | |
| chetchody(1), chkchod(1), chkchody(1), chodaiindy(1), | |
| chodalar(1), chodalr(1), chodam(1), choddal(1), choddy(1), | |
| chodl(1), chodoldy(1), chodykchy(1), chodys(1), chofchody(1), | |
| chokchodaiin(1), chotchody(1), dchod(1), dchodar(1), dchodees(1), | |
| dochod(1), ekchody(1), fchodees(1), fchodycheol(1), kchodan(1), | |
| kdchody(1), kechodshey(1), kechody(1), kotchody(1), lchod(1), | |
| ochepchody(1), ochodare(1), okaiifchody(1), okchodeey(1), | |
| okchodshy(1), okechod(1), okokchodm(1), olchod(1), opchod(1), | |
| otchodal(1), otchodals(1), otchodor(1), otechodor(1), pchod(1), | |
| pchodair(1), pchodais(1), pchodal(1), poldchody(1), qchodal(1), | |
| qochodaiin(1), qokchodal(1), qopchody(1), qoschodam(1), | |
| rchody(1), schodain(1), schodar(1), schodchy(1), shkchody(1), | |
| tchodain(1), tchodairos(1), tchodls(1), tchodol(1), tochody(1), | |
| ychodaiin(1), ykechod(1), ykechody(1), ykeeochody(1), | |
| ytchodaiin(1), ytchodyy(1) | |
| chodaiin(44): (word length: 8 / group items: 10) | |
| length: min=9, max=12, avg=9.9 | |
| top prefixes: ch(2), pc(1), tc(1), dc(1), fc(1) | |
| contains: pchodaiin(5), tchodaiin(3), dchodaiin(2), fchodaiin(2), | |
| ararchodaiin(1), chodaiindy(1), chokchodaiin(1), qochodaiin(1), | |
| ychodaiin(1), ytchodaiin(1) | |
| chodain(9): (word length: 7 / group items: 3) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: pc(1), sc(1), tc(1) | |
| contains: pchodain(3), schodain(1), tchodain(1) | |
| chodair(2): (word length: 7 / group items: 2) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: pc(1), tc(1) | |
| contains: pchodair(1), tchodairos(1) | |
| chodal(7): (word length: 6 / group items: 9) | |
| length: min=7, max=9, avg=7.7 | |
| top prefixes: ch(4), ot(2), pc(1), qc(1), qo(1) | |
| contains: chodaly(3), chodalg(2), chodalar(1), chodalr(1), otchodal(1), | |
| otchodals(1), pchodal(1), qchodal(1), qokchodal(1) | |
| chodam(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qoschodam(1) | |
| chodar(14): (word length: 6 / group items: 6) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ot(1), pc(1), tc(1), dc(1), oc(1) | |
| contains: otchodar(2), pchodar(2), tchodar(2), dchodar(1), ochodare(1), | |
| schodar(1) | |
| chodchy(4): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sc(1) | |
| contains: schodchy(1) | |
| chodl(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: tc(1) | |
| contains: tchodls(1) | |
| chodo(2): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ch(2), ot(2), pc(1), tc(1) | |
| contains: chodol(2), pchodol(2), chodoldy(1), otchodor(1), otechodor(1), | |
| tchodol(1) | |
| chodol(2): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: pc(1), ch(1), tc(1) | |
| contains: pchodol(2), chodoldy(1), tchodol(1) | |
| chody(94): (word length: 5 / group items: 36) | |
| length: min=6, max=11, avg=7.6 | |
| top prefixes: ch(6), yk(3), qo(3), yt(2), ok(2) | |
| contains: tchody(8), kchody(6), otchody(6), pchody(5), ytchody(5), | |
| ykchody(4), lchody(3), okchody(3), qotchody(3), dchody(2), | |
| ochody(2), opchody(2), qokchody(2), schody(2), ychody(2), | |
| chetchody(1), chkchody(1), chodykchy(1), chodys(1), chofchody(1), | |
| chotchody(1), ekchody(1), fchodycheol(1), kdchody(1), kechody(1), | |
| kotchody(1), ochepchody(1), okaiifchody(1), poldchody(1), | |
| qopchody(1), rchody(1), shkchody(1), tochody(1), ykechody(1), | |
| ykeeochody(1), ytchodyy(1) | |
| choeee(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: choeees(1) | |
| choees(1): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1), yc(1) | |
| contains: choeesy(1), ychoees(1) | |
| choek(1): (word length: 5 / group items: 7) | |
| length: min=6, max=10, avg=8.1 | |
| top prefixes: ch(6), de(1) | |
| contains: choekeey(2), choekchchy(1), choekchy(1), choekeeos(1), | |
| choekey(1), choeky(1), dechoekol(1) | |
| chof(1): (word length: 4 / group items: 14) | |
| length: min=5, max=12, avg=7.4 | |
| top prefixes: ch(10), pc(3), fo(1) | |
| contains: chofchy(2), chofaly(1), chofary(1), chofchdy(1), chofchody(1), | |
| chofchol(1), chofochcphdy(1), chofol(1), chofy(1), chofydy(1), | |
| fochof(1), pchof(1), pchofar(1), pchofychy(1) | |
| chofy(1): (word length: 5 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(1), pc(1) | |
| contains: chofydy(1), pchofychy(1) | |
| choiin(13): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=8.2 | |
| top prefixes: qo(1), fc(1), ol(1), pd(1) | |
| contains: qotchoiin(2), fchoiin(1), olchoiin(1), pdychoiin(1) | |
| chok(5): (word length: 4 / group items: 85) | |
| length: min=5, max=12, avg=7.6 | |
| top prefixes: ch(62), dc(4), tc(3), ok(3), fc(2) | |
| contains: choky(39), chokaiin(17), chokchy(16), chokain(11), | |
| chokeey(11), chokal(9), chokar(7), chokey(7), chokor(6), | |
| chokeody(5), chokeol(5), chokam(4), chokchol(4), chokol(4), | |
| chokchey(3), chokedy(3), chokeedy(3), chokody(3), dchokchy(3), | |
| chokaly(2), chokan(2), chokchaiin(2), chokchedy(2), chokcho(2), | |
| chokeeey(2), chokeeody(2), chokeo(2), choko(2), chokshor(2), | |
| kchokchy(2), otchoky(2), tchoky(2), chokair(1), chokaro(1), | |
| chokcheey(1), chokcheo(1), chokchodaiin(1), chokchor(1), | |
| chokcod(1), chokeal(1), choked(1), chokedair(1), chokeear(1), | |
| chokeed(1), chokeedam(1), chokeeo(1), chokeeodol(1), | |
| chokeeoky(1), chokeeor(1), chokees(1), chokeod(1), chokeor(1), | |
| chokeos(1), chokesey(1), chokoaiin(1), chokoiin(1), chokoishe(1), | |
| chokokor(1), chokoldy(1), chokolg(1), chokoran(1), chokory(1), | |
| chokshchy(1), chokshy(1), choksy(1), chokyt(1), dchokchr(1), | |
| dchokey(1), dchokol(1), dychokchy(1), fchokshy(1), fchoky(1), | |
| ochokeey(1), okchokol(1), okchokshy(1), okechoked(1), | |
| olchokal(1), olkchokeedy(1), potchokar(1), schokey(1), | |
| tchokedy(1), tchokyd(1), ychok(1), ykchokeo(1), ytchoky(1) | |
| chokal(9): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(1), ol(1) | |
| contains: chokaly(2), olchokal(1) | |
| chokar(7): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(1), po(1) | |
| contains: chokaro(1), potchokar(1) | |
| chokcho(2): (word length: 7 / group items: 3) | |
| length: min=8, max=12, avg=9.3 | |
| top prefixes: ch(3) | |
| contains: chokchol(4), chokchodaiin(1), chokchor(1) | |
| chokchy(16): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: dc(1), kc(1), dy(1) | |
| contains: dchokchy(3), kchokchy(2), dychokchy(1) | |
| choked(1): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=8.2 | |
| top prefixes: ch(2), ok(1), tc(1) | |
| contains: chokedy(3), chokedair(1), okechoked(1), tchokedy(1) | |
| chokedy(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: tc(1) | |
| contains: tchokedy(1) | |
| chokeed(1): (word length: 7 / group items: 3) | |
| length: min=8, max=11, avg=9.3 | |
| top prefixes: ch(2), ol(1) | |
| contains: chokeedy(3), chokeedam(1), olkchokeedy(1) | |
| chokeedy(3): (word length: 8 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ol(1) | |
| contains: olkchokeedy(1) | |
| chokeeo(1): (word length: 7 / group items: 4) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: ch(4) | |
| contains: chokeeody(2), chokeeodol(1), chokeeoky(1), chokeeor(1) | |
| chokeey(11): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: oc(1) | |
| contains: ochokeey(1) | |
| chokeo(2): (word length: 6 / group items: 6) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ch(5), yk(1) | |
| contains: chokeody(5), chokeol(5), chokeod(1), chokeor(1), chokeos(1), | |
| ykchokeo(1) | |
| chokeod(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chokeody(5) | |
| chokey(7): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dc(1), sc(1) | |
| contains: dchokey(1), schokey(1) | |
| choko(2): (word length: 5 / group items: 13) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ch(11), dc(1), ok(1) | |
| contains: chokor(6), chokol(4), chokody(3), chokoaiin(1), chokoiin(1), | |
| chokoishe(1), chokokor(1), chokoldy(1), chokolg(1), chokoran(1), | |
| chokory(1), dchokol(1), okchokol(1) | |
| chokol(4): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(2), dc(1), ok(1) | |
| contains: chokoldy(1), chokolg(1), dchokol(1), okchokol(1) | |
| chokor(6): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(2) | |
| contains: chokoran(1), chokory(1) | |
| chokshy(1): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: fc(1), ok(1) | |
| contains: fchokshy(1), okchokshy(1) | |
| choky(39): (word length: 5 / group items: 6) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: tc(2), ot(1), ch(1), fc(1), yt(1) | |
| contains: otchoky(2), tchoky(2), chokyt(1), fchoky(1), tchokyd(1), | |
| ytchoky(1) | |
| chol(397): (word length: 4 / group items: 152) | |
| length: min=5, max=13, avg=7.4 | |
| top prefixes: ch(69), qo(8), tc(8), ot(7), pc(7) | |
| contains: otchol(28), dchol(26), kchol(21), qokchol(18), choly(15), | |
| okchol(15), qotchol(13), tchol(13), ychol(12), choldy(10), | |
| pchol(8), opchol(6), qopchol(6), ykchol(6), ytchol(6), | |
| cholody(5), cholor(5), ochol(5), schol(5), chokchol(4), | |
| cholaiin(4), cholal(4), cholkaiin(4), cholky(4), lchol(4), | |
| chkchol(3), cholkal(3), cholkar(3), cholkeedy(3), cholo(3), | |
| chols(3), fchol(3), ypchol(3), cholairy(2), cholar(2), | |
| cholchedy(2), cholchey(2), cholkain(2), cholkeeey(2), cholol(2), | |
| cholols(2), fcholdy(2), oepchol(2), opcholor(2), pcholky(2), | |
| pcholy(2), qochol(2), qofchol(2), tcholol(2), tchols(2), | |
| alchol(1), archol(1), chdchol(1), chechol(1), cheeetchol(1), | |
| chefchol(1), chfchol(1), chofchol(1), cholaiim(1), cholaly(1), | |
| cholam(1), cholchaiin(1), cholcham(1), choldaiin(1), choldal(1), | |
| choldar(1), choldchy(1), choldshy(1), cholfchy(1), cholfor(1), | |
| cholfy(1), cholkched(1), cholkcheol(1), cholkchy(1), | |
| cholkeeedy(1), cholkeey(1), cholkeod(1), cholkshedy(1), | |
| chololer(1), chololy(1), choloro(1), cholp(1), cholpchd(1), | |
| cholraly(1), cholsho(1), choltaiin(1), choltal(1), choltaly(1), | |
| choltam(1), choltar(1), cholty(1), cholxy(1), chopchol(1), | |
| chorcholsal(1), chotcheytchol(1), chotchol(1), chpchol(1), | |
| chtchol(1), ckchol(1), cphokchol(1), dcholal(1), dcholdy(1), | |
| dcholy(1), fcholy(1), folchol(1), kcholchdar(1), kcholy(1), | |
| lcholkaiin(1), lkchol(1), lpychol(1), ocholdy(1), ocholshod(1), | |
| ocholy(1), odshchol(1), ofchol(1), okechol(1), okecholy(1), | |
| opcholalaiin(1), opcholdg(1), opcholdy(1), opodchol(1), | |
| otarchol(1), otcholcheaiin(1), otcholchy(1), otcholocthol(1), | |
| otechol(1), otytchol(1), pcholkal(1), pcholkchdy(1), | |
| pcholkeedy(1), pcholor(1), porechol(1), qopcholy(1), qotcholm(1), | |
| qoypchol(1), rchol(1), schold(1), shechol(1), shepchol(1), | |
| shochol(1), sokchol(1), tcholdchy(1), tcholkaiin(1), | |
| tcholshol(1), tcholy(1), tchotchol(1), techol(1), tochol(1), | |
| ykcholqod(1), ykcholy(1), ypcholdy(1), ypcholy(1) | |
| cholal(4): (word length: 6 / group items: 3) | |
| length: min=7, max=12, avg=8.7 | |
| top prefixes: ch(1), dc(1), op(1) | |
| contains: cholaly(1), dcholal(1), opcholalaiin(1) | |
| choldchy(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: tc(1) | |
| contains: tcholdchy(1) | |
| choldy(10): (word length: 6 / group items: 5) | |
| length: min=7, max=8, avg=7.4 | |
| top prefixes: fc(1), dc(1), oc(1), op(1), yp(1) | |
| contains: fcholdy(2), dcholdy(1), ocholdy(1), opcholdy(1), ypcholdy(1) | |
| cholkaiin(4): (word length: 9 / group items: 2) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: lc(1), tc(1) | |
| contains: lcholkaiin(1), tcholkaiin(1) | |
| cholkal(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: pc(1) | |
| contains: pcholkal(1) | |
| cholkeedy(3): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: pc(1) | |
| contains: pcholkeedy(1) | |
| cholky(4): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: pc(1) | |
| contains: pcholky(2) | |
| cholo(3): (word length: 5 / group items: 11) | |
| length: min=6, max=12, avg=7.5 | |
| top prefixes: ch(7), op(1), tc(1), ot(1), pc(1) | |
| contains: cholody(5), cholor(5), cholol(2), cholols(2), opcholor(2), | |
| tcholol(2), chololer(1), chololy(1), choloro(1), otcholocthol(1), | |
| pcholor(1) | |
| cholol(2): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.2 | |
| top prefixes: ch(3), tc(1) | |
| contains: cholols(2), tcholol(2), chololer(1), chololy(1) | |
| cholor(5): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: op(1), ch(1), pc(1) | |
| contains: opcholor(2), choloro(1), pcholor(1) | |
| cholp(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: cholpchd(1) | |
| chols(3): (word length: 5 / group items: 5) | |
| length: min=6, max=11, avg=8.4 | |
| top prefixes: tc(2), ch(2), oc(1) | |
| contains: tchols(2), cholsho(1), chorcholsal(1), ocholshod(1), | |
| tcholshol(1) | |
| cholsho(1): (word length: 7 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: oc(1), tc(1) | |
| contains: ocholshod(1), tcholshol(1) | |
| choltal(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: choltaly(1) | |
| choly(15): (word length: 5 / group items: 10) | |
| length: min=6, max=8, avg=6.6 | |
| top prefixes: pc(1), dc(1), fc(1), kc(1), oc(1) | |
| contains: pcholy(2), dcholy(1), fcholy(1), kcholy(1), ocholy(1), | |
| okecholy(1), qopcholy(1), tcholy(1), ykcholy(1), ypcholy(1) | |
| chom(15): (word length: 4 / group items: 12) | |
| length: min=5, max=9, avg=5.9 | |
| top prefixes: kc(1), ok(1), dc(1), fc(1), ot(1) | |
| contains: kchom(2), okchom(2), dchom(1), fchom(1), otchom(1), pchom(1), | |
| qokeechom(1), tchom(1), ychom(1), ydarchom(1), ykchom(1), | |
| ytchom(1) | |
| chon(1): (word length: 4 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: qo(1), to(1), yk(1) | |
| contains: qokchon(1), tochon(1), ykchon(1) | |
| choo(1): (word length: 4 / group items: 6) | |
| length: min=5, max=9, avg=6.7 | |
| top prefixes: ch(4), pc(1), yc(1) | |
| contains: chool(2), choor(2), choody(1), choolkeey(1), pchooiin(1), | |
| ychoopy(1) | |
| chool(2): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: choolkeey(1) | |
| chop(2): (word length: 4 / group items: 16) | |
| length: min=5, max=12, avg=7.6 | |
| top prefixes: ch(14), ok(1), yc(1) | |
| contains: chopchy(5), chopy(3), chopchedy(2), chopchey(2), chopar(1), | |
| chopchal(1), chopchdy(1), chopcheey(1), chopcheopchy(1), | |
| chopcho(1), chopchol(1), chopdain(1), chopo(1), chopol(1), | |
| okchop(1), ychopordg(1) | |
| chopcho(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chopchol(1) | |
| chopo(1): (word length: 5 / group items: 2) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ch(1), yc(1) | |
| contains: chopol(1), ychopordg(1) | |
| chor(220): (word length: 4 / group items: 96) | |
| length: min=5, max=11, avg=7.0 | |
| top prefixes: ch(23), ot(7), qo(6), kc(4), ok(3) | |
| contains: dchor(26), kchor(20), okchor(20), tchor(19), otchor(18), | |
| ychor(16), qotchor(14), ytchor(13), chory(12), pchor(12), | |
| qokchor(11), lchor(6), ochor(6), opchor(6), choraiin(5), | |
| ykchor(5), chorol(3), choror(3), fchor(3), olchor(3), qopchor(3), | |
| schor(3), alchor(2), chochor(2), chorain(2), chordy(2), | |
| ofchor(2), ypchor(2), chkchory(1), chokchor(1), choraly(1), | |
| chorar(1), chorcholsal(1), chorchor(1), chorchy(1), chordom(1), | |
| choro(1), chorochy(1), chorody(1), choroiin(1), chorolk(1), | |
| chorom(1), choross(1), chtchor(1), dalchor(1), darchor(1), | |
| dchorol(1), dorchory(1), dytchor(1), esechor(1), fchochor(1), | |
| fochor(1), folchor(1), kchorchor(1), kchorl(1), kchoror(1), | |
| kochor(1), lkchor(1), lkechor(1), lolchor(1), ochory(1), | |
| ofchory(1), okchochor(1), okeechor(1), olfchor(1), opchordy(1), | |
| orchor(1), otchordy(1), otedchor(1), oteeolchor(1), oteochor(1), | |
| otochor(1), otshchor(1), oykchor(1), pchoraiin(1), pchoror(1), | |
| pochor(1), pychory(1), qchor(1), qekeochor(1), qofchor(1), | |
| qokchory(1), qotchoraiin(1), saiichor(1), samchorly(1), | |
| shkchor(1), sholfchor(1), shorpchor(1), sochorcfhy(1), | |
| sokchor(1), tchory(1), tchotchor(1), tolchor(1), tolchory(1), | |
| yfchor(1), yochor(1) | |
| choraiin(5): (word length: 8 / group items: 2) | |
| length: min=9, max=11, avg=10.0 | |
| top prefixes: pc(1), qo(1) | |
| contains: pchoraiin(1), qotchoraiin(1) | |
| chorchor(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: kc(1) | |
| contains: kchorchor(1) | |
| chordy(2): (word length: 6 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(1), ot(1) | |
| contains: opchordy(1), otchordy(1) | |
| choro(1): (word length: 5 / group items: 11) | |
| length: min=6, max=8, avg=6.9 | |
| top prefixes: ch(8), dc(1), kc(1), pc(1) | |
| contains: chorol(3), choror(3), chorochy(1), chorody(1), choroiin(1), | |
| chorolk(1), chorom(1), choross(1), dchorol(1), kchoror(1), | |
| pchoror(1) | |
| chorol(3): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1), dc(1) | |
| contains: chorolk(1), dchorol(1) | |
| choror(3): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: kc(1), pc(1) | |
| contains: kchoror(1), pchoror(1) | |
| chory(12): (word length: 5 / group items: 8) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: ch(1), do(1), oc(1), of(1), py(1) | |
| contains: chkchory(1), dorchory(1), ochory(1), ofchory(1), pychory(1), | |
| qokchory(1), tchory(1), tolchory(1) | |
| chos(38): (word length: 4 / group items: 35) | |
| length: min=5, max=11, avg=6.7 | |
| top prefixes: ch(9), ot(2), tc(2), yt(2), ok(2) | |
| contains: chosaiin(4), otchos(4), tchos(4), choshy(3), dchos(3), | |
| kchos(3), chosar(2), otchoshy(2), ytchos(2), chosals(1), | |
| chosaroshol(1), choschy(1), choshydy(1), chosory(1), chosy(1), | |
| fchosaiin(1), ochos(1), ofchoshy(1), okchos(1), okchosam(1), | |
| opchosam(1), pchosos(1), qokchos(1), qotchos(1), rchos(1), | |
| rychos(1), schos(1), schoshe(1), talchos(1), tchosos(1), | |
| ychos(1), ychosar(1), ydchos(1), ykchos(1), ytalchos(1) | |
| chosaiin(4): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: fc(1) | |
| contains: fchosaiin(1) | |
| chosar(2): (word length: 6 / group items: 2) | |
| length: min=7, max=11, avg=9.0 | |
| top prefixes: ch(1), yc(1) | |
| contains: chosaroshol(1), ychosar(1) | |
| choshy(3): (word length: 6 / group items: 3) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1), ch(1), of(1) | |
| contains: otchoshy(2), choshydy(1), ofchoshy(1) | |
| chot(4): (word length: 4 / group items: 60) | |
| length: min=5, max=13, avg=7.5 | |
| top prefixes: ch(46), tc(4), ot(2), dc(1), kc(1) | |
| contains: choty(37), chotchy(12), chotar(11), chotaiin(9), chotal(9), | |
| chotey(9), choteey(7), chotol(7), chotam(5), chotain(4), | |
| chotor(4), chotchey(3), choteol(3), choto(3), chotols(3), | |
| chotchdy(2), chotedy(2), chotom(2), chotshol(2), chchoty(1), | |
| chotair(1), chotais(1), chotals(1), chotchedy(1), chotcheey(1), | |
| chotcheol(1), chotcheytchol(1), chotcho(1), chotchody(1), | |
| chotchol(1), chotchs(1), chotear(1), choteedy(1), choteeen(1), | |
| choteeey(1), chotehy(1), choteody(1), choteoky(1), choteoly(1), | |
| choteos(1), chotody(1), chots(1), chotshe(1), chotshy(1), | |
| chotyokchy(1), chotyr(1), dchoty(1), kchoty(1), okchoteees(1), | |
| oschotshl(1), otchotor(1), otchoty(1), pchotchy(1), | |
| qotchotchy(1), shotchot(1), tchotchey(1), tchotchol(1), | |
| tchotchor(1), tchotshey(1), ykchotchy(1) | |
| chotal(9): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chotals(1) | |
| chotchey(3): (word length: 8 / group items: 2) | |
| length: min=9, max=13, avg=11.0 | |
| top prefixes: ch(1), tc(1) | |
| contains: chotcheytchol(1), tchotchey(1) | |
| chotcho(1): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.8 | |
| top prefixes: ch(2), tc(2) | |
| contains: chotchody(1), chotchol(1), tchotchol(1), tchotchor(1) | |
| chotchol(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: tc(1) | |
| contains: tchotchol(1) | |
| chotchy(12): (word length: 7 / group items: 3) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: pc(1), qo(1), yk(1) | |
| contains: pchotchy(1), qotchotchy(1), ykchotchy(1) | |
| choteol(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: choteoly(1) | |
| choto(3): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: ch(5), ot(1) | |
| contains: chotol(7), chotor(4), chotols(3), chotom(2), chotody(1), | |
| otchotor(1) | |
| chotol(7): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chotols(3) | |
| chotor(4): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otchotor(1) | |
| chots(1): (word length: 5 / group items: 5) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(3), os(1), tc(1) | |
| contains: chotshol(2), chotshe(1), chotshy(1), oschotshl(1), | |
| tchotshey(1) | |
| chotshe(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: tc(1) | |
| contains: tchotshey(1) | |
| choty(37): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.0 | |
| top prefixes: ch(3), dc(1), kc(1), ot(1) | |
| contains: chchoty(1), chotyokchy(1), chotyr(1), dchoty(1), kchoty(1), | |
| otchoty(1) | |
| choy(13): (word length: 4 / group items: 11) | |
| length: min=5, max=10, avg=6.5 | |
| top prefixes: ok(2), ch(2), yt(1), kc(1), do(1) | |
| contains: ytchoy(3), kchoy(2), okchoy(2), chekchoy(1), choypshedy(1), | |
| dolchoy(1), fchoy(1), ochoyk(1), okechoy(1), otchoy(1), ychoy(1) | |
| chpal(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ch(1) | |
| contains: chpaly(1) | |
| chpar(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chparam(1) | |
| chpchs(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chpchshdy(1) | |
| chr(9): (word length: 3 / group items: 12) | |
| length: min=4, max=8, avg=5.8 | |
| top prefixes: ch(3), dc(2), rc(1), ai(1), kc(1) | |
| contains: rchr(2), aithchr(1), chrky(1), chry(1), chykchr(1), | |
| dchokchr(1), dchreo(1), kchrrr(1), lchr(1), ofchr(1), otchr(1), | |
| pchraiin(1) | |
| chs(19): (word length: 3 / group items: 89) | |
| length: min=4, max=13, avg=6.4 | |
| top prefixes: ch(29), qo(7), ot(6), dc(4), ok(4) | |
| contains: chsdy(3), chsey(2), chshy(2), chsky(2), chso(2), kchs(2), | |
| lchs(2), opchsd(2), otchs(2), rchs(2), ykchs(2), chchs(1), | |
| chchsty(1), chekalchs(1), chochs(1), chotchs(1), chpchs(1), | |
| chpchshdy(1), chsaly(1), chsamoky(1), chsar(1), chsary(1), | |
| chschsa(1), chsd(1), chsea(1), chseeor(1), chshd(1), chshek(1), | |
| chsho(1), chshol(1), chshoty(1), chskar(1), chsm(1), chsor(1), | |
| chsy(1), dalychs(1), dchsaiin(1), dchschy(1), dchsy(1), | |
| dchsykchy(1), dkchs(1), dolchsyckheol(1), dylchsody(1), fchs(1), | |
| fchsom(1), kchsy(1), lchsl(1), lkchs(1), llchs(1), ltchs(1), | |
| ochs(1), ofchsody(1), okchshy(1), okechs(1), okeedchsy(1), | |
| okeoschso(1), olchsy(1), olkchs(1), opchsey(1), orchsey(1), | |
| orkchsd(1), otchsdy(1), otchsy(1), otechs(1), otechshy(1), | |
| otykchs(1), pchsed(1), pchshy(1), pchsodar(1), polchs(1), | |
| qokchs(1), qokchsdy(1), qokchshy(1), qopchchs(1), qopchsd(1), | |
| qotchs(1), qotchsdy(1), ralchs(1), rchseesy(1), rchsy(1), | |
| schsdy(1), shchs(1), shetcheodchs(1), tochso(1), tochsy(1), | |
| toealchs(1), ychsy(1), ykchscheg(1), ypchseds(1) | |
| chsar(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ch(1) | |
| contains: chsary(1) | |
| chsd(1): (word length: 4 / group items: 8) | |
| length: min=5, max=8, avg=6.8 | |
| top prefixes: qo(3), ch(1), op(1), or(1), ot(1) | |
| contains: chsdy(3), opchsd(2), orkchsd(1), otchsdy(1), qokchsdy(1), | |
| qopchsd(1), qotchsdy(1), schsdy(1) | |
| chsdy(3): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: qo(2), ot(1), sc(1) | |
| contains: otchsdy(1), qokchsdy(1), qotchsdy(1), schsdy(1) | |
| chsey(2): (word length: 5 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: op(1), or(1) | |
| contains: opchsey(1), orchsey(1) | |
| chshd(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chpchshdy(1) | |
| chsho(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(2) | |
| contains: chshol(1), chshoty(1) | |
| chshy(2): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: ok(1), ot(1), pc(1), qo(1) | |
| contains: okchshy(1), otechshy(1), pchshy(1), qokchshy(1) | |
| chso(2): (word length: 4 / group items: 7) | |
| length: min=5, max=9, avg=7.3 | |
| top prefixes: ch(1), dy(1), fc(1), of(1), ok(1) | |
| contains: chsor(1), dylchsody(1), fchsom(1), ofchsody(1), okeoschso(1), | |
| pchsodar(1), tochso(1) | |
| chsy(1): (word length: 4 / group items: 10) | |
| length: min=5, max=13, avg=6.9 | |
| top prefixes: dc(2), do(1), kc(1), ok(1), ol(1) | |
| contains: dchsy(1), dchsykchy(1), dolchsyckheol(1), kchsy(1), | |
| okeedchsy(1), olchsy(1), otchsy(1), rchsy(1), tochsy(1), ychsy(1) | |
| chtaiin(4): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yc(1) | |
| contains: ychtaiin(1) | |
| chtain(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yc(1) | |
| contains: ychtain(1) | |
| chtair(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chtairy(1) | |
| chtal(6): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(2) | |
| contains: chtaldy(1), chtaly(1) | |
| chtar(3): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: of(1) | |
| contains: ofchtar(1) | |
| chtchy(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chtchyf(1) | |
| chtedy(2): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chtedytar(1) | |
| chtod(1): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: ch(2), tc(1) | |
| contains: chtody(2), chtodaiin(1), tchtod(1) | |
| chtol(5): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ch(1) | |
| contains: chtols(1) | |
| chtor(2): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chtorol(1) | |
| chty(13): (word length: 4 / group items: 4) | |
| length: min=5, max=6, avg=5.2 | |
| top prefixes: ch(1), ec(1), tc(1), yc(1) | |
| contains: chchty(1), echty(1), tchty(1), ychty(1) | |
| chy(155): (word length: 3 / group items: 300) | |
| length: min=4, max=12, avg=7.0 | |
| top prefixes: ch(66), qo(27), sh(27), ot(16), ok(12) | |
| contains: qokchy(69), qotchy(63), otchy(48), okchy(39), dchy(30), | |
| kchy(30), tchy(24), ykchy(22), ytchy(20), chokchy(16), opchy(15), | |
| qokechy(13), chotchy(12), qopchy(11), shokchy(9), lchy(8), | |
| olchy(8), chkchy(6), chyky(6), okechy(6), qokeechy(6), | |
| chekchy(5), chopchy(5), ochy(5), shchy(5), shekchy(5), | |
| chepchy(4), chetchy(4), chochy(4), chodchy(4), chpchy(4), | |
| chyty(4), kechy(4), olkchy(4), otechy(4), rchy(4), ychy(4), | |
| ypchy(4), chefchy(3), chykchy(3), dalchy(3), dchokchy(3), | |
| keechy(3), ofchy(3), okalchy(3), okolchy(3), olkeechy(3), | |
| schy(3), sheekchy(3), shepchy(3), shotchy(3), shtchy(3), | |
| ykeechy(3), chchy(2), chofchy(2), chtchy(2), chydy(2), chykar(2), | |
| chykey(2), ctchy(2), cthchy(2), dpchy(2), dykchy(2), dytchy(2), | |
| kchokchy(2), korchy(2), lfchy(2), olkechy(2), ollchy(2), | |
| oltchy(2), pchy(2), qochy(2), qodchy(2), qofchy(2), qokeochy(2), | |
| qolchy(2), qotechy(2), rolchy(2), shechy(2), shetchy(2), | |
| shkchy(2), shopchy(2), shytchy(2), torchy(2), ychekchy(2), | |
| aiichy(1), airchy(1), airorlchy(1), akchy(1), alamchy(1), | |
| alchy(1), alolfchy(1), amchy(1), chapchy(1), chckhyfchy(1), | |
| chdchy(1), chechy(1), chedchy(1), chekechy(1), cheockhedchy(1), | |
| cheodchy(1), cheokchy(1), cheolkeepchy(1), cheotchy(1), | |
| chetechy(1), chkalchy(1), chkchykoly(1), chkorchy(1), | |
| chodykchy(1), choekchchy(1), choekchy(1), choetchy(1), | |
| chokshchy(1), choldchy(1), cholfchy(1), cholkchy(1), | |
| chopcheopchy(1), chorchy(1), chorochy(1), choschy(1), | |
| chotyokchy(1), chtchyf(1), chyd(1), chykaiin(1), chykald(1), | |
| chykchr(1), chykeedy(1), chykeor(1), chym(1), chypaldy(1), | |
| chypcham(1), chypchey(1), chypchy(1), chyqo(1), chyt(1), | |
| chytaroiin(1), chytchy(1), chyteey(1), chyteody(1), ckhochy(1), | |
| cpchy(1), cphochy(1), ctechy(1), ctheepchy(1), cthochy(1), | |
| cthorchy(1), dachy(1), daichy(1), daiiirchy(1), dalfchy(1), | |
| darchy(1), dchchy(1), dchschy(1), dchsykchy(1), dchyd(1), | |
| dchydy(1), dchykchy(1), dchykey(1), dchyky(1), dchyr(1), | |
| dchytchy(1), dkochy(1), dlchy(1), dokechy(1), dolkchy(1), | |
| dorchy(1), dychokchy(1), dychy(1), dydchy(1), dypchy(1), echy(1), | |
| eoporchy(1), epchy(1), fachys(1), fchy(1), fshodchy(1), | |
| karchy(1), kchochy(1), kchydy(1), keeokechy(1), kodalchy(1), | |
| kotchy(1), lcheylchy(1), lkchy(1), lkechy(1), lkshykchy(1), | |
| lshechy(1), octhchy(1), odchy(1), oeeolchy(1), okarchy(1), | |
| okchdpchy(1), okchechy(1), okcheochy(1), okchyd(1), okeechy(1), | |
| okeeeykchy(1), okodchy(1), opaichy(1), opchytcy(1), orarorchy(1), | |
| oschy(1), otaipchy(1), otalchy(1), otalkchy(1), otchechy(1), | |
| otcheochy(1), otcholchy(1), otchyky(1), otechys(1), oteechy(1), | |
| oteodchy(1), otodchy(1), otoralchy(1), otorchy(1), otytchy(1), | |
| oydchy(1), paichy(1), pcheodchy(1), pcheoepchy(1), pchesfchy(1), | |
| pchofychy(1), pchotchy(1), pchykar(1), polchechy(1), polchy(1), | |
| polkchy(1), porarchy(1), qekchy(1), qoeechy(1), qoekchy(1), | |
| qoepchy(1), qokchyky(1), qokechchy(1), qokochy(1), qokokchy(1), | |
| qolkchy(1), qoochy(1), qopchypcho(1), qopchyr(1), qotchotchy(1), | |
| qotchytor(1), qoteeotchy(1), qotoeetchy(1), qotolchy(1), | |
| raikchy(1), ralchy(1), rchchy(1), rfchykchey(1), sachy(1), | |
| saiinchy(1), saimchy(1), scharchy(1), schodchy(1), shckhchy(1), | |
| shckhdchy(1), shdchy(1), shdpchy(1), shecthedchy(1), shedchy(1), | |
| sheeetchy(1), sheetchy(1), sheolkchy(1), sheopchy(1), shkechy(1), | |
| shochy(1), shockhchy(1), sholkeechy(1), shorkchy(1), sochy(1), | |
| sokchy(1), solchyd(1), solkchy(1), sotchy(1), spchy(1), | |
| stolpchy(1), sykeeeochy(1), tcheolchy(1), tcholdchy(1), | |
| tchykchy(1), techy(1), toeeedchy(1), tolpchy(1), totchy(1), | |
| ycheechy(1), ycheochy(1), ychykchy(1), yfchy(1), ykchotchy(1), | |
| ykchyr(1), ykchys(1), ykychy(1), yqopchy(1), ytchchy(1), | |
| ytchyd(1), ytechy(1), yteechypchy(1), yteochy(1), ytychy(1), | |
| zepchy(1) | |
| chyd(1): (word length: 4 / group items: 7) | |
| length: min=5, max=7, avg=5.9 | |
| top prefixes: dc(2), ch(1), kc(1), ok(1), so(1) | |
| contains: chydy(2), dchyd(1), dchydy(1), kchydy(1), okchyd(1), | |
| solchyd(1), ytchyd(1) | |
| chydy(2): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: dc(1), kc(1) | |
| contains: dchydy(1), kchydy(1) | |
| chykar(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: pc(1) | |
| contains: pchykar(1) | |
| chykchy(3): (word length: 7 / group items: 3) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: dc(1), tc(1), yc(1) | |
| contains: dchykchy(1), tchykchy(1), ychykchy(1) | |
| chykey(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dc(1) | |
| contains: dchykey(1) | |
| chyky(6): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: dc(1), ot(1), qo(1) | |
| contains: dchyky(1), otchyky(1), qokchyky(1) | |
| chypchy(1): (word length: 7 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: yt(1) | |
| contains: yteechypchy(1) | |
| chyt(1): (word length: 4 / group items: 8) | |
| length: min=5, max=10, avg=7.8 | |
| top prefixes: ch(5), dc(1), op(1), qo(1) | |
| contains: chyty(4), chytaroiin(1), chytchy(1), chyteey(1), chyteody(1), | |
| dchytchy(1), opchytcy(1), qotchytor(1) | |
| chytchy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: dc(1) | |
| contains: dchytchy(1) | |
| ckaiin(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chckaiin(1) | |
| ckcho(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ck(1) | |
| contains: ckchol(1) | |
| ckey(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otockey(1) | |
| ckhaiin(3): (word length: 7 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1), sh(1) | |
| contains: chckhaiin(3), shckhaiin(1) | |
| ckhal(4): (word length: 5 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(2), sh(1), qo(1) | |
| contains: chckhal(5), sheckhal(2), chckhaly(1), qockhal(1) | |
| ckham(3): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(1), qc(1) | |
| contains: chckham(1), qckham(1) | |
| ckhar(3): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(1), sh(1) | |
| contains: chockhar(2), shckhar(1) | |
| ckhdy(4): (word length: 5 / group items: 9) | |
| length: min=7, max=9, avg=7.9 | |
| top prefixes: ch(4), sh(2), qo(2), cs(1) | |
| contains: chckhdy(13), checkhdy(2), chockhdy(2), shckhdy(2), | |
| cheockhdy(1), cseckhdy(1), qockhdy(1), qofockhdy(1), sheckhdy(1) | |
| ckhear(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qc(1) | |
| contains: qckhear(1) | |
| ckhedy(4): (word length: 6 / group items: 12) | |
| length: min=7, max=10, avg=8.7 | |
| top prefixes: ch(3), sh(3), oc(1), qo(1), qc(1) | |
| contains: chckhedy(11), ockhedy(6), shckhedy(6), qockhedy(4), | |
| sheckhedy(4), qckhedy(2), checkhedy(1), chockhedy(1), | |
| dchckhedy(1), lcheckhedy(1), lsheckhedy(1), sheockhedy(1) | |
| ckheey(11): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: qo(1), ch(1), oc(1) | |
| contains: qockheey(4), chckheey(1), ockheey(1) | |
| ckheo(3): (word length: 5 / group items: 17) | |
| length: min=6, max=13, avg=7.7 | |
| top prefixes: ck(7), qo(3), ch(1), cc(1), do(1) | |
| contains: ckheol(7), ckheody(5), ckheos(3), qockheol(3), chckheody(2), | |
| cckheor(1), ckheod(1), ckheodar(1), ckheokey(1), ckheor(1), | |
| dolchsyckheol(1), ockheody(1), qckheol(1), qockheor(1), | |
| qockheos(1), shckheol(1), yckheody(1) | |
| ckheod(1): (word length: 6 / group items: 5) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ck(2), ch(1), oc(1), yc(1) | |
| contains: ckheody(5), chckheody(2), ckheodar(1), ockheody(1), | |
| yckheody(1) | |
| ckheody(5): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: ch(1), oc(1), yc(1) | |
| contains: chckheody(2), ockheody(1), yckheody(1) | |
| ckheol(7): (word length: 6 / group items: 4) | |
| length: min=7, max=13, avg=9.0 | |
| top prefixes: qo(1), do(1), qc(1), sh(1) | |
| contains: qockheol(3), dolchsyckheol(1), qckheol(1), shckheol(1) | |
| ckheor(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: cc(1), qo(1) | |
| contains: cckheor(1), qockheor(1) | |
| ckheos(3): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qockheos(1) | |
| ckhey(32): (word length: 5 / group items: 22) | |
| length: min=6, max=9, avg=8.0 | |
| top prefixes: sh(5), ch(4), yc(2), qo(1), oc(1) | |
| contains: chckhey(30), qockhey(18), shckhey(12), checkhey(10), | |
| ockhey(7), chockhey(5), sheckhey(4), shockhey(3), cheockhey(2), | |
| sheockhey(2), yckhey(2), dcheckhey(1), lcheckhey(1), | |
| okeockhey(1), oleeckhey(1), orockhey(1), oxockhey(1), sckhey(1), | |
| sheeckhey(1), sockhey(1), ycheckhey(1), ykeockhey(1) | |
| ckhhy(5): (word length: 5 / group items: 9) | |
| length: min=6, max=10, avg=7.2 | |
| top prefixes: ch(2), sh(2), qo(2), oc(1), cc(1) | |
| contains: chckhhy(9), ockhhy(2), shckhhy(2), cckhhy(1), chockhhy(1), | |
| qckhhy(1), qockhhy(1), qosheckhhy(1), shockhhy(1) | |
| ckho(4): (word length: 4 / group items: 48) | |
| length: min=5, max=12, avg=7.1 | |
| top prefixes: ck(14), ch(12), qo(7), oc(6), sh(5) | |
| contains: ckhol(22), ckhor(9), qockhol(7), ckhody(4), ckhos(3), | |
| chckhol(2), chckhor(2), checkhol(2), ockhody(2), chckhod(1), | |
| chckhoda(1), chckhody(1), chckhom(1), chckhoy(1), checkho(1), | |
| cheeckhody(1), chockhol(1), chockhor(1), ckhochy(1), ckhocthy(1), | |
| ckhod(1), ckhoiin(1), ckholdy(1), ckholsy(1), ckholy(1), | |
| ckhoor(1), ckhory(1), ckhoy(1), ctheockhosho(1), dcheeckhos(1), | |
| ockhodar(1), ockhoees(1), ockhol(1), ockhor(1), ockhosam(1), | |
| qockho(1), qockhody(1), qockhom(1), qockhor(1), qockhos(1), | |
| qockhoy(1), shckhody(1), shckhol(1), shckhor(1), shockho(1), | |
| shockhol(1), sockhody(1), yckhody(1) | |
| ckhod(1): (word length: 5 / group items: 11) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: ch(4), oc(2), ck(1), qo(1), sh(1) | |
| contains: ckhody(4), ockhody(2), chckhod(1), chckhoda(1), chckhody(1), | |
| cheeckhody(1), ockhodar(1), qockhody(1), shckhody(1), | |
| sockhody(1), yckhody(1) | |
| ckhody(4): (word length: 6 / group items: 7) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: ch(2), oc(1), qo(1), sh(1), so(1) | |
| contains: ockhody(2), chckhody(1), cheeckhody(1), qockhody(1), | |
| shckhody(1), sockhody(1), yckhody(1) | |
| ckhol(22): (word length: 5 / group items: 10) | |
| length: min=6, max=8, avg=7.1 | |
| top prefixes: ch(3), ck(3), sh(2), qo(1), oc(1) | |
| contains: qockhol(7), chckhol(2), checkhol(2), chockhol(1), ckholdy(1), | |
| ckholsy(1), ckholy(1), ockhol(1), shckhol(1), shockhol(1) | |
| ckhor(9): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ch(2), ck(1), oc(1), qo(1), sh(1) | |
| contains: chckhor(2), chockhor(1), ckhory(1), ockhor(1), qockhor(1), | |
| shckhor(1) | |
| ckhos(3): (word length: 5 / group items: 4) | |
| length: min=7, max=12, avg=9.2 | |
| top prefixes: ct(1), dc(1), oc(1), qo(1) | |
| contains: ctheockhosho(1), dcheeckhos(1), ockhosam(1), qockhos(1) | |
| ckhoy(1): (word length: 5 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1), qo(1) | |
| contains: chckhoy(1), qockhoy(1) | |
| ckhs(1): (word length: 4 / group items: 3) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: ch(1), qc(1), sh(1) | |
| contains: chckhs(1), qckhsy(1), shockhsy(1) | |
| ckhy(39): (word length: 4 / group items: 59) | |
| length: min=5, max=11, avg=7.5 | |
| top prefixes: ch(7), sh(5), qo(5), yc(5), ck(4) | |
| contains: chckhy(140), shckhy(60), checkhy(47), sheckhy(35), | |
| chockhy(21), qockhy(19), ockhy(13), cheockhy(10), shockhy(5), | |
| dchckhy(3), lcheckhy(3), tockhy(3), cpheckhy(2), lsheckhy(2), | |
| qckhy(2), sheeckhy(2), sheockhy(2), aiisockhy(1), chckhyd(1), | |
| chckhyfchy(1), chesckhy(1), ckheckhy(1), ckhydom(1), ckhyds(1), | |
| ckhydy(1), dackhy(1), dalchckhy(1), dckhy(1), dockhy(1), | |
| dsheckhy(1), dycheckhy(1), eeckhy(1), lchckhy(1), lshckhy(1), | |
| ochockhy(1), oeeockhy(1), okockhy(1), olchckhy(1), olcheckhy(1), | |
| oldckhy(1), olockhy(1), oochockhy(1), oqockhy(1), orsheckhy(1), | |
| pcheockhy(1), qocpheeckhy(1), qodckhy(1), qoeeckhy(1), | |
| qokechckhy(1), schckhy(1), soshckhy(1), ssheckhy(1), ychckhy(1), | |
| ycheeckhy(1), ycheockhy(1), ychockhy(1), yckhy(1), ykedckhy(1), | |
| ysheockhy(1) | |
| ckshy(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chckshy(1) | |
| cky(2): (word length: 3 / group items: 6) | |
| length: min=4, max=5, avg=4.7 | |
| top prefixes: qo(1), ai(1), ch(1), dc(1), ec(1) | |
| contains: qocky(2), aicky(1), chcky(1), dcky(1), ecky(1), kccky(1) | |
| coy(1): (word length: 3 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otycoyl(1) | |
| cphal(2): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: cp(1), oc(1) | |
| contains: cphaldy(1), ocphal(1) | |
| cphar(4): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.7 | |
| top prefixes: cp(2), ch(1) | |
| contains: chcphar(1), cpharom(1), cphary(1) | |
| cphedy(8): (word length: 6 / group items: 5) | |
| length: min=7, max=9, avg=8.4 | |
| top prefixes: ch(2), lc(1), oc(1), sh(1) | |
| contains: chcphedy(3), checphedy(1), lchcphedy(1), ocphedy(1), | |
| shocphedy(1) | |
| cpheey(2): (word length: 6 / group items: 2) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: ch(1), to(1) | |
| contains: cheecpheey(1), tocpheey(1) | |
| cpheo(2): (word length: 5 / group items: 12) | |
| length: min=6, max=15, avg=8.2 | |
| top prefixes: cp(8), oc(2), ch(1), yp(1) | |
| contains: cpheor(4), cpheody(3), cpheol(3), chocpheod(1), cpheocthy(1), | |
| cpheodaiin(1), cpheodar(1), cpheodor(1), cpheos(1), ocpheo(1), | |
| ocpheody(1), ypchocpheosaiin(1) | |
| cpheody(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: oc(1) | |
| contains: ocpheody(1) | |
| cpheos(1): (word length: 6 / group items: 1) | |
| length: min=15, max=15, avg=15.0 | |
| top prefixes: yp(1) | |
| contains: ypchocpheosaiin(1) | |
| cphey(6): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: ch(3), cp(1), oc(1), qo(1) | |
| contains: chcphey(3), checphey(2), cheocphey(1), cpheyr(1), ocphey(1), | |
| qocphey(1) | |
| cphhy(1): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: sh(2), ch(1), qc(1) | |
| contains: chcphhy(3), shcphhy(2), qcphhy(1), shocphhy(1) | |
| cpho(2): (word length: 4 / group items: 32) | |
| length: min=5, max=10, avg=7.4 | |
| top prefixes: cp(23), ch(3), sh(2), oc(1), op(1) | |
| contains: cphol(15), cphor(6), cphoal(2), cphody(2), cpholdy(2), | |
| cphoy(2), chcphol(1), chocphol(1), chocphor(1), cphoaiin(1), | |
| cphoar(1), cphochy(1), cphocthy(1), cphod(1), cphodaiils(1), | |
| cphodal(1), cphodales(1), cphodar(1), cphodol(1), cphoeedol(1), | |
| cphoithy(1), cphokchol(1), cpholkaiin(1), cpholrory(1), cphom(1), | |
| cphorods(1), ocphoraiin(1), opocphor(1), qocphody(1), | |
| shcphoor(1), shocphor(1), tocphol(1) | |
| cphod(1): (word length: 5 / group items: 7) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: cp(6), qo(1) | |
| contains: cphody(2), cphodaiils(1), cphodal(1), cphodales(1), | |
| cphodar(1), cphodol(1), qocphody(1) | |
| cphodal(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: cp(1) | |
| contains: cphodales(1) | |
| cphody(2): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qocphody(1) | |
| cphol(15): (word length: 5 / group items: 6) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: cp(3), ch(2), to(1) | |
| contains: cpholdy(2), chcphol(1), chocphol(1), cpholkaiin(1), | |
| cpholrory(1), tocphol(1) | |
| cphor(6): (word length: 5 / group items: 5) | |
| length: min=8, max=10, avg=8.4 | |
| top prefixes: ch(1), cp(1), oc(1), op(1), sh(1) | |
| contains: chocphor(1), cphorods(1), ocphoraiin(1), opocphor(1), | |
| shocphor(1) | |
| cphy(16): (word length: 4 / group items: 15) | |
| length: min=5, max=11, avg=7.3 | |
| top prefixes: ch(4), sh(3), qo(2), oc(1), ol(1) | |
| contains: chcphy(11), chocphy(3), ocphy(3), shecphy(3), olcphy(2), | |
| qocphy(2), shcphy(2), sheocphy(2), chedacphy(1), cheocphy(1), | |
| cphydy(1), oracphy(1), pcheocphy(1), qoshocphy(1), soefchocphy(1) | |
| cpy(1): (word length: 3 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ch(1) | |
| contains: chcpy(1) | |
| csedy(6): (word length: 5 / group items: 5) | |
| length: min=6, max=7, avg=6.6 | |
| top prefixes: dc(1), ol(1), op(1), sc(1), yk(1) | |
| contains: dcsedy(1), olcsedy(1), opcsedy(1), scsedy(1), ykcsedy(1) | |
| cseedy(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qocseedy(1) | |
| cseey(2): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: yt(1) | |
| contains: ytchcseey(1) | |
| cseo(1): (word length: 4 / group items: 2) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: cs(1), yc(1) | |
| contains: cseol(1), ycseol(1) | |
| cseol(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: yc(1) | |
| contains: ycseol(1) | |
| ctchey(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoctchey(1) | |
| ctey(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ch(1) | |
| contains: chctey(1) | |
| cth(5): (word length: 3 / group items: 250) | |
| length: min=4, max=12, avg=7.2 | |
| top prefixes: ct(87), ch(39), sh(21), oc(21), qo(17) | |
| contains: cthy(111), chcthy(79), cthol(61), cthey(51), cthor(45), | |
| shcthy(31), checthy(28), cthar(21), shecthy(20), chocthy(18), | |
| cthody(18), ctho(15), cthaiin(13), ctheey(13), shocthy(12), | |
| cthedy(10), ctheol(10), octhy(10), cthom(9), cthdy(8), | |
| chcthdy(7), chcthedy(7), chcthey(7), chcthhy(7), cthal(7), | |
| qocthy(7), shcthey(7), chocthey(6), ctheody(6), ctheor(6), | |
| octhey(6), cheocthy(5), qocthey(5), checthey(4), cthain(4), | |
| cthod(4), ctholy(4), octhody(4), chcth(3), chctho(3), | |
| chcthody(3), cthes(3), cthhy(3), pchocthy(3), qocthedy(3), | |
| shcthhy(3), chcthal(2), chctham(2), checthedy(2), cthan(2), | |
| cthchy(2), ctheod(2), cthodal(2), cthodol(2), cthoiin(2), | |
| cthols(2), cthory(2), cths(2), cthyd(2), octhdy(2), octhedy(2), | |
| octheody(2), octheol(2), octhos(2), olchcthy(2), orchcthy(2), | |
| qcthey(2), qcthhy(2), qcthy(2), qocthol(2), sheocthy(2), | |
| ychocthy(2), acthedy(1), aiicthy(1), ceectheey(1), chcthaiin(1), | |
| chcthain(1), chcthar(1), chcthd(1), chcthed(1), chcthihy(1), | |
| chcthod(1), chcthor(1), chcthosy(1), chcthso(1), checthal(1), | |
| chectham(1), checthdy(1), checthhy(1), cheecthy(1), | |
| cheocthedy(1), cheoctheey(1), cheocthey(1), cheolchcthy(1), | |
| chocthar(1), chocthedy(1), choctheeey(1), chocthody(1), | |
| ckhocthy(1), cpheocthy(1), cphocthy(1), ctha(1), cthachcthy(1), | |
| cthaichar(1), cthaildy(1), ctham(1), ctharad(1), cthckeom(1), | |
| cthcthey(1), cthd(1), cthdaly(1), cthdaoto(1), cthdeecthy(1), | |
| cthear(1), ctheea(1), ctheees(1), ctheen(1), ctheepchy(1), | |
| cthees(1), ctheety(1), ctheo(1), ctheockhosho(1), ctheodal(1), | |
| ctheodody(1), ctheoly(1), ctheos(1), ctheotol(1), cther(1), | |
| cthl(1), cthoary(1), cthochy(1), cthodaiin(1), cthodaiis(1), | |
| cthodaim(1), cthodam(1), cthodar(1), cthodd(1), cthodoaly(1), | |
| cthoepain(1), cthog(1), ctholcthy(1), cthold(1), ctholdar(1), | |
| ctholdg(1), ctholdy(1), ctholo(1), cthoo(1), cthoor(1), | |
| cthoral(1), cthorchy(1), cthos(1), cthoshol(1), cthosm(1), | |
| cthosy(1), cthres(1), cthscthain(1), cthyaiin(1), daicthy(1), | |
| dakocth(1), dalocthhy(1), dchcthy(1), dcheecthey(1), dcthody(1), | |
| dcthy(1), decthdy(1), deeocthey(1), doctho(1), eocthy(1), | |
| etolctheol(1), fchocthar(1), fchoctheody(1), keocthedy(1), | |
| keocthy(1), lchcthy(1), lshcthy(1), octhain(1), octhair(1), | |
| octhal(1), octham(1), octhchy(1), octhd(1), octhede(1), octho(1), | |
| octhodaly(1), octhol(1), octhole(1), octhor(1), octhys(1), | |
| odchecthy(1), oeecthy(1), okchocthy(1), olcthhy(1), olcthr(1), | |
| olkeeycthy(1), orchcthdy(1), oshctho(1), osocthor(1), | |
| otcholocthol(1), otolchcthy(1), qcthdys(1), qctheed(1), | |
| qochecthm(1), qocthdy(1), qoctheody(1), qoctheol(1), qocthes(1), | |
| qoctho(1), qocthody(1), qoctholy(1), qocthor(1), qocthsy(1), | |
| qodcthy(1), qokchocthor(1), qotocthey(1), sacthhy(1), | |
| salshcthdy(1), schcthy(1), schocthhy(1), scth(1), scthey(1), | |
| shcthaiin(1), shcthal(1), shcthdy(1), shcthedy(1), shctheo(1), | |
| shecthedchy(1), shecthedy(1), shecthey(1), sheecthey(1), | |
| sheoctham(1), sheycthy(1), shocthey(1), shocthhy(1), | |
| shocthody(1), shocthol(1), socthey(1), socthh(1), socthody(1), | |
| socths(1), solcthy(1), soocth(1), tchcthy(1), tocthey(1), | |
| tocthy(1), toeeodcthy(1), ychcthod(1), ychecthy(1), | |
| ycthodaiin(1), ycthol(1), ykecthhy(1) | |
| ctha(1): (word length: 4 / group items: 27) | |
| length: min=5, max=10, avg=7.4 | |
| top prefixes: ct(11), ch(8), oc(4), sh(3), fc(1) | |
| contains: cthar(21), cthaiin(13), cthal(7), cthain(4), chcthal(2), | |
| chctham(2), cthan(2), chcthaiin(1), chcthain(1), chcthar(1), | |
| checthal(1), chectham(1), chocthar(1), cthachcthy(1), | |
| cthaichar(1), cthaildy(1), ctham(1), ctharad(1), cthscthain(1), | |
| fchocthar(1), octhain(1), octhair(1), octhal(1), octham(1), | |
| shcthaiin(1), shcthal(1), sheoctham(1) | |
| cthaiin(13): (word length: 7 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1), sh(1) | |
| contains: chcthaiin(1), shcthaiin(1) | |
| cthain(4): (word length: 6 / group items: 3) | |
| length: min=7, max=10, avg=8.3 | |
| top prefixes: ch(1), ct(1), oc(1) | |
| contains: chcthain(1), cthscthain(1), octhain(1) | |
| cthal(7): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ch(2), oc(1), sh(1) | |
| contains: chcthal(2), checthal(1), octhal(1), shcthal(1) | |
| ctham(1): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ch(2), oc(1), sh(1) | |
| contains: chctham(2), chectham(1), octham(1), sheoctham(1) | |
| cthar(21): (word length: 5 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: ch(2), ct(1), fc(1) | |
| contains: chcthar(1), chocthar(1), ctharad(1), fchocthar(1) | |
| cthchy(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: oc(1) | |
| contains: octhchy(1) | |
| cthd(1): (word length: 4 / group items: 15) | |
| length: min=5, max=10, avg=7.3 | |
| top prefixes: ct(4), ch(3), oc(2), de(1), or(1) | |
| contains: cthdy(8), chcthdy(7), octhdy(2), chcthd(1), checthdy(1), | |
| cthdaly(1), cthdaoto(1), cthdeecthy(1), decthdy(1), octhd(1), | |
| orchcthdy(1), qcthdys(1), qocthdy(1), salshcthdy(1), shcthdy(1) | |
| cthdy(8): (word length: 5 / group items: 9) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: ch(2), oc(1), de(1), or(1), qc(1) | |
| contains: chcthdy(7), octhdy(2), checthdy(1), decthdy(1), orchcthdy(1), | |
| qcthdys(1), qocthdy(1), salshcthdy(1), shcthdy(1) | |
| cthedy(10): (word length: 6 / group items: 10) | |
| length: min=7, max=10, avg=8.4 | |
| top prefixes: ch(4), sh(2), qo(1), oc(1), ac(1) | |
| contains: chcthedy(7), qocthedy(3), checthedy(2), octhedy(2), | |
| acthedy(1), cheocthedy(1), chocthedy(1), keocthedy(1), | |
| shcthedy(1), shecthedy(1) | |
| ctheey(13): (word length: 6 / group items: 2) | |
| length: min=9, max=10, avg=9.5 | |
| top prefixes: ce(1), ch(1) | |
| contains: ceectheey(1), cheoctheey(1) | |
| ctheo(1): (word length: 5 / group items: 17) | |
| length: min=6, max=12, avg=7.9 | |
| top prefixes: ct(10), oc(2), qo(2), et(1), fc(1) | |
| contains: ctheol(10), ctheody(6), ctheor(6), ctheod(2), octheody(2), | |
| octheol(2), ctheockhosho(1), ctheodal(1), ctheodody(1), | |
| ctheoly(1), ctheos(1), ctheotol(1), etolctheol(1), | |
| fchoctheody(1), qoctheody(1), qoctheol(1), shctheo(1) | |
| ctheod(2): (word length: 6 / group items: 6) | |
| length: min=7, max=11, avg=8.7 | |
| top prefixes: ct(3), oc(1), fc(1), qo(1) | |
| contains: ctheody(6), octheody(2), ctheodal(1), ctheodody(1), | |
| fchoctheody(1), qoctheody(1) | |
| ctheody(6): (word length: 7 / group items: 3) | |
| length: min=8, max=11, avg=9.3 | |
| top prefixes: oc(1), fc(1), qo(1) | |
| contains: octheody(2), fchoctheody(1), qoctheody(1) | |
| ctheol(10): (word length: 6 / group items: 4) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: oc(1), ct(1), et(1), qo(1) | |
| contains: octheol(2), ctheoly(1), etolctheol(1), qoctheol(1) | |
| cthes(3): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qocthes(1) | |
| cthey(51): (word length: 5 / group items: 18) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: ch(4), sh(4), qo(2), oc(1), qc(1) | |
| contains: chcthey(7), shcthey(7), chocthey(6), octhey(6), qocthey(5), | |
| checthey(4), qcthey(2), cheocthey(1), cthcthey(1), dcheecthey(1), | |
| deeocthey(1), qotocthey(1), scthey(1), shecthey(1), sheecthey(1), | |
| shocthey(1), socthey(1), tocthey(1) | |
| cthhy(3): (word length: 5 / group items: 10) | |
| length: min=6, max=9, avg=7.6 | |
| top prefixes: ch(2), sh(2), qc(1), da(1), ol(1) | |
| contains: chcthhy(7), shcthhy(3), qcthhy(2), checthhy(1), dalocthhy(1), | |
| olcthhy(1), sacthhy(1), schocthhy(1), shocthhy(1), ykecthhy(1) | |
| ctho(15): (word length: 4 / group items: 66) | |
| length: min=5, max=12, avg=7.1 | |
| top prefixes: ct(36), oc(7), ch(6), qo(6), yc(3) | |
| contains: cthol(61), cthor(45), cthody(18), cthom(9), cthod(4), | |
| ctholy(4), octhody(4), chctho(3), chcthody(3), cthodal(2), | |
| cthodol(2), cthoiin(2), cthols(2), cthory(2), octhos(2), | |
| qocthol(2), chcthod(1), chcthor(1), chcthosy(1), chocthody(1), | |
| cthoary(1), cthochy(1), cthodaiin(1), cthodaiis(1), cthodaim(1), | |
| cthodam(1), cthodar(1), cthodd(1), cthodoaly(1), cthoepain(1), | |
| cthog(1), ctholcthy(1), cthold(1), ctholdar(1), ctholdg(1), | |
| ctholdy(1), ctholo(1), cthoo(1), cthoor(1), cthoral(1), | |
| cthorchy(1), cthos(1), cthoshol(1), cthosm(1), cthosy(1), | |
| dcthody(1), doctho(1), octho(1), octhodaly(1), octhol(1), | |
| octhole(1), octhor(1), oshctho(1), osocthor(1), otcholocthol(1), | |
| qoctho(1), qocthody(1), qoctholy(1), qocthor(1), qokchocthor(1), | |
| shocthody(1), shocthol(1), socthody(1), ychcthod(1), | |
| ycthodaiin(1), ycthol(1) | |
| cthod(4): (word length: 5 / group items: 21) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: ct(10), ch(3), oc(2), yc(2), dc(1) | |
| contains: cthody(18), octhody(4), chcthody(3), cthodal(2), cthodol(2), | |
| chcthod(1), chocthody(1), cthodaiin(1), cthodaiis(1), | |
| cthodaim(1), cthodam(1), cthodar(1), cthodd(1), cthodoaly(1), | |
| dcthody(1), octhodaly(1), qocthody(1), shocthody(1), socthody(1), | |
| ychcthod(1), ycthodaiin(1) | |
| cthodaiin(1): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: yc(1) | |
| contains: ycthodaiin(1) | |
| cthodal(2): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: oc(1) | |
| contains: octhodaly(1) | |
| cthody(18): (word length: 6 / group items: 7) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(2), oc(1), dc(1), qo(1), sh(1) | |
| contains: octhody(4), chcthody(3), chocthody(1), dcthody(1), | |
| qocthody(1), shocthody(1), socthody(1) | |
| cthol(61): (word length: 5 / group items: 15) | |
| length: min=6, max=12, avg=7.3 | |
| top prefixes: ct(8), qo(2), oc(2), ot(1), sh(1) | |
| contains: ctholy(4), cthols(2), qocthol(2), ctholcthy(1), cthold(1), | |
| ctholdar(1), ctholdg(1), ctholdy(1), ctholo(1), octhol(1), | |
| octhole(1), otcholocthol(1), qoctholy(1), shocthol(1), ycthol(1) | |
| cthold(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ct(3) | |
| contains: ctholdar(1), ctholdg(1), ctholdy(1) | |
| ctholy(4): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoctholy(1) | |
| cthoo(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ct(1) | |
| contains: cthoor(1) | |
| cthor(45): (word length: 5 / group items: 8) | |
| length: min=6, max=11, avg=7.5 | |
| top prefixes: ct(3), qo(2), ch(1), oc(1), os(1) | |
| contains: cthory(2), chcthor(1), cthoral(1), cthorchy(1), octhor(1), | |
| osocthor(1), qocthor(1), qokchocthor(1) | |
| cthos(1): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ct(3), oc(1), ch(1) | |
| contains: octhos(2), chcthosy(1), cthoshol(1), cthosm(1), cthosy(1) | |
| cthosy(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chcthosy(1) | |
| cths(2): (word length: 4 / group items: 4) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: ch(1), ct(1), qo(1), so(1) | |
| contains: chcthso(1), cthscthain(1), qocthsy(1), socths(1) | |
| cthy(111): (word length: 4 / group items: 47) | |
| length: min=5, max=11, avg=7.5 | |
| top prefixes: ch(6), sh(5), ct(5), oc(2), qo(2) | |
| contains: chcthy(79), shcthy(31), checthy(28), shecthy(20), chocthy(18), | |
| shocthy(12), octhy(10), qocthy(7), cheocthy(5), pchocthy(3), | |
| cthyd(2), olchcthy(2), orchcthy(2), qcthy(2), sheocthy(2), | |
| ychocthy(2), aiicthy(1), cheecthy(1), cheolchcthy(1), | |
| ckhocthy(1), cpheocthy(1), cphocthy(1), cthachcthy(1), | |
| cthdeecthy(1), ctholcthy(1), cthyaiin(1), daicthy(1), dchcthy(1), | |
| dcthy(1), eocthy(1), keocthy(1), lchcthy(1), lshcthy(1), | |
| octhys(1), odchecthy(1), oeecthy(1), okchocthy(1), olkeeycthy(1), | |
| otolchcthy(1), qodcthy(1), schcthy(1), sheycthy(1), solcthy(1), | |
| tchcthy(1), tocthy(1), toeeodcthy(1), ychecthy(1) | |
| cto(4): (word length: 3 / group items: 5) | |
| length: min=4, max=7, avg=5.2 | |
| top prefixes: ct(4), ch(1) | |
| contains: ctol(2), ctos(2), choctoy(1), ctody(1), ctoiin(1) | |
| cty(5): (word length: 3 / group items: 9) | |
| length: min=4, max=8, avg=6.2 | |
| top prefixes: ch(3), sh(3), oc(1), pc(1), qo(1) | |
| contains: chocty(2), chcty(1), chdlcty(1), octy(1), pchocty(1), | |
| qotdcty(1), shcty(1), shectyhy(1), sheocty(1) | |
| dady(5): (word length: 4 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ch(1), of(1), ot(1) | |
| contains: chedady(1), ofchdady(1), otdady(1) | |
| dag(1): (word length: 3 / group items: 1) | |
| length: min=4, max=4, avg=4.0 | |
| top prefixes: yd(1) | |
| contains: ydag(1) | |
| daid(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: od(1) | |
| contains: odaidy(1) | |
| daiiin(17): (word length: 6 / group items: 10) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: ch(2), da(2), od(1), qo(1), ke(1) | |
| contains: odaiiin(4), chedaiiin(2), qodaiiin(2), cheodaiiin(1), | |
| daiiine(1), daiiiny(1), kedaiiin(1), ldaiiin(1), shedaiiin(1), | |
| sodaiiin(1) | |
| daiil(1): (word length: 5 / group items: 5) | |
| length: min=6, max=10, avg=7.0 | |
| top prefixes: da(2), cp(1), od(1), yd(1) | |
| contains: cphodaiils(1), daiild(1), daiildy(1), odaiil(1), ydaiil(1) | |
| daiild(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1) | |
| contains: daiildy(1) | |
| daiim(5): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: od(1) | |
| contains: odaiim(1) | |
| daiin(864): (word length: 5 / group items: 164) | |
| length: min=6, max=14, avg=8.8 | |
| top prefixes: ch(19), qo(19), sh(9), da(7), ok(7) | |
| contains: odaiin(61), chodaiin(44), qodaiin(42), chedaiin(32), | |
| shodaiin(23), ydaiin(21), chdaiin(16), shedaiin(15), | |
| cheodaiin(11), oldaiin(9), todaiin(9), oteodaiin(8), otodaiin(5), | |
| pchodaiin(5), podaiin(5), sheodaiin(5), cheedaiin(4), | |
| opchedaiin(4), pchedaiin(4), aldaiin(3), daiindy(3), daldaiin(3), | |
| kodaiin(3), ldaiin(3), lodaiin(3), okedaiin(3), opdaiin(3), | |
| opydaiin(3), otedaiin(3), pchdaiin(3), pdaiin(3), qoedaiin(3), | |
| qokedaiin(3), qotedaiin(3), rodaiin(3), shdaiin(3), sodaiin(3), | |
| tchodaiin(3), tedaiin(3), ytodaiin(3), dchodaiin(2), doldaiin(2), | |
| fchodaiin(2), kcheodaiin(2), keodaiin(2), oeedaiin(2), | |
| okeeodaiin(2), okeodaiin(2), okodaiin(2), olchdaiin(2), | |
| olkedaiin(2), ordaiin(2), pshodaiin(2), pydaiin(2), qoeedaiin(2), | |
| tchdaiin(2), teeodaiin(2), teodaiin(2), ychedaiin(2), | |
| ararchodaiin(1), chadaiin(1), chdodaiin(1), chdypdaiin(1), | |
| chechdaiin(1), cheeedaiin(1), cheodoiidaiin(1), cheolchdaiin(1), | |
| cheoltchedaiin(1), cheotdaiin(1), chldaiin(1), chodaiindy(1), | |
| chokchodaiin(1), choldaiin(1), chtodaiin(1), cpheodaiin(1), | |
| cthodaiin(1), daiinls(1), daiino(1), daiinol(1), daiiny(1), | |
| darordaiin(1), dchedaiin(1), dcheodaiin(1), dodaiin(1), | |
| doleodaiin(1), eeeodaiin(1), eeodaiin(1), etodaiin(1), | |
| fodaiin(1), foldaiin(1), kaldaiin(1), kchdaiin(1), kchedaiin(1), | |
| keeodaiin(1), kshodaiin(1), leedaiin(1), lkeodaiin(1), | |
| lotedaiin(1), lshdaiin(1), ocheodaiin(1), odeedaiin(1), | |
| oedaiin(1), oeeeodaiin(1), ofchedaiin(1), okadaiin(1), | |
| okchedaiin(1), okeedaiin(1), olchedaiin(1), opaldaiin(1), | |
| opodaiin(1), oshsodaiin(1), otcheedaiin(1), otcheodaiin(1), | |
| oteeodaiin(1), pcheodaiin(1), poldaiin(1), pshdaiin(1), | |
| pshedaiin(1), qedaiin(1), qeoodaiin(1), qochdaiin(1), | |
| qochodaiin(1), qofchdaiin(1), qofydaiin(1), qokcheodaiin(1), | |
| qokeedaiin(1), qokeeodaiin(1), qokodaiin(1), qopchedaiin(1), | |
| qopdaiin(1), qopydaiin(1), qoteedaiin(1), qoteodaiin(1), | |
| qotodaiin(1), saldaiin(1), sedaiin(1), seodaiin(1), | |
| sheeodaiin(1), shepdaiin(1), shfydaiin(1), sholdaiin(1), | |
| sholfosdaiin(1), sotchdaiin(1), taedaiin(1), tarodaiin(1), | |
| tchedaiin(1), tcheodaiin(1), tdaiin(1), tolchdaiin(1), | |
| tshodaiin(1), ycheedaiin(1), ycheeodaiin(1), ycheeytydaiin(1), | |
| ychodaiin(1), ycthodaiin(1), ykedaiin(1), ykeedaiin(1), | |
| ykeodaiin(1), yodaiin(1), ypchdaiin(1), ypodaiin(1), | |
| yshedaiin(1), ytchodaiin(1), yteodaiin(1) | |
| daiindy(3): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: chodaiindy(1) | |
| daiino(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1) | |
| contains: daiinol(1) | |
| daiir(23): (word length: 5 / group items: 9) | |
| length: min=6, max=12, avg=8.2 | |
| top prefixes: da(3), ch(2), od(1), po(1), sc(1) | |
| contains: daiiral(2), odaiir(2), podaiir(2), chdaiirsainy(1), | |
| cheodaiir(1), daiirol(1), daiiry(1), schedaiir(1), ykeeeedaiir(1) | |
| daiis(5): (word length: 5 / group items: 2) | |
| length: min=9, max=10, avg=9.5 | |
| top prefixes: ct(1), of(1) | |
| contains: cthodaiis(1), ofchedaiis(1) | |
| dail(2): (word length: 4 / group items: 4) | |
| length: min=6, max=9, avg=7.8 | |
| top prefixes: ch(1), da(1), op(1), ot(1) | |
| contains: chdail(1), daildain(1), opdaildo(1), oteeodail(1) | |
| daim(11): (word length: 4 / group items: 12) | |
| length: min=5, max=8, avg=6.4 | |
| top prefixes: da(4), ar(1), ct(1), dy(1), ka(1) | |
| contains: arodaim(1), cthodaim(1), daimd(1), daimdy(1), daimm(1), | |
| daimom(1), dydaim(1), kaldaim(1), okeedaim(1), oldaim(1), | |
| qodaim(1), shodaim(1) | |
| daimd(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: da(1) | |
| contains: daimdy(1) | |
| dain(211): (word length: 4 / group items: 100) | |
| length: min=5, max=11, avg=7.6 | |
| top prefixes: qo(12), da(10), ch(8), ot(7), te(5) | |
| contains: chedain(19), odain(18), qodain(11), shedain(11), chdain(9), | |
| chodain(9), cheodain(8), shodain(5), ydain(5), qokedain(4), | |
| tedain(4), okedain(3), pchodain(3), qokeedain(3), cheedain(2), | |
| keedain(2), lchdain(2), ldain(2), lkedain(2), okeedain(2), | |
| oldain(2), otedain(2), oteedain(2), pchedain(2), tdain(2), | |
| todain(2), ykeedain(2), cheoldain(1), chkdain(1), chopdain(1), | |
| daildain(1), dainaldy(1), daind(1), daindl(1), daing(1), | |
| dainkey(1), dainl(1), dainod(1), dainor(1), dainy(1), | |
| dchedain(1), dcheodain(1), dydain(1), dykeedain(1), kodain(1), | |
| kshdain(1), kydain(1), kydainy(1), lkeedain(1), lkeodain(1), | |
| lpchdain(1), lsheedain(1), ochedain(1), oeeedain(1), oeeodain(1), | |
| ofadain(1), okaldain(1), okeodain(1), olkeedain(1), opchdain(1), | |
| orolodain(1), otchdain(1), otchedain(1), oteodain(1), | |
| otlchdain(1), otyteeodain(1), pcheodain(1), qetdain(1), | |
| qochedain(1), qoeedain(1), qokchdain(1), qokeeodain(1), | |
| qoodain(1), qopdain(1), qotchdain(1), qotedain(1), qotodain(1), | |
| rodain(1), schodain(1), sheedain(1), sheeodain(1), ssheodain(1), | |
| taldain(1), tchodain(1), teedain(1), teeodain(1), teodain(1), | |
| teolkedain(1), tshedain(1), ychdain(1), ychedain(1), | |
| ycheeodain(1), ycheodain(1), yfodain(1), ykchedain(1), | |
| ykcheodain(1), ykeeodain(1), ykeodain(1), yshdain(1), yteodain(1) | |
| daind(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: da(1) | |
| contains: daindl(1) | |
| dainy(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ky(1) | |
| contains: kydainy(1) | |
| dair(106): (word length: 4 / group items: 60) | |
| length: min=5, max=10, avg=7.1 | |
| top prefixes: da(17), ch(6), pc(4), qo(3), po(3) | |
| contains: dairal(5), odair(5), dairy(4), pchdair(4), dairin(3), | |
| dairo(3), dairody(3), qodair(3), chdair(2), chodair(2), | |
| dairair(2), dairam(2), dairar(2), dairl(2), dairol(2), podair(2), | |
| shdair(2), tedair(2), ydair(2), adairchdy(1), chdairod(1), | |
| chedair(1), cheeoldair(1), chokedair(1), dairchey(1), daird(1), | |
| dairiy(1), dairkal(1), dairodg(1), dairom(1), dairydy(1), | |
| dtedair(1), kedair(1), lshodair(1), oedair(1), okeeodair(1), | |
| opcheodair(1), opdairody(1), otchedair(1), otedair(1), | |
| oteodair(1), pchdairor(1), pchedairs(1), pchodair(1), pdair(1), | |
| podairol(1), poedair(1), qokeedair(1), qokeodair(1), schedair(1), | |
| shedair(1), sodair(1), tchedair(1), tchodairos(1), tshodair(1), | |
| ydairol(1), ykdair(1), ykodair(1), ypchdair(1), yshedair(1) | |
| dairo(3): (word length: 5 / group items: 10) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: da(4), ch(1), op(1), pc(1), po(1) | |
| contains: dairody(3), dairol(2), chdairod(1), dairodg(1), dairom(1), | |
| opdairody(1), pchdairor(1), podairol(1), tchodairos(1), | |
| ydairol(1) | |
| dairody(3): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: op(1) | |
| contains: opdairody(1) | |
| dairol(2): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: po(1), yd(1) | |
| contains: podairol(1), ydairol(1) | |
| dairy(4): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1) | |
| contains: dairydy(1) | |
| dais(4): (word length: 4 / group items: 6) | |
| length: min=5, max=8, avg=6.8 | |
| top prefixes: da(4), pc(1), qo(1) | |
| contains: daisam(1), daisin(1), daisn(1), daisoldy(1), pchodais(1), | |
| qotedais(1) | |
| dait(1): (word length: 4 / group items: 3) | |
| length: min=9, max=10, avg=9.7 | |
| top prefixes: cp(1), et(1), sh(1) | |
| contains: cphdaithy(1), etodaithey(1), shedaitain(1) | |
| daky(1): (word length: 4 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ko(1), ok(1), po(1) | |
| contains: koldaky(1), okeedaky(1), poldaky(1) | |
| dal(253): (word length: 3 / group items: 247) | |
| length: min=4, max=11, avg=6.9 | |
| top prefixes: da(67), ch(24), ot(15), sh(12), ok(12) | |
| contains: daly(30), chedal(24), chdal(19), daldy(17), odal(13), | |
| shedal(11), dalor(8), cheodal(7), chodal(7), dalam(7), dalol(7), | |
| okedal(7), qodal(7), dals(6), oteodal(6), dalal(5), dalar(5), | |
| dalchdy(5), pchedal(5), dalchedy(4), otedal(4), shdal(4), | |
| sheodal(4), chdaly(3), chedaly(3), chodaly(3), dalaiin(3), | |
| dalchy(3), daldaiin(3), dalkar(3), dalo(3), dalshdy(3), | |
| keedal(3), okeedal(3), okeodal(3), oldal(3), otchdal(3), | |
| qokedal(3), qokeedal(3), qotedal(3), shodal(3), sodal(3), | |
| teodal(3), todal(3), ydal(3), chodalg(2), cthodal(2), dalary(2), | |
| dalkedy(2), dalom(2), dalr(2), kchdal(2), keeodal(2), koldal(2), | |
| lchdal(2), lkedal(2), odaly(2), okchdal(2), okeedaly(2), | |
| okeodaly(2), otaldal(2), oteedal(2), otodal(2), pdal(2), | |
| qokeodal(2), sheodaly(2), teedal(2), ychedal(2), adal(1), | |
| aiidal(1), aldalosam(1), chdalal(1), chdalchdy(1), chdaldy(1), | |
| chdalkair(1), chdalor(1), chedalkedy(1), chedalos(1), | |
| cheedalaiin(1), cheodalol(1), cheokeodal(1), cheoteeodal(1), | |
| chkodal(1), chodalar(1), chodalr(1), choddal(1), choldal(1), | |
| cphodal(1), cphodales(1), cthdaly(1), ctheodal(1), daiidal(1), | |
| dala(1), dalain(1), dalaldam(1), dalalody(1), dalaly(1), | |
| dalas(1), dalchckhy(1), dalchd(1), dalched(1), dalcheeeky(1), | |
| dalches(1), dalchor(1), dald(1), daldal(1), daldalol(1), | |
| daldar(1), daldeam(1), daleesd(1), dalfchy(1), dalg(1), | |
| dalkain(1), dalkal(1), dalkalytam(1), dalkeeey(1), dalkshdy(1), | |
| dalky(1), dalmy(1), dalocthhy(1), dalody(1), dalohey(1), | |
| daloky(1), dalols(1), dalorain(1), dalory(1), dalshal(1), | |
| dalshedo(1), dalshedy(1), dalshey(1), dalshy(1), dalsy(1), | |
| daltedy(1), dalteoshy(1), dalychs(1), dalydal(1), daramdal(1), | |
| darcheedal(1), dchdal(1), dchdaldy(1), dchedal(1), dchedaly(1), | |
| ddal(1), doedal(1), dshedal(1), dsheedal(1), dshodal(1), | |
| eodal(1), fcheodal(1), fodal(1), kaiiidal(1), kchdaldy(1), | |
| kedal(1), kedaleey(1), keeedal(1), keerodal(1), keodal(1), | |
| kodal(1), kodalchy(1), ksheodal(1), lchedal(1), ldalor(1), | |
| ldals(1), ldaly(1), lkeedal(1), lodaly(1), ochedal(1), | |
| octhodaly(1), odalaly(1), odalar(1), odaldy(1), odalydary(1), | |
| oedal(1), oeedaly(1), ofyskydal(1), okaldal(1), okedalor(1), | |
| okedals(1), okeeodal(1), okodaly(1), okoldaly(1), olkchdal(1), | |
| olkeedal(1), olkeeodal(1), ololdal(1), opchdal(1), opchedal(1), | |
| opcheodal(1), opshedal(1), orchedal(1), otardaly(1), otchodal(1), | |
| otchodals(1), otdal(1), otedalol(1), oteeodalsy(1), oteosdal(1), | |
| otolodal(1), otydal(1), pchdal(1), pcheodal(1), pchodal(1), | |
| pdalshor(1), polkeedal(1), polshdal(1), pschedal(1), pshdal(1), | |
| psheodalo(1), pshodalos(1), pydaly(1), pykydal(1), qchodal(1), | |
| qofchdal(1), qokchodal(1), qokodal(1), qopchedal(1), qotchdal(1), | |
| rcheodal(1), salchedal(1), saldal(1), saroldal(1), sdal(1), | |
| shdaldy(1), shdalky(1), shdalo(1), shdaly(1), shedaldy(1), | |
| sheedal(1), shydal(1), ssheedal(1), tchedal(1), tcheodal(1), | |
| tedal(1), todalain(1), todaly(1), toldal(1), tshedal(1), | |
| tsheodal(1), ydals(1), ykeedal(1), ysaldal(1), yshdal(1), | |
| ysheedal(1), ytchedal(1), yteeodal(1), ytodal(1), ytodaly(1) | |
| dala(1): (word length: 4 / group items: 16) | |
| length: min=5, max=11, avg=6.8 | |
| top prefixes: da(10), ch(3), od(2), to(1) | |
| contains: dalam(7), dalal(5), dalar(5), dalaiin(3), dalary(2), | |
| chdalal(1), cheedalaiin(1), chodalar(1), dalain(1), dalaldam(1), | |
| dalalody(1), dalaly(1), dalas(1), odalaly(1), odalar(1), | |
| todalain(1) | |
| dalaiin(3): (word length: 7 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ch(1) | |
| contains: cheedalaiin(1) | |
| dalain(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: to(1) | |
| contains: todalain(1) | |
| dalal(5): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: da(3), ch(1), od(1) | |
| contains: chdalal(1), dalaldam(1), dalalody(1), dalaly(1), odalaly(1) | |
| dalaly(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: od(1) | |
| contains: odalaly(1) | |
| dalar(5): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: da(1), ch(1), od(1) | |
| contains: dalary(2), chodalar(1), odalar(1) | |
| dalchd(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: da(1), ch(1) | |
| contains: dalchdy(5), chdalchdy(1) | |
| dalchdy(5): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chdalchdy(1) | |
| dalched(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: da(1) | |
| contains: dalchedy(4) | |
| dalchy(3): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ko(1) | |
| contains: kodalchy(1) | |
| dald(1): (word length: 4 / group items: 12) | |
| length: min=5, max=8, avg=7.0 | |
| top prefixes: da(6), sh(2), ch(1), dc(1), kc(1) | |
| contains: daldy(17), daldaiin(3), chdaldy(1), daldal(1), daldalol(1), | |
| daldar(1), daldeam(1), dchdaldy(1), kchdaldy(1), odaldy(1), | |
| shdaldy(1), shedaldy(1) | |
| daldal(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: da(1) | |
| contains: daldalol(1) | |
| daldy(17): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=7.3 | |
| top prefixes: sh(2), ch(1), dc(1), kc(1), od(1) | |
| contains: chdaldy(1), dchdaldy(1), kchdaldy(1), odaldy(1), shdaldy(1), | |
| shedaldy(1) | |
| dalg(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chodalg(2) | |
| dalkal(1): (word length: 6 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: da(1) | |
| contains: dalkalytam(1) | |
| dalkedy(2): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: chedalkedy(1) | |
| dalky(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(1) | |
| contains: shdalky(1) | |
| dalo(3): (word length: 4 / group items: 21) | |
| length: min=5, max=9, avg=7.1 | |
| top prefixes: da(11), ch(3), ps(2), al(1), ld(1) | |
| contains: dalor(8), dalol(7), dalom(2), aldalosam(1), chdalor(1), | |
| chedalos(1), cheodalol(1), daldalol(1), dalocthhy(1), dalody(1), | |
| dalohey(1), daloky(1), dalols(1), dalorain(1), dalory(1), | |
| ldalor(1), okedalor(1), otedalol(1), psheodalo(1), pshodalos(1), | |
| shdalo(1) | |
| dalol(7): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.8 | |
| top prefixes: da(2), ch(1), ot(1) | |
| contains: cheodalol(1), daldalol(1), dalols(1), otedalol(1) | |
| dalor(8): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: da(2), ch(1), ld(1), ok(1) | |
| contains: chdalor(1), dalorain(1), dalory(1), ldalor(1), okedalor(1) | |
| dalr(2): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chodalr(1) | |
| dals(6): (word length: 4 / group items: 13) | |
| length: min=5, max=10, avg=7.1 | |
| top prefixes: da(7), ot(2), ld(1), ok(1), pd(1) | |
| contains: dalshdy(3), dalshal(1), dalshedo(1), dalshedy(1), dalshey(1), | |
| dalshy(1), dalsy(1), ldals(1), okedals(1), otchodals(1), | |
| oteeodalsy(1), pdalshor(1), ydals(1) | |
| dalsy(1): (word length: 5 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ot(1) | |
| contains: oteeodalsy(1) | |
| daly(30): (word length: 4 / group items: 23) | |
| length: min=5, max=9, avg=7.0 | |
| top prefixes: ok(4), ch(3), od(2), sh(2), da(2) | |
| contains: chdaly(3), chedaly(3), chodaly(3), odaly(2), okeedaly(2), | |
| okeodaly(2), sheodaly(2), cthdaly(1), dalychs(1), dalydal(1), | |
| dchedaly(1), ldaly(1), lodaly(1), octhodaly(1), odalydary(1), | |
| oeedaly(1), okodaly(1), okoldaly(1), otardaly(1), pydaly(1), | |
| shdaly(1), todaly(1), ytodaly(1) | |
| dam(98): (word length: 3 / group items: 61) | |
| length: min=4, max=9, avg=6.3 | |
| top prefixes: ch(7), da(6), ok(6), sh(4), ol(3) | |
| contains: chdam(10), chedam(6), odam(6), oldam(6), damo(3), okedam(3), | |
| otedam(3), qodam(3), tedam(3), adam(2), aldam(2), cheodam(2), | |
| lchedam(2), okchedam(2), pchdam(2), qokedam(2), rodam(2), | |
| saldam(2), shedam(2), aiodam(1), alodam(1), cheekdam(1), | |
| cheeodam(1), chodam(1), chokeedam(1), cthodam(1), dadam(1), | |
| dalaldam(1), damamm(1), damom(1), dardam(1), dkedam(1), | |
| doldam(1), fardam(1), kamdam(1), keodam(1), kodam(1), | |
| lkeeedam(1), okchdam(1), okeedam(1), okldam(1), okoldam(1), | |
| olkardam(1), olteedam(1), orodam(1), otardam(1), oteeodam(1), | |
| paradam(1), qoschodam(1), rkedam(1), shdam(1), sheoldam(1), | |
| shodam(1), tdam(1), teedam(1), ydam(1), ykeeodam(1), ykoldam(1), | |
| yodam(1), ytchdam(1), yteodam(1) | |
| damo(3): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: da(1) | |
| contains: damom(1) | |
| dan(20): (word length: 3 / group items: 14) | |
| length: min=4, max=8, avg=6.1 | |
| top prefixes: te(2), od(1), ch(1), fo(1), kc(1) | |
| contains: odan(2), chedan(1), fodan(1), kchodan(1), laldan(1), | |
| oeoldan(1), oteedan(1), pchafdan(1), pdan(1), qodan(1), | |
| shodan(1), sotodan(1), teedan(1), teeodan(1) | |
| dar(319): (word length: 3 / group items: 228) | |
| length: min=4, max=12, avg=7.0 | |
| top prefixes: da(49), qo(15), ch(13), ot(13), ok(11) | |
| contains: chedar(30), dary(24), odar(24), chdar(20), chodar(14), | |
| otedar(11), pchedar(11), qodar(11), shdar(9), qokedar(8), | |
| daram(7), oteodar(7), shedar(7), okedar(6), oldar(6), | |
| qokeedar(6), sodar(6), cheedar(5), ldar(5), pchdar(5), | |
| cheodar(4), ychedar(4), aldar(3), darar(3), daro(3), darol(3), | |
| darom(3), daror(3), kedar(3), okchdar(3), okeodar(3), oteedar(3), | |
| otodar(3), pcheodar(3), podar(3), qotedar(3), qoteedar(3), | |
| teodar(3), ytedar(3), daraiin(2), daral(2), daraly(2), | |
| darchedy(2), dardy(2), dchdar(2), dodar(2), keodar(2), | |
| lchedar(2), lodar(2), okeedar(2), otchodar(2), pchodar(2), | |
| pdar(2), pshdar(2), qeedar(2), qotchedar(2), sheeodar(2), | |
| tchedar(2), tchodar(2), teedar(2), todar(2), tshedar(2), ydar(2), | |
| ykeodar(2), adar(1), aindar(1), alchedar(1), alodar(1), | |
| alpchdar(1), cfhodar(1), chcphdar(1), chdarol(1), chetedar(1), | |
| chkaidararal(1), chkchdar(1), chkchedaram(1), choldar(1), | |
| chpadar(1), ckheodar(1), cpheodar(1), cphodar(1), csedar(1), | |
| cthodar(1), ctholdar(1), daldar(1), dara(1), daraiiin(1), | |
| daraiinm(1), darailchedy(1), darair(1), darala(1), darall(1), | |
| daraloikhy(1), daramdal(1), darams(1), dararal(1), dararda(1), | |
| darchdar(1), darcheedal(1), darcheos(1), darchey(1), darchor(1), | |
| darchy(1), dardam(1), dardsh(1), dardyr(1), dareky(1), dariin(1), | |
| dario(1), daroal(1), darod(1), darodsf(1), darody(1), | |
| darolaly(1), darolm(1), darolsy(1), darordaiin(1), darory(1), | |
| darshey(1), darshody(1), daryry(1), dchedar(1), dchodar(1), | |
| deedar(1), dkedar(1), dsheodar(1), dshodar(1), dydariin(1), | |
| fchdar(1), fshdar(1), kchdar(1), kchedar(1), kcheodar(1), | |
| kcholchdar(1), kedarxy(1), keeodar(1), kodar(1), kodary(1), | |
| koldarod(1), lkedar(1), lkeedar(1), lldar(1), lshdar(1), | |
| lshedary(1), oaldar(1), oaldary(1), ochedar(1), ochodare(1), | |
| ockhodar(1), odalydary(1), odarchdy(1), odariin(1), okadar(1), | |
| okechdaral(1), okeedaram(1), okeeodar(1), okeesodar(1), | |
| okeohdar(1), okodar(1), olchdar(1), olcheedar(1), oleedar(1), | |
| olrodar(1), opchdar(1), opchdard(1), opdarshdy(1), orchedar(1), | |
| oseeedar(1), otadar(1), otchedar(1), otcheodar(1), oteeeodar(1), | |
| oteeodar(1), otodarod(1), otokeedar(1), otydary(1), oydar(1), | |
| oyteiedar(1), padar(1), pchdarody(1), pchsodar(1), podaroar(1), | |
| poleedaran(1), pshedar(1), psheodar(1), pychdar(1), qodary(1), | |
| qofchdar(1), qokaldar(1), qokchdar(1), qokodar(1), qoldar(1), | |
| qopeeedar(1), qotchdar(1), qotedary(1), rchedar(1), rsheedar(1), | |
| schodar(1), shdary(1), sheedar(1), sheodar(1), shodary(1), | |
| shokeedar(1), shorydar(1), shshdar(1), skaiiodar(1), sydarary(1), | |
| taldar(1), tchdarol(1), tcheodar(1), tedar(1), teedaram(1), | |
| teodarody(1), todaraiily(1), tshdar(1), tsheodar(1), | |
| ydaraishy(1), ydaral(1), ydarchom(1), ykchdar(1), ykedar(1), | |
| ykeedar(1), ykesodarar(1), ykodar(1), ypchdar(1), ytcheodar(1), | |
| ytdar(1), yteedar(1) | |
| dara(1): (word length: 4 / group items: 27) | |
| length: min=5, max=12, avg=7.9 | |
| top prefixes: da(16), ch(2), ok(2), yd(2), po(1) | |
| contains: daram(7), darar(3), daraiin(2), daral(2), daraly(2), | |
| chkaidararal(1), chkchedaram(1), daraiiin(1), daraiinm(1), | |
| darailchedy(1), darair(1), darala(1), darall(1), daraloikhy(1), | |
| daramdal(1), darams(1), dararal(1), dararda(1), okechdaral(1), | |
| okeedaram(1), poleedaran(1), sydarary(1), teedaram(1), | |
| todaraiily(1), ydaraishy(1), ydaral(1), ykesodarar(1) | |
| daraiin(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: da(1) | |
| contains: daraiinm(1) | |
| daral(2): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: da(4), ok(1), yd(1) | |
| contains: daraly(2), darala(1), darall(1), daraloikhy(1), okechdaral(1), | |
| ydaral(1) | |
| daram(7): (word length: 5 / group items: 5) | |
| length: min=6, max=11, avg=8.4 | |
| top prefixes: da(2), ch(1), ok(1), te(1) | |
| contains: chkchedaram(1), daramdal(1), darams(1), okeedaram(1), | |
| teedaram(1) | |
| darar(3): (word length: 5 / group items: 5) | |
| length: min=7, max=12, avg=8.8 | |
| top prefixes: da(2), ch(1), sy(1), yk(1) | |
| contains: chkaidararal(1), dararal(1), dararda(1), sydarary(1), | |
| ykesodarar(1) | |
| dararal(1): (word length: 7 / group items: 1) | |
| length: min=12, max=12, avg=12.0 | |
| top prefixes: ch(1) | |
| contains: chkaidararal(1) | |
| dardy(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: da(1) | |
| contains: dardyr(1) | |
| dariin(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: dy(1), od(1) | |
| contains: dydariin(1), odariin(1) | |
| daro(3): (word length: 4 / group items: 19) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: da(12), ch(1), ko(1), ot(1), pc(1) | |
| contains: darol(3), darom(3), daror(3), chdarol(1), daroal(1), darod(1), | |
| darodsf(1), darody(1), darolaly(1), darolm(1), darolsy(1), | |
| darordaiin(1), darory(1), koldarod(1), otodarod(1), pchdarody(1), | |
| podaroar(1), tchdarol(1), teodarody(1) | |
| darod(1): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.8 | |
| top prefixes: da(2), ko(1), ot(1), pc(1), te(1) | |
| contains: darodsf(1), darody(1), koldarod(1), otodarod(1), pchdarody(1), | |
| teodarody(1) | |
| darody(1): (word length: 6 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: pc(1), te(1) | |
| contains: pchdarody(1), teodarody(1) | |
| darol(3): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: da(3), ch(1), tc(1) | |
| contains: chdarol(1), darolaly(1), darolm(1), darolsy(1), tchdarol(1) | |
| daror(3): (word length: 5 / group items: 2) | |
| length: min=6, max=10, avg=8.0 | |
| top prefixes: da(2) | |
| contains: darordaiin(1), darory(1) | |
| dary(24): (word length: 4 / group items: 10) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: qo(2), sh(2), da(1), ko(1), ls(1) | |
| contains: daryry(1), kodary(1), lshedary(1), oaldary(1), odalydary(1), | |
| otydary(1), qodary(1), qotedary(1), shdary(1), shodary(1) | |
| das(5): (word length: 3 / group items: 20) | |
| length: min=4, max=7, avg=5.7 | |
| top prefixes: da(7), ot(2), ch(1), dc(1), dy(1) | |
| contains: chedas(1), dasady(1), dasaiin(1), dasain(1), dasam(1), | |
| dasar(1), dasd(1), dasy(1), dchdas(1), dydas(1), keedas(1), | |
| okodas(1), otedas(1), oteodas(1), pchedas(1), shedas(1), | |
| tedas(1), todashx(1), ydas(1), ykodas(1) | |
| day(1): (word length: 3 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: da(1) | |
| contains: dayty(1) | |
| dchaiin(5): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: od(1) | |
| contains: odchaiin(1) | |
| dchd(1): (word length: 4 / group items: 13) | |
| length: min=5, max=10, avg=6.8 | |
| top prefixes: dc(6), od(2), ch(1), kc(1), pc(1) | |
| contains: dchdy(8), dchdar(2), chdchdy(1), dchdal(1), dchdaldy(1), | |
| dchdas(1), dchdor(1), kcheedchdy(1), odchd(1), odchdy(1), | |
| pchedchdy(1), pydchdom(1), shdchdy(1) | |
| dchdal(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: dc(1) | |
| contains: dchdaldy(1) | |
| dchdy(8): (word length: 5 / group items: 5) | |
| length: min=6, max=10, avg=7.8 | |
| top prefixes: ch(1), kc(1), od(1), pc(1), sh(1) | |
| contains: chdchdy(1), kcheedchdy(1), odchdy(1), pchedchdy(1), shdchdy(1) | |
| dched(3): (word length: 5 / group items: 10) | |
| length: min=6, max=9, avg=7.7 | |
| top prefixes: dc(6), ar(1), od(1), ot(1), qo(1) | |
| contains: dchedy(27), arodchedy(1), dchedaiin(1), dchedain(1), | |
| dchedal(1), dchedaly(1), dchedar(1), odchedy(1), oteodched(1), | |
| qodched(1) | |
| dchedal(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: dc(1) | |
| contains: dchedaly(1) | |
| dchedy(27): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ar(1), od(1) | |
| contains: arodchedy(1), odchedy(1) | |
| dchee(1): (word length: 5 / group items: 13) | |
| length: min=6, max=11, avg=7.7 | |
| top prefixes: dc(12), od(1) | |
| contains: dcheey(13), dcheedy(4), dcheeody(2), dcheeos(2), | |
| dcheeckhos(1), dcheecthey(1), dcheeey(1), dcheeky(1), | |
| dcheeokeody(1), dcheeol(1), dcheeoy(1), dchees(1), odchees(1) | |
| dchees(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: od(1) | |
| contains: odchees(1) | |
| dcheo(7): (word length: 5 / group items: 15) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: dc(14), te(1) | |
| contains: dcheol(8), dcheor(4), dcheody(2), dcheoky(2), dcheos(2), | |
| dcheoain(1), dcheocy(1), dcheod(1), dcheodaiin(1), dcheodain(1), | |
| dcheodl(1), dcheoldy(1), dcheoteos(1), dcheoty(1), tedcheo(1) | |
| dcheod(1): (word length: 6 / group items: 4) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: dc(4) | |
| contains: dcheody(2), dcheodaiin(1), dcheodain(1), dcheodl(1) | |
| dcheol(8): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: dc(1) | |
| contains: dcheoldy(1) | |
| dchey(18): (word length: 5 / group items: 8) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: ot(2), ad(1), ch(1), dc(1), ld(1) | |
| contains: adchey(1), chedchey(1), dcheytain(1), ldchey(1), odchey(1), | |
| oteedchey(1), oteeedchey(1), podchey(1) | |
| dcho(5): (word length: 4 / group items: 26) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: dc(20), ch(1), kd(1), op(1), ot(1) | |
| contains: dchol(26), dchor(26), dchokchy(3), dchos(3), dchodaiin(2), | |
| dchody(2), dchog(2), chdchol(1), dchochar(1), dchod(1), | |
| dchodar(1), dchodees(1), dchokchr(1), dchokey(1), dchokol(1), | |
| dcholal(1), dcholdy(1), dcholy(1), dchom(1), dchorol(1), | |
| dchoty(1), kdchody(1), opodchol(1), otedchor(1), poldchody(1), | |
| ydchos(1) | |
| dchod(1): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.7 | |
| top prefixes: dc(4), kd(1), po(1) | |
| contains: dchodaiin(2), dchody(2), dchodar(1), dchodees(1), kdchody(1), | |
| poldchody(1) | |
| dchody(2): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: kd(1), po(1) | |
| contains: kdchody(1), poldchody(1) | |
| dchol(26): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: dc(3), ch(1), op(1) | |
| contains: chdchol(1), dcholal(1), dcholdy(1), dcholy(1), opodchol(1) | |
| dchor(26): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: dc(1), ot(1) | |
| contains: dchorol(1), otedchor(1) | |
| dchos(3): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: yd(1) | |
| contains: ydchos(1) | |
| dchsy(1): (word length: 5 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: dc(1), ok(1) | |
| contains: dchsykchy(1), okeedchsy(1) | |
| dchy(30): (word length: 4 / group items: 29) | |
| length: min=5, max=12, avg=7.4 | |
| top prefixes: dc(7), ch(6), sh(4), ot(2), qo(1) | |
| contains: chodchy(4), qodchy(2), chdchy(1), chedchy(1), cheockhedchy(1), | |
| cheodchy(1), choldchy(1), dchyd(1), dchydy(1), dchykchy(1), | |
| dchykey(1), dchyky(1), dchyr(1), dchytchy(1), dydchy(1), | |
| fshodchy(1), odchy(1), okodchy(1), oteodchy(1), otodchy(1), | |
| oydchy(1), pcheodchy(1), schodchy(1), shckhdchy(1), shdchy(1), | |
| shecthedchy(1), shedchy(1), tcholdchy(1), toeeedchy(1) | |
| dchyd(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: dc(1) | |
| contains: dchydy(1) | |
| dckhy(1): (word length: 5 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ol(1), qo(1), yk(1) | |
| contains: oldckhy(1), qodckhy(1), ykedckhy(1) | |
| dcthy(1): (word length: 5 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: qo(1), to(1) | |
| contains: qodcthy(1), toeeodcthy(1) | |
| ddal(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: choddal(1) | |
| ddl(1): (word length: 3 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ck(1), ok(1), op(1) | |
| contains: ckhddl(1), okeeddl(1), opcheddl(1) | |
| ddy(2): (word length: 3 / group items: 11) | |
| length: min=4, max=9, avg=6.5 | |
| top prefixes: qo(4), ch(2), ed(1), ko(1), sh(1) | |
| contains: chddy(1), choddy(1), eddy(1), koddy(1), qokylddy(1), | |
| qopcheddy(1), qotddyar(1), qoteeddy(1), shddy(1), tchddy(1), | |
| ypcheddy(1) | |
| deaiin(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: od(1) | |
| contains: odeaiin(1) | |
| ded(1): (word length: 3 / group items: 4) | |
| length: min=4, max=8, avg=6.0 | |
| top prefixes: de(2), ch(1), qo(1) | |
| contains: chdedy(2), dedy(2), dedloy(1), qokededy(1) | |
| dedy(2): (word length: 4 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ch(1), qo(1) | |
| contains: chdedy(2), qokededy(1) | |
| deeal(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: yd(1) | |
| contains: ydeeal(1) | |
| deedy(2): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: qo(1), od(1), ke(1), ky(1), pc(1) | |
| contains: qodeedy(3), odeedy(2), keedeedy(1), kydeedy(1), pchdeedy(1), | |
| rodeedy(1) | |
| deeey(1): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: od(1), ch(1), sh(1), to(1) | |
| contains: odeeey(2), cheodeeey(1), shedeeey(1), todeeey(1) | |
| deeo(2): (word length: 4 / group items: 5) | |
| length: min=5, max=10, avg=7.2 | |
| top prefixes: de(3), ad(1), ot(1) | |
| contains: deeor(2), adeeody(1), deeocthey(1), deeol(1), otodeeodor(1) | |
| deey(7): (word length: 4 / group items: 16) | |
| length: min=5, max=9, avg=6.9 | |
| top prefixes: ch(3), qo(2), ok(2), od(1), ae(1) | |
| contains: odeey(2), qodeey(2), aeeodeey(1), chdeey(1), chedeey(1), | |
| cheodeey(1), kodeey(1), okchodeey(1), okodeey(1), oldeey(1), | |
| otedeey(1), pchedeey(1), pydeey(1), qeedeey(1), qoedeey(1), | |
| teodeey(1) | |
| deody(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qoeedeody(1) | |
| dey(1): (word length: 3 / group items: 15) | |
| length: min=4, max=8, avg=6.3 | |
| top prefixes: ch(2), yk(2), do(1), fc(1), ke(1) | |
| contains: chodey(2), chedey(1), doeedey(1), fchedey(1), keedey(1), | |
| lkedey(1), odey(1), oeedey(1), okeedey(1), otchedey(1), | |
| pchedey(1), shedey(1), ydey(1), ykeeodey(1), ykledey(1) | |
| dkain(2): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chedkain(1) | |
| dkar(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: dk(1) | |
| contains: dkarar(1) | |
| dkedy(2): (word length: 5 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ch(1), sh(1) | |
| contains: cheodkedy(1), shedkedy(1) | |
| dky(1): (word length: 3 / group items: 4) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: ch(1), ke(1), to(1), ts(1) | |
| contains: chedky(1), keodky(1), todky(1), tshedky(1) | |
| dlar(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: pc(1) | |
| contains: pchdlar(1) | |
| dld(1): (word length: 3 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ok(1) | |
| contains: okchdldlo(1) | |
| dls(1): (word length: 3 / group items: 4) | |
| length: min=6, max=7, avg=6.8 | |
| top prefixes: dl(2), ch(1), tc(1) | |
| contains: cheedls(1), dlshedy(1), dlssho(1), tchodls(1) | |
| dly(2): (word length: 3 / group items: 6) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: ar(1), cs(1), fe(1), ok(1), op(1) | |
| contains: arodly(1), csedly(1), feedly(1), okeodly(1), oparairdly(1), | |
| yfcheodly(1) | |
| doal(1): (word length: 4 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ct(1) | |
| contains: cthodoaly(1) | |
| doar(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: do(1) | |
| contains: doaro(1) | |
| dod(1): (word length: 3 / group items: 16) | |
| length: min=4, max=9, avg=6.7 | |
| top prefixes: do(6), ch(2), ok(2), ct(1), od(1) | |
| contains: dody(7), dodar(2), chdodaiin(1), chdody(1), ctheodody(1), | |
| dodaiin(1), dodl(1), dodyd(1), dordod(1), odody(1), okedody(1), | |
| okoldody(1), oshodody(1), qokeedody(1), shodody(1), tshodody(1) | |
| dodaiin(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chdodaiin(1) | |
| dody(7): (word length: 4 / group items: 10) | |
| length: min=5, max=9, avg=7.2 | |
| top prefixes: ok(2), ch(1), ct(1), do(1), od(1) | |
| contains: chdody(1), ctheodody(1), dodyd(1), odody(1), okedody(1), | |
| okoldody(1), oshodody(1), qokeedody(1), shodody(1), tshodody(1) | |
| doee(1): (word length: 4 / group items: 3) | |
| length: min=5, max=8, avg=6.7 | |
| top prefixes: do(3) | |
| contains: doeedey(1), doeeeesm(1), doeey(1) | |
| doiin(19): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.7 | |
| top prefixes: dt(1), od(1), pc(1) | |
| contains: dteodoiin(1), odoiin(1), pchdoiin(1) | |
| doiir(8): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: do(1) | |
| contains: doiiram(1) | |
| doiis(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: do(1) | |
| contains: doiisaly(1) | |
| dol(117): (word length: 3 / group items: 78) | |
| length: min=4, max=13, avg=6.6 | |
| top prefixes: do(38), ch(7), qo(5), sh(4), tc(3) | |
| contains: chedol(6), dolchedy(3), doly(3), otedol(3), shodol(3), | |
| chdol(2), chodol(2), cthodol(2), dolar(2), dolchey(2), dold(2), | |
| doldaiin(2), doldy(2), dolor(2), dolshedy(2), ldol(2), odol(2), | |
| pchdol(2), pchodol(2), tshdol(2), chdolaiin(1), chdoly(1), | |
| chodoldy(1), chokeeodol(1), cphodol(1), cphoeedol(1), dolaiin(1), | |
| dolaram(1), dolary(1), dolchds(1), dolcheedy(1), dolcheey(1), | |
| dolchl(1), dolchoy(1), dolchsyckheol(1), doldam(1), doldom(1), | |
| dolds(1), doledy(1), doleed(1), doleeey(1), doleodaiin(1), | |
| dolfchedy(1), dolkain(1), dolkchy(1), dolkedy(1), dolkeedy(1), | |
| dolo(1), dolody(1), dolol(1), dolr(1), dolsain(1), dolshed(1), | |
| dolshy(1), doltshdy(1), eedol(1), fchedol(1), kchdol(1), | |
| keeodol(1), lchdol(1), lkeedol(1), lkodol(1), ofchedol(1), | |
| otodol(1), pdol(1), qodol(1), qokedol(1), qokeodol(1), qopdol(1), | |
| qotedol(1), shdol(1), shedol(1), sheodol(1), tchdoltdy(1), | |
| tchedol(1), tchodol(1), tdol(1), ydoly(1) | |
| dolaiin(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chdolaiin(1) | |
| dolar(2): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: do(2) | |
| contains: dolaram(1), dolary(1) | |
| dold(2): (word length: 4 / group items: 6) | |
| length: min=5, max=8, avg=6.3 | |
| top prefixes: do(5), ch(1) | |
| contains: doldaiin(2), doldy(2), chodoldy(1), doldam(1), doldom(1), | |
| dolds(1) | |
| doldy(2): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chodoldy(1) | |
| dolo(1): (word length: 4 / group items: 3) | |
| length: min=5, max=6, avg=5.3 | |
| top prefixes: do(3) | |
| contains: dolor(2), dolody(1), dolol(1) | |
| dolshed(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: do(1) | |
| contains: dolshedy(2) | |
| doly(3): (word length: 4 / group items: 2) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: ch(1), yd(1) | |
| contains: chdoly(1), ydoly(1) | |
| dom(7): (word length: 3 / group items: 9) | |
| length: min=5, max=9, avg=7.0 | |
| top prefixes: ch(1), ck(1), cp(1), do(1), pc(1) | |
| contains: chordom(1), ckhydom(1), cphedom(1), doldom(1), pcheoldom(1), | |
| pydchdom(1), qodom(1), sheedom(1), ykeydom(1) | |
| dor(73): (word length: 3 / group items: 57) | |
| length: min=4, max=10, avg=6.4 | |
| top prefixes: do(18), ot(5), ch(3), qo(3), sh(3) | |
| contains: chdor(8), odor(8), dory(4), okedor(3), tchedor(3), chedor(2), | |
| cheodor(2), ddor(2), dorar(2), doroiin(2), oldor(2), qodor(2), | |
| qotedor(2), tchdor(2), ador(1), cfhdorol(1), cfhodoral(1), | |
| cphdor(1), cpheodor(1), dchdor(1), doraiin(1), dorain(1), | |
| doral(1), dorchdy(1), dorchory(1), dorchy(1), dordod(1), | |
| dorean(1), dorg(1), dorkcheky(1), dorl(1), dorody(1), doror(1), | |
| dorshefy(1), dorsheoy(1), keedor(1), kshdor(1), lkeedor(1), | |
| ockhdor(1), odory(1), okeodor(1), otchodor(1), otdordy(1), | |
| otechodor(1), otedor(1), otodeeodor(1), qokeeodor(1), | |
| rsheodor(1), shdor(1), shedor(1), shodor(1), todor(1), | |
| tshedor(1), ydor(1), ykchedor(1), ykedor(1), ylchedor(1) | |
| doral(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: cf(1) | |
| contains: cfhodoral(1) | |
| dory(4): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: od(1) | |
| contains: odory(1) | |
| dos(2): (word length: 3 / group items: 5) | |
| length: min=5, max=7, avg=5.8 | |
| top prefixes: ch(2), ot(2), qo(1) | |
| contains: chdos(1), chedos(1), otedos(1), otoldos(1), qodos(1) | |
| dpchy(2): (word length: 5 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ok(1), sh(1) | |
| contains: okchdpchy(1), shdpchy(1) | |
| dpy(1): (word length: 3 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: kc(1), ts(1), yp(1) | |
| contains: kchdpy(1), tshodpy(1), ypchedpy(1) | |
| dsa(1): (word length: 3 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: pd(1) | |
| contains: pdsairy(1) | |
| dsh(2): (word length: 3 / group items: 56) | |
| length: min=4, max=10, avg=6.8 | |
| top prefixes: ds(35), od(3), ko(2), po(2), sh(2) | |
| contains: dshedy(36), dshey(14), dshor(14), dsheol(9), dsho(9), | |
| dsheey(8), dshy(8), dshol(5), dsheedy(4), dsheor(3), dshdy(2), | |
| dshe(2), dshees(2), dsheo(2), dsheody(2), dshody(2), choldshy(1), | |
| dardsh(1), dshaly(1), dshcheal(1), dsheckhy(1), dshedal(1), | |
| dsheedal(1), dsheeo(1), dsheeor(1), dsheeoteey(1), dsheodar(1), | |
| dsheog(1), dsheos(1), dsheoy(1), dshes(1), dshodal(1), | |
| dshodar(1), dsholdy(1), dsholy(1), dsholyd(1), dshoy(1), | |
| kechodshey(1), kodshey(1), kodshol(1), lkedshedy(1), odshchol(1), | |
| odshe(1), odsheo(1), okchodshy(1), oteodshey(1), pdsheody(1), | |
| podshedy(1), poldshedy(1), psheodshy(1), qotedshedy(1), | |
| shedshey(1), shodshey(1), toldshy(1), ydsh(1), ytedshedy(1) | |
| dshe(2): (word length: 4 / group items: 33) | |
| length: min=5, max=10, avg=7.2 | |
| top prefixes: ds(20), od(2), po(2), sh(2), ke(1) | |
| contains: dshedy(36), dshey(14), dsheol(9), dsheey(8), dsheedy(4), | |
| dsheor(3), dshees(2), dsheo(2), dsheody(2), dsheckhy(1), | |
| dshedal(1), dsheedal(1), dsheeo(1), dsheeor(1), dsheeoteey(1), | |
| dsheodar(1), dsheog(1), dsheos(1), dsheoy(1), dshes(1), | |
| kechodshey(1), kodshey(1), lkedshedy(1), odshe(1), odsheo(1), | |
| oteodshey(1), pdsheody(1), podshedy(1), poldshedy(1), | |
| qotedshedy(1), shedshey(1), shodshey(1), ytedshedy(1) | |
| dshedy(36): (word length: 6 / group items: 5) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: po(2), lk(1), qo(1), yt(1) | |
| contains: lkedshedy(1), podshedy(1), poldshedy(1), qotedshedy(1), | |
| ytedshedy(1) | |
| dsheeo(1): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: ds(2) | |
| contains: dsheeor(1), dsheeoteey(1) | |
| dsheo(2): (word length: 5 / group items: 9) | |
| length: min=6, max=8, avg=6.6 | |
| top prefixes: ds(7), od(1), pd(1) | |
| contains: dsheol(9), dsheor(3), dsheody(2), dsheodar(1), dsheog(1), | |
| dsheos(1), dsheoy(1), odsheo(1), pdsheody(1) | |
| dsheody(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: pd(1) | |
| contains: pdsheody(1) | |
| dshey(14): (word length: 5 / group items: 5) | |
| length: min=7, max=10, avg=8.4 | |
| top prefixes: sh(2), ke(1), ko(1), ot(1) | |
| contains: kechodshey(1), kodshey(1), oteodshey(1), shedshey(1), | |
| shodshey(1) | |
| dsho(9): (word length: 4 / group items: 10) | |
| length: min=5, max=7, avg=6.2 | |
| top prefixes: ds(9), ko(1) | |
| contains: dshor(14), dshol(5), dshody(2), dshodal(1), dshodar(1), | |
| dsholdy(1), dsholy(1), dsholyd(1), dshoy(1), kodshol(1) | |
| dshol(5): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.8 | |
| top prefixes: ds(3), ko(1) | |
| contains: dsholdy(1), dsholy(1), dsholyd(1), kodshol(1) | |
| dsholy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ds(1) | |
| contains: dsholyd(1) | |
| dshy(8): (word length: 4 / group items: 4) | |
| length: min=7, max=9, avg=8.2 | |
| top prefixes: ch(1), ok(1), ps(1), to(1) | |
| contains: choldshy(1), okchodshy(1), psheodshy(1), toldshy(1) | |
| dydy(3): (word length: 4 / group items: 9) | |
| length: min=5, max=8, avg=6.4 | |
| top prefixes: dy(2), al(1), ch(1), ke(1), qo(1) | |
| contains: dydydy(2), aldydy(1), chedydy(1), dydyd(1), kedydy(1), | |
| qokedydy(1), shdydy(1), tchedydy(1), todydy(1) | |
| dydyd(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: dy(1) | |
| contains: dydydy(2) | |
| dykain(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: fd(1), sh(1) | |
| contains: fdykain(1), shedykain(1) | |
| dykchy(2): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chodykchy(1) | |
| dykey(1): (word length: 5 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: qo(1), sh(1) | |
| contains: qodykey(1), shedykeyl(1) | |
| dys(2): (word length: 3 / group items: 10) | |
| length: min=4, max=8, avg=6.3 | |
| top prefixes: ch(2), dy(1), et(1), fc(1), od(1) | |
| contains: chdyshdy(1), chodys(1), dyshol(1), eteodys(1), fchedys(1), | |
| odys(1), ofchdysd(1), qcthdys(1), tchdys(1), ydys(1) | |
| dytey(1): (word length: 5 / group items: 2) | |
| length: min=8, max=11, avg=9.5 | |
| top prefixes: ch(1), te(1) | |
| contains: chedytey(1), teodyteytar(1) | |
| dyty(2): (word length: 4 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(1), dy(1) | |
| contains: chedyty(1), dytydy(1) | |
| eain(1): (word length: 4 / group items: 14) | |
| length: min=5, max=9, avg=6.6 | |
| top prefixes: sh(3), ch(2), qo(1), yc(1), al(1) | |
| contains: qokeain(3), cheain(2), sheain(2), ycheain(2), alkeain(1), | |
| cheokeain(1), lkeain(1), ocheain(1), oeain(1), oteain(1), | |
| sheainy(1), sheeain(1), tcheain(1), ykeain(1) | |
| eair(1): (word length: 4 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1), yt(1) | |
| contains: qoeair(1), yteair(1) | |
| ear(2): (word length: 3 / group items: 65) | |
| length: min=4, max=10, avg=6.5 | |
| top prefixes: ch(8), qo(7), ok(5), ol(4), oe(3) | |
| contains: chear(51), shear(21), okear(7), qokear(6), okeear(4), | |
| otear(4), keear(3), oeear(3), qoear(3), olchear(2), olkeear(2), | |
| opchear(2), pchear(2), qoeear(2), qokeear(2), qotear(2), | |
| sheear(2), tear(2), ychear(2), ykeear(2), alkeear(1), | |
| chearaiin(1), cheary(1), cheear(1), chekear(1), chkear(1), | |
| chokeear(1), chotear(1), ckhear(1), cthear(1), dychear(1), | |
| eear(1), etoteear(1), folchear(1), koleearol(1), lchear(1), | |
| oeeseary(1), oesearees(1), okearcheol(1), okeearam(1), | |
| okeokear(1), olcheear(1), olkeeeary(1), opcheear(1), oteeary(1), | |
| poeear(1), qaear(1), qckhear(1), qear(1), qeear(1), qeeeear(1), | |
| qopchear(1), qotoear(1), seear(1), soear(1), ssear(1), teear(1), | |
| teodeear(1), ycheear(1), yeeear(1), ykoear(1), yshear(1), | |
| ytcheear(1), ytear(1), ytoetear(1) | |
| eas(1): (word length: 3 / group items: 12) | |
| length: min=5, max=10, avg=6.4 | |
| top prefixes: qo(3), ot(1), ch(1), do(1), ok(1) | |
| contains: oteas(2), cheas(1), doeoeas(1), okeeas(1), opcheas(1), | |
| poeeas(1), qokeas(1), qokeeas(1), qokeeashdy(1), sheas(1), | |
| ycheas(1), ytcheas(1) | |
| echa(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otechar(1) | |
| echedy(1): (word length: 6 / group items: 8) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: qo(2), ok(1), ke(1), lk(1), oe(1) | |
| contains: okechedy(4), qokechedy(4), kechedy(3), lkechedy(3), | |
| oechedy(1), otechedy(1), qoleechedy(1), techedy(1) | |
| echy(1): (word length: 4 / group items: 32) | |
| length: min=5, max=11, avg=7.2 | |
| top prefixes: qo(4), ot(4), ok(3), ke(3), sh(3) | |
| contains: qokechy(13), okechy(6), qokeechy(6), kechy(4), otechy(4), | |
| keechy(3), olkeechy(3), ykeechy(3), olkechy(2), qotechy(2), | |
| shechy(2), chechy(1), chekechy(1), chetechy(1), ctechy(1), | |
| dokechy(1), keeokechy(1), lkechy(1), lshechy(1), okchechy(1), | |
| okeechy(1), otchechy(1), otechys(1), oteechy(1), polchechy(1), | |
| qoeechy(1), shkechy(1), sholkeechy(1), techy(1), ycheechy(1), | |
| ytechy(1), yteechypchy(1) | |
| eddy(1): (word length: 4 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: qo(2), yp(1) | |
| contains: qopcheddy(1), qoteeddy(1), ypcheddy(1) | |
| eear(1): (word length: 4 / group items: 27) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: ol(3), ok(2), qo(2), ch(2), qe(2) | |
| contains: okeear(4), keear(3), oeear(3), olkeear(2), qoeear(2), | |
| qokeear(2), sheear(2), ykeear(2), alkeear(1), cheear(1), | |
| chokeear(1), etoteear(1), koleearol(1), okeearam(1), olcheear(1), | |
| olkeeeary(1), opcheear(1), oteeary(1), poeear(1), qeear(1), | |
| qeeeear(1), seear(1), teear(1), teodeear(1), ycheear(1), | |
| yeeear(1), ytcheear(1) | |
| eeckhy(1): (word length: 6 / group items: 4) | |
| length: min=8, max=11, avg=9.0 | |
| top prefixes: qo(2), sh(1), yc(1) | |
| contains: sheeckhy(2), qocpheeckhy(1), qoeeckhy(1), ycheeckhy(1) | |
| eedol(1): (word length: 5 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: cp(1), lk(1) | |
| contains: cphoeedol(1), lkeedol(1) | |
| eedy(6): (word length: 4 / group items: 135) | |
| length: min=5, max=13, avg=7.6 | |
| top prefixes: qo(19), ch(15), ol(11), ot(8), sh(7) | |
| contains: qokeedy(305), okeedy(105), oteedy(100), sheedy(84), | |
| qoteedy(74), cheedy(59), keedy(53), olkeedy(42), lkeedy(41), | |
| ykeedy(30), yteedy(28), qoeedy(20), teedy(13), lcheedy(9), | |
| okeeedy(9), eeedy(8), oeedy(7), qolkeedy(7), ycheedy(7), | |
| lsheedy(6), ysheedy(6), lteedy(5), qokeeedy(5), solkeedy(5), | |
| alkeedy(4), chekeedy(4), dcheedy(4), dsheedy(4), lkeeedy(4), | |
| qotcheedy(4), teeedy(4), ykeeedy(4), chokeedy(3), cholkeedy(3), | |
| keeedy(3), lokeedy(3), olcheedy(3), oleedy(3), olkeeedy(3), | |
| olteedy(3), opcheedy(3), oteeedy(3), qodeedy(3), qoeeedy(3), | |
| qoteeedy(3), rsheedy(3), sokeedy(3), cheolkeedy(2), chkeedy(2), | |
| deedy(2), deeedy(2), dykeedy(2), odeedy(2), oleeedy(2), | |
| pcheedy(2), qeedy(2), qeeedy(2), qokcheedy(2), qolcheedy(2), | |
| qolsheedy(2), qopcheedy(2), salkeedy(2), sholkeedy(2), toeedy(2), | |
| aleedy(1), chalkeedy(1), chalkeeedy(1), cheopolteeedy(1), | |
| cheteedy(1), choeteedy(1), cholkeeedy(1), choteedy(1), | |
| chpsheedy(1), chykeedy(1), cseedy(1), dacheedy(1), dolcheedy(1), | |
| dolkeedy(1), eteedy(1), feeedy(1), geedy(1), kcheedy(1), | |
| keedeedy(1), kydeedy(1), lfcheedy(1), lpcheedy(1), ocheedy(1), | |
| oeeedy(1), oekeedy(1), okeeyteedy(1), olkchokeedy(1), oloeedy(1), | |
| oloeeedy(1), olsheedy(1), olteeedy(1), orsheedy(1), osheedy(1), | |
| otcheedy(1), otecheedy(1), oteedyg(1), oteedyl(1), otokeedy(1), | |
| otycheedy(1), oykeedy(1), palkeedy(1), pchdeedy(1), | |
| pcholkeedy(1), psheedy(1), qockheedy(1), qocseedy(1), | |
| qoeekeedy(1), qolteedy(1), qoolkeedy(1), qopeedy(1), | |
| qsolkeedy(1), rodeedy(1), rokeedy(1), rolkeedy(1), rolsheedy(1), | |
| seedy(1), shefeeedy(1), sheokeedy(1), sheolkeedy(1), | |
| shkakeedy(1), shkeedy(1), soeeedy(1), solteedy(1), syokeedy(1), | |
| teeolteedy(1), tolkeeedy(1), tolokeedy(1), tolteedy(1), | |
| tsheokeedy(1), ypcheedy(1), yteeedy(1) | |
| eeedy(8): (word length: 5 / group items: 24) | |
| length: min=6, max=13, avg=7.6 | |
| top prefixes: ol(4), qo(3), ch(3), ok(1), lk(1) | |
| contains: okeeedy(9), qokeeedy(5), lkeeedy(4), teeedy(4), ykeeedy(4), | |
| keeedy(3), olkeeedy(3), oteeedy(3), qoeeedy(3), qoteeedy(3), | |
| deeedy(2), oleeedy(2), qeeedy(2), chalkeeedy(1), | |
| cheopolteeedy(1), cholkeeedy(1), feeedy(1), oeeedy(1), | |
| oloeeedy(1), olteeedy(1), shefeeedy(1), soeeedy(1), tolkeeedy(1), | |
| yteeedy(1) | |
| eeeey(1): (word length: 5 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: ch(1), od(1), or(1), qo(1) | |
| contains: chpeeeey(1), odeeeey(1), orokeeeey(1), qoeeeey(1) | |
| eeeodaiin(1): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: oe(1) | |
| contains: oeeeodaiin(1) | |
| eeeody(1): (word length: 6 / group items: 7) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: ke(1), lk(1), oe(1), ok(1), ot(1) | |
| contains: keeeody(1), lkeeeody(1), oeeeody(1), okeeeody(1), oteeeody(1), | |
| ykeeeody(1), yteeeody(1) | |
| eeeos(1): (word length: 5 / group items: 8) | |
| length: min=6, max=13, avg=8.0 | |
| top prefixes: oe(1), ch(1), ke(1), ok(1), ot(1) | |
| contains: oeeeos(2), cheteeeosaiin(1), keeeos(1), okeeeosaiin(1), | |
| oteeeos(1), qokeeeos(1), reeeos(1), ykeeeos(1) | |
| eeer(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(1) | |
| contains: sheeerl(1) | |
| eees(9): (word length: 4 / group items: 36) | |
| length: min=5, max=10, avg=6.7 | |
| top prefixes: oe(4), ok(4), qo(3), ol(3), ot(2) | |
| contains: oeees(9), oteees(3), qoeees(3), qokeees(3), loeees(2), | |
| oleees(2), qoteees(2), sheees(2), cheees(1), choeees(1), | |
| ctheees(1), deeeese(1), deees(1), doeeeesm(1), dyeees(1), | |
| eeesaiin(1), eeesal(1), keeees(1), keees(1), leeesain(1), | |
| lkeees(1), oeeees(1), oeeesary(1), oeeesoy(1), okchoteees(1), | |
| okeeees(1), okeees(1), okeeesey(1), olcheees(1), olkeees(1), | |
| otoreees(1), seees(1), soeees(1), soteees(1), xaloeees(1), | |
| ysheees(1) | |
| eeey(1): (word length: 4 / group items: 60) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: qo(9), ch(8), ol(4), ok(3), sh(3) | |
| contains: okeeey(27), qokeeey(26), keeey(11), cheeey(9), olkeeey(9), | |
| lkeeey(8), oteeey(8), qoeeey(7), sheeey(6), ykeeey(6), oeeey(4), | |
| qoteeey(4), oleeey(3), oreeey(3), qeeey(3), yteeey(3), | |
| chokeeey(2), cholkeeey(2), odeeey(2), seeey(2), aekeeey(1), | |
| cheodeeey(1), chkeeey(1), choctheeey(1), choteeey(1), | |
| chpeeeey(1), ckheeey(1), cseteeey(1), dalkeeey(1), dcheeey(1), | |
| deeey(1), doleeey(1), eeeey(1), lcheeey(1), leeey(1), lseeey(1), | |
| odeeeey(1), odreeey(1), okeeeykchy(1), okeoeeey(1), olcheeey(1), | |
| oloeeey(1), orkeeey(1), orokeeeey(1), polkeeey(1), qekeeey(1), | |
| qkeeey(1), qoeeeey(1), qofsheeey(1), qokaekeeey(1), qolkeeey(1), | |
| qototeeey(1), qoykeeey(1), reeey(1), shedeeey(1), shokeeey(1), | |
| teeey(1), todeeey(1), ypcheeey(1), yroleeey(1) | |
| eekain(1): (word length: 6 / group items: 3) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1), qo(1), sh(1) | |
| contains: cheekain(3), qoeekain(1), sheekain(1) | |
| een(1): (word length: 3 / group items: 12) | |
| length: min=5, max=10, avg=6.7 | |
| top prefixes: ch(4), ct(1), oe(1), ok(1), or(1) | |
| contains: cheen(3), cheeen(1), chekeen(1), choteeen(1), ctheen(1), | |
| oeeen(1), okshodeeen(1), orsheeen(1), oteeen(1), qokeeen(1), | |
| sheeen(1), tcheen(1) | |
| eeo(1): (word length: 3 / group items: 314) | |
| length: min=4, max=14, avg=7.3 | |
| top prefixes: ch(34), qo(30), ot(30), ok(23), sh(19) | |
| contains: qokeeo(23), okeeol(18), cheeo(17), okeeody(16), okeeo(15), | |
| cheeor(14), okeeor(14), sheeol(14), keeol(13), qokeeody(13), | |
| ykeeol(13), cheeody(12), oteeo(12), ykeeody(12), oteeody(11), | |
| qokeeol(11), oteeos(10), qokeeor(10), cheeol(9), keeo(9), | |
| oteeol(9), sheeor(9), yteeody(9), keeody(8), keeor(8), sheeo(8), | |
| ycheeo(8), cheeos(7), olkeeody(7), ykeeo(7), lkeeody(6), | |
| okeeos(6), qoteeody(6), qoteeol(5), teeol(5), eeor(4), keeos(4), | |
| lkeeo(4), lkeeol(4), olkeeo(4), oteeor(4), qokeeos(4), teeody(4), | |
| ykeeor(4), oeeo(3), okeeom(3), qoeeody(3), qoeeor(3), qoteeo(3), | |
| qoteeos(3), sheeody(3), shkeeo(3), teeos(3), ykeeos(3), yteeo(3), | |
| cheeod(2), cheokeeo(2), chokeeody(2), dcheeody(2), dcheeos(2), | |
| deeo(2), deeor(2), eeol(2), kcheeor(2), keeeol(2), keeod(2), | |
| keeodal(2), ksheeol(2), lkeeor(2), oeeeos(2), oeeor(2), oeeos(2), | |
| okeeeo(2), okeeodaiin(2), okeeoly(2), okeeoy(2), oleeol(2), | |
| olkeeor(2), oteeoaly(2), oteeosy(2), pcheeody(2), qoeeo(2), | |
| qoeeol(2), qokeeod(2), sheeodar(2), shoteeody(2), teeodaiin(2), | |
| tsheeor(2), ycheeody(2), ykeeod(2), ysheeo(2), ysheeody(2), | |
| adeeody(1), aeeodeey(1), alkeeol(1), cheeeo(1), cheeodam(1), | |
| cheeods(1), cheeoekey(1), cheeokeey(1), cheeokseo(1), | |
| cheeoldair(1), cheeoldy(1), cheeool(1), cheeorfor(1), | |
| cheeotaiin(1), cheeoy(1), cheokeeos(1), cheoteeo(1), | |
| cheoteeodal(1), chesokeeoteody(1), cheteeeosaiin(1), | |
| cheykeeoy(1), chkeeody(1), choekeeos(1), chokeeo(1), | |
| chokeeodol(1), chokeeoky(1), chokeeor(1), chseeor(1), chteeor(1), | |
| ckheeody(1), ckheeol(1), cpheeody(1), cseeod(1), dcheeokeody(1), | |
| dcheeol(1), dcheeoy(1), deeeod(1), deeocthey(1), deeol(1), | |
| dkeeor(1), docheeo(1), dsheeo(1), dsheeor(1), dsheeoteey(1), | |
| eeeodaiin(1), eeeody(1), eeeokor(1), eeeoloy(1), eeeoly(1), | |
| eeeos(1), eeodaiin(1), eeody(1), eeoeety(1), eeos(1), | |
| eeoseeos(1), eokeeor(1), fcheeody(1), fcheeol(1), ikheeos(1), | |
| kcheeos(1), keeeo(1), keeeody(1), keeeos(1), keeoal(1), | |
| keeodaiin(1), keeodar(1), keeodol(1), keeokechy(1), keeolshey(1), | |
| keeoly(1), koeeorain(1), lcheeol(1), lcheeor(1), leeo(1), | |
| lkeeeody(1), lkeeoar(1), lkeeos(1), odeeeeodl(1), oeeeo(1), | |
| oeeeodaiin(1), oeeeodr(1), oeeeody(1), oeeockhy(1), oeeod(1), | |
| oeeodain(1), oeeody(1), oeeolchy(1), oeeoly(1), oeeoty(1), | |
| oeeoy(1), oekeeor(1), okcheeo(1), okeeeody(1), okeeeol(1), | |
| okeeeosaiin(1), okeeoda(1), okeeodair(1), okeeodal(1), | |
| okeeodar(1), okeeokain(1), okeeolkcheey(1), okeeoraiin(1), | |
| okoleeolar(1), oksheeoda(1), olcheeo(1), olcheeol(1), oleeo(1), | |
| olkeeodal(1), olkeeol(1), olkeeoldy(1), olkeeoly(1), olkeeos(1), | |
| olsheeosol(1), ooeeor(1), opcheeo(1), opcheeol(1), oqoeeol(1), | |
| oqoeeosain(1), osheeo(1), otcheeo(1), oteeeo(1), oteeeodar(1), | |
| oteeeody(1), oteeeor(1), oteeeos(1), oteeod(1), oteeodaiin(1), | |
| oteeodail(1), oteeodalsy(1), oteeodam(1), oteeodar(1), | |
| oteeodl(1), oteeolchor(1), oteeolkeey(1), oteeols(1), oteeoly(1), | |
| oteeosol(1), oteoteeody(1), otodeeeo(1), otodeeodor(1), | |
| otolsheeos(1), otyteeodain(1), poeeo(1), poleeol(1), polkeeo(1), | |
| qeeor(1), qeeoy(1), qkeeod(1), qkeeody(1), qocheeol(1), | |
| qoeeeo(1), qoeeokaiin(1), qokeeeor(1), qokeeeos(1), | |
| qokeeodaiin(1), qokeeodain(1), qokeeodor(1), qokeeokain(1), | |
| qokeeoky(1), qokeeolchey(1), qopcheeody(1), qoteeeo(1), | |
| qoteeod(1), qoteeotchy(1), qoteeoy(1), qykeeody(1), rcheeo(1), | |
| reeeos(1), rkeeo(1), scheeol(1), secheeol(1), seeoar(1), | |
| sheeod(1), sheeodaiin(1), sheeodain(1), sheeodees(1), | |
| sheeoeky(1), sheeoldy(1), sheeolody(1), sheeoly(1), sheeos(1), | |
| sheeoy(1), shekeeody(1), shokeeol(1), skeeody(1), soeeol(1), | |
| sykeeeochy(1), tcheeos(1), teeo(1), teeoar(1), teeodain(1), | |
| teeodan(1), teeolain(1), teeolteedy(1), teeor(1), toeeodcthy(1), | |
| ycheeodaiin(1), ycheeodain(1), ycheeol(1), ycheeor(1), | |
| ycheeoy(1), ykeeeody(1), ykeeeos(1), ykeeochody(1), ykeeodain(1), | |
| ykeeodam(1), ykeeodey(1), ykeeols(1), ykeeoly(1), ykeeory(1), | |
| yokeeol(1), ysheeoaiin(1), ysheeod(1), yteeeody(1), yteeeor(1), | |
| yteeod(1), yteeodal(1), yteeoey(1), yteeol(1), yteeoldy(1), | |
| yteeor(1), yteeos(1) | |
| eeodaiin(1): (word length: 8 / group items: 9) | |
| length: min=9, max=11, avg=9.9 | |
| top prefixes: ok(1), te(1), ee(1), ke(1), oe(1) | |
| contains: okeeodaiin(2), teeodaiin(2), eeeodaiin(1), keeodaiin(1), | |
| oeeeodaiin(1), oteeodaiin(1), qokeeodaiin(1), sheeodaiin(1), | |
| ycheeodaiin(1) | |
| eeody(1): (word length: 5 / group items: 39) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: qo(4), ch(3), ot(3), sh(3), ok(2) | |
| contains: okeeody(16), qokeeody(13), cheeody(12), ykeeody(12), | |
| oteeody(11), yteeody(9), keeody(8), olkeeody(7), lkeeody(6), | |
| qoteeody(6), teeody(4), qoeeody(3), sheeody(3), chokeeody(2), | |
| dcheeody(2), pcheeody(2), shoteeody(2), ycheeody(2), ysheeody(2), | |
| adeeody(1), chkeeody(1), ckheeody(1), cpheeody(1), eeeody(1), | |
| fcheeody(1), keeeody(1), lkeeeody(1), oeeeody(1), oeeody(1), | |
| okeeeody(1), oteeeody(1), oteoteeody(1), qkeeody(1), | |
| qopcheeody(1), qykeeody(1), shekeeody(1), skeeody(1), | |
| ykeeeody(1), yteeeody(1) | |
| eeol(2): (word length: 4 / group items: 60) | |
| length: min=5, max=12, avg=7.3 | |
| top prefixes: ok(5), sh(5), qo(5), ot(5), ol(5) | |
| contains: okeeol(18), sheeol(14), keeol(13), ykeeol(13), qokeeol(11), | |
| cheeol(9), oteeol(9), qoteeol(5), teeol(5), lkeeol(4), keeeol(2), | |
| ksheeol(2), okeeoly(2), oleeol(2), qoeeol(2), alkeeol(1), | |
| cheeoldair(1), cheeoldy(1), ckheeol(1), dcheeol(1), deeol(1), | |
| eeeoloy(1), eeeoly(1), fcheeol(1), keeolshey(1), keeoly(1), | |
| lcheeol(1), oeeolchy(1), oeeoly(1), okeeeol(1), okeeolkcheey(1), | |
| okoleeolar(1), olcheeol(1), olkeeol(1), olkeeoldy(1), | |
| olkeeoly(1), opcheeol(1), oqoeeol(1), oteeolchor(1), | |
| oteeolkeey(1), oteeols(1), oteeoly(1), poleeol(1), qocheeol(1), | |
| qokeeolchey(1), scheeol(1), secheeol(1), sheeoldy(1), | |
| sheeolody(1), sheeoly(1), shokeeol(1), soeeol(1), teeolain(1), | |
| teeolteedy(1), ycheeol(1), ykeeols(1), ykeeoly(1), yokeeol(1), | |
| yteeol(1), yteeoldy(1) | |
| eeor(4): (word length: 4 / group items: 34) | |
| length: min=5, max=10, avg=6.7 | |
| top prefixes: ch(5), qo(3), ok(2), ot(2), yk(2) | |
| contains: cheeor(14), okeeor(14), qokeeor(10), sheeor(9), keeor(8), | |
| oteeor(4), ykeeor(4), qoeeor(3), deeor(2), kcheeor(2), lkeeor(2), | |
| oeeor(2), olkeeor(2), tsheeor(2), cheeorfor(1), chokeeor(1), | |
| chseeor(1), chteeor(1), dkeeor(1), dsheeor(1), eokeeor(1), | |
| koeeorain(1), lcheeor(1), oekeeor(1), okeeoraiin(1), ooeeor(1), | |
| oteeeor(1), qeeor(1), qokeeeor(1), teeor(1), ycheeor(1), | |
| ykeeory(1), yteeeor(1), yteeor(1) | |
| eeos(1): (word length: 4 / group items: 34) | |
| length: min=5, max=13, avg=7.2 | |
| top prefixes: ot(5), ch(4), qo(3), ok(2), ke(2) | |
| contains: oteeos(10), cheeos(7), okeeos(6), keeos(4), qokeeos(4), | |
| qoteeos(3), teeos(3), ykeeos(3), dcheeos(2), oeeeos(2), oeeos(2), | |
| oteeosy(2), cheokeeos(1), cheteeeosaiin(1), choekeeos(1), | |
| eeeos(1), eeoseeos(1), ikheeos(1), kcheeos(1), keeeos(1), | |
| lkeeos(1), okeeeosaiin(1), olkeeos(1), olsheeosol(1), | |
| oqoeeosain(1), oteeeos(1), oteeosol(1), otolsheeos(1), | |
| qokeeeos(1), reeeos(1), sheeos(1), tcheeos(1), ykeeeos(1), | |
| yteeos(1) | |
| ees(6): (word length: 3 / group items: 152) | |
| length: min=4, max=10, avg=6.8 | |
| top prefixes: ch(14), ot(11), oe(11), ok(10), qo(9) | |
| contains: chees(33), okees(16), otees(10), eees(9), oeees(9), oees(9), | |
| shees(9), qokees(8), qotees(4), ykees(4), cheesy(3), olkees(3), | |
| oteees(3), qoeees(3), qokeees(3), toees(3), aloees(2), dshees(2), | |
| lchees(2), loeees(2), okeeshy(2), oleees(2), qoteees(2), | |
| qoteesy(2), sheees(2), ychees(2), ykeeshy(2), aiees(1), | |
| alshees(1), arorochees(1), chedees(1), cheees(1), cheesees(1), | |
| chekeesshy(1), cheoees(1), cheoiees(1), cheoseesey(1), | |
| chepchees(1), choeees(1), choees(1), choeesy(1), chokees(1), | |
| cpheesy(1), csees(1), ctheees(1), cthees(1), daleesd(1), | |
| dchees(1), dchodees(1), deeeese(1), deees(1), deeschdy(1), | |
| doeeeesm(1), dyeees(1), eeesaiin(1), eeesal(1), eesey(1), | |
| eesos(1), eesy(1), eesydy(1), eetees(1), etsees(1), fchodees(1), | |
| keeees(1), keees(1), keesho(1), keeshody(1), keeshy(1), keesy(1), | |
| koees(1), kolschees(1), leeesain(1), lkarchees(1), lkeees(1), | |
| lkees(1), lkeeshdy(1), lkeeshedy(1), loees(1), lpchees(1), | |
| lshees(1), ockhoees(1), odchees(1), odees(1), oeeees(1), | |
| oeeesary(1), oeeesoy(1), oeesa(1), oeesaiin(1), oeeseary(1), | |
| oeesody(1), oeesordy(1), oesearees(1), ofcheesy(1), | |
| okchoteees(1), okeeees(1), okeees(1), okeeesey(1), okeesodar(1), | |
| okeesy(1), okoeese(1), okyeeshy(1), olcheees(1), olchees(1), | |
| olcheesey(1), oleesey(1), olkeees(1), olkeeshy(1), olshees(1), | |
| opchees(1), opoees(1), oteesaey(1), oteesal(1), oteeshs(1), | |
| oteesod(1), oteesy(1), otoees(1), otoeeseor(1), otololees(1), | |
| otoreees(1), podeesho(1), qoees(1), qokeeshy(1), qotoees(1), | |
| rchees(1), rchseesy(1), roees(1), seees(1), seesaly(1), | |
| sheeodees(1), sheoees(1), shokeesy(1), socfchees(1), soeees(1), | |
| soees(1), sosees(1), soteees(1), syshees(1), teesody(1), | |
| toleeshal(1), tshodeesy(1), xaloeees(1), ychoees(1), ydees(1), | |
| yees(1), yekees(1), ykeesan(1), ykeeshedy(1), ykeoees(1), | |
| yoees(1), ysheees(1), yshees(1), ytees(1) | |
| eesey(1): (word length: 5 / group items: 4) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: ol(2), ch(1), ok(1) | |
| contains: cheoseesey(1), okeeesey(1), olcheesey(1), oleesey(1) | |
| eesy(1): (word length: 4 / group items: 12) | |
| length: min=5, max=9, avg=6.9 | |
| top prefixes: ch(2), qo(1), cp(1), ee(1), ke(1) | |
| contains: cheesy(3), qoteesy(2), choeesy(1), cpheesy(1), eesydy(1), | |
| keesy(1), ofcheesy(1), okeesy(1), oteesy(1), rchseesy(1), | |
| shokeesy(1), tshodeesy(1) | |
| eey(4): (word length: 3 / group items: 297) | |
| length: min=4, max=13, avg=7.1 | |
| top prefixes: ch(43), qo(35), sh(19), ok(17), ot(17) | |
| contains: qokeey(308), okeey(177), cheey(174), sheey(144), oteey(140), | |
| ykeey(58), keey(45), qoteey(42), lkeey(41), olkeey(40), | |
| yteey(28), okeeey(27), qokeeey(26), ycheey(24), teey(20), | |
| qoeey(15), chkeey(13), ctheey(13), dcheey(13), lcheey(13), | |
| olcheey(13), chokeey(11), ckheey(11), keeey(11), ysheey(10), | |
| cheeey(9), olkeeey(9), dsheey(8), lkeeey(8), lsheey(8), | |
| oteeey(8), choteey(7), deey(7), okcheey(7), olsheey(7), | |
| qoeeey(7), chekeey(6), oeey(6), qolkeey(6), sheeey(6), | |
| shekeey(6), tcheey(6), ykeeey(6), cheokeey(5), kcheey(5), | |
| opcheey(5), cheeteey(4), fcheey(4), oeeey(4), pcheey(4), | |
| qockheey(4), qopcheey(4), qoteeey(4), rcheey(4), solkeey(4), | |
| cheteey(3), chteey(3), loeey(3), ocheey(3), oleeey(3), oreeey(3), | |
| otcheey(3), qeeey(3), qeey(3), shkeey(3), shokeey(3), yteeey(3), | |
| choeey(2), choekeey(2), chokeeey(2), cholkeeey(2), cpheey(2), | |
| cseey(2), dyteey(2), ksheey(2), lokeey(2), lteey(2), odeeey(2), | |
| odeey(2), olteey(2), orcheey(2), osheey(2), oteeys(2), | |
| oteoeey(2), qekeey(2), qocheey(2), qodeey(2), qoekeey(2), | |
| qokcheey(2), qotoeey(2), scheey(2), seeey(2), sheekeey(2), | |
| sheokeey(2), sokeey(2), ssheey(2), aeeodeey(1), aekeeey(1), | |
| alcheey(1), aleey(1), alekeey(1), alkeey(1), alosheey(1), | |
| archeey(1), arolkeey(1), arorsheey(1), aroteey(1), ateey(1), | |
| ceectheey(1), cfheey(1), chakeey(1), chalkeey(1), chcheey(1), | |
| chckheey(1), chdeey(1), chedeey(1), cheecpheey(1), cheekeey(1), | |
| cheeokeey(1), cheeykam(1), cheeytey(1), chekcheey(1), | |
| cheoctheey(1), cheodeeey(1), cheodeey(1), cheoekeey(1), | |
| cheolkeey(1), cheoteey(1), chkeeey(1), chlchpsheey(1), | |
| choctheeey(1), chokcheey(1), cholkeey(1), choolkeey(1), | |
| chopcheey(1), chotcheey(1), choteeey(1), chpeeeey(1), chyteey(1), | |
| ckcheey(1), ckheeey(1), cseteeey(1), dakeey(1), dalkeeey(1), | |
| dateey(1), dcheeey(1), deeey(1), dkeey(1), dksheey(1), doeey(1), | |
| dolcheey(1), doleeey(1), doteey(1), dscheey(1), dsheeoteey(1), | |
| eeeey(1), eeey(1), ekeey(1), ekokeey(1), eteeys(1), farsheey(1), | |
| kedaleey(1), keeyfar(1), kodeey(1), kolcheey(1), lcheeey(1), | |
| leeey(1), lksheey(1), lseeey(1), ochokeey(1), ockheey(1), | |
| odeeeey(1), odreeey(1), oekeey(1), oepchksheey(1), okchodeey(1), | |
| okecheey(1), okeeeykchy(1), okeeolkcheey(1), okeeylchedy(1), | |
| okeeyteedy(1), okeoeeey(1), okeoteey(1), okeyteey(1), okodeey(1), | |
| okoeey(1), okoroeey(1), okseey(1), oksheey(1), olcheeey(1), | |
| oldeey(1), oleey(1), olekeey(1), olkeeycthy(1), olkeeyr(1), | |
| oloeeey(1), olpcheey(1), oltcheey(1), opheey(1), opoeey(1), | |
| oqokeey(1), oreey(1), orkeeey(1), orokeeeey(1), otedeey(1), | |
| oteeolkeey(1), oteeykeey(1), oteeykey(1), oteeykshy(1), | |
| oteokeey(1), otleey(1), otolosheey(1), otorsheey(1), otseey(1), | |
| otsheey(1), otykeey(1), oykeey(1), oyteey(1), pchedeey(1), | |
| pcheokeey(1), poeokeey(1), pokeey(1), polkeeey(1), polkeey(1), | |
| psheey(1), pydaeey(1), pydeey(1), qeedeey(1), qekeeey(1), | |
| qeykeey(1), qkeeey(1), qkeey(1), qoedeey(1), qoeeeey(1), | |
| qoekeeykeody(1), qoeteey(1), qofsheeey(1), qoiheey(1), | |
| qoikeey(1), qokaekeeey(1), qokchkeey(1), qoklcheey(1), | |
| qokoeey(1), qolcheey(1), qolkeeey(1), qolsheey(1), qoolkeey(1), | |
| qopoeey(1), qoqokeey(1), qoseey(1), qototeeey(1), qoykeeey(1), | |
| qoykeey(1), qteey(1), qyoeey(1), reeey(1), rkeey(1), rolkeey(1), | |
| rorcheey(1), seey(1), shapchedyfeey(1), sheckeey(1), shedeeey(1), | |
| sheeteey(1), sheeyl(1), sheolkeey(1), shoeey(1), shoefcheey(1), | |
| shokcheey(1), shokeeey(1), sholeey(1), shyokeey(1), skeey(1), | |
| sokcheey(1), sorcheey(1), teeey(1), teeys(1), teodeey(1), | |
| teoteey(1), tocpheey(1), todeeey(1), tsheey(1), ycheekeey(1), | |
| ycheeytal(1), ycheeytydaiin(1), ykeeykeey(1), yksheey(1), | |
| ylcheey(1), yoeteey(1), yokeey(1), yolsheey(1), ypcheeey(1), | |
| ypcheey(1), ypolcheey(1), yroleeey(1), ytchcseey(1), ytcheey(1) | |
| ekaiin(1): (word length: 6 / group items: 7) | |
| length: min=7, max=10, avg=8.1 | |
| top prefixes: ch(2), oe(1), qe(1), sh(1), op(1) | |
| contains: chekaiin(8), oekaiin(3), cheekaiin(2), qekaiin(2), | |
| shekaiin(2), opchekaiin(1), qoekaiin(1) | |
| ekar(1): (word length: 4 / group items: 10) | |
| length: min=5, max=8, avg=6.3 | |
| top prefixes: sh(3), ch(2), qe(1), oe(1), oh(1) | |
| contains: chekar(8), qekar(2), sheekar(2), shekar(2), cheoekar(1), | |
| oekar(1), oheekar(1), olekar(1), qoekar(1), shoekar(1) | |
| ekchey(1): (word length: 6 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: ch(2), sh(1) | |
| contains: cheekchey(1), chekchey(1), shekchey(1) | |
| ekedy(1): (word length: 5 / group items: 5) | |
| length: min=6, max=7, avg=6.6 | |
| top prefixes: ch(1), qo(1), sh(1), qe(1), ye(1) | |
| contains: chekedy(4), qoekedy(2), shekedy(2), qekedy(1), yekedy(1) | |
| ekeey(1): (word length: 5 / group items: 13) | |
| length: min=6, max=12, avg=7.8 | |
| top prefixes: ch(4), sh(2), qo(2), qe(1), al(1) | |
| contains: chekeey(6), shekeey(6), choekeey(2), qekeey(2), qoekeey(2), | |
| sheekeey(2), alekeey(1), cheekeey(1), cheoekeey(1), oekeey(1), | |
| olekeey(1), qoekeeykeody(1), ycheekeey(1) | |
| ekey(2): (word length: 4 / group items: 13) | |
| length: min=5, max=9, avg=6.5 | |
| top prefixes: ch(6), sh(3), oe(1), qe(1), se(1) | |
| contains: chekey(7), cheekey(6), shekey(5), oekey(3), cheeoekey(1), | |
| chekeys(1), cheoekey(1), choekey(1), qekey(1), seekey(1), | |
| sheekey(1), shoekey(1), yekey(1) | |
| ekshy(1): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: oe(1), sh(1) | |
| contains: oekshy(1), sheekshy(1) | |
| eky(1): (word length: 3 / group items: 37) | |
| length: min=4, max=10, avg=6.5 | |
| top prefixes: sh(8), ch(4), cs(2), da(2), oc(2) | |
| contains: cheky(65), sheky(36), cheeky(24), sheeky(14), cseeky(2), | |
| rcheky(2), sheeeky(2), sheoeky(2), aikheky(1), alcheky(1), | |
| chcheky(1), choeky(1), coeky(1), csoeky(1), dalcheeeky(1), | |
| dareky(1), dcheeky(1), dorkcheky(1), kcheeky(1), ocheeky(1), | |
| ocheky(1), oeeeky(1), oeky(1), olcheky(1), opcheeky(1), | |
| osheeky(1), otaleky(1), qeky(1), qocheky(1), qoeky(1), | |
| sheeoeky(1), shekydy(1), sheseky(1), shoeky(1), skekyd(1), | |
| yfcheky(1), ytcheeky(1) | |
| eocthy(1): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(1), sh(1), cp(1), ke(1) | |
| contains: cheocthy(5), sheocthy(2), cpheocthy(1), keocthy(1) | |
| eodal(1): (word length: 5 / group items: 26) | |
| length: min=6, max=11, avg=8.1 | |
| top prefixes: ch(4), ok(3), ot(2), sh(2), ke(2) | |
| contains: cheodal(7), oteodal(6), sheodal(4), okeodal(3), teodal(3), | |
| keeodal(2), okeodaly(2), qokeodal(2), sheodaly(2), cheodalol(1), | |
| cheokeodal(1), cheoteeodal(1), ctheodal(1), fcheodal(1), | |
| keodal(1), ksheodal(1), okeeodal(1), olkeeodal(1), opcheodal(1), | |
| oteeodalsy(1), pcheodal(1), psheodalo(1), rcheodal(1), | |
| tcheodal(1), tsheodal(1), yteeodal(1) | |
| eody(2): (word length: 4 / group items: 124) | |
| length: min=5, max=14, avg=7.7 | |
| top prefixes: ch(13), qo(13), sh(7), ot(6), ok(5) | |
| contains: cheody(89), sheody(50), oteody(39), okeody(37), qokeody(32), | |
| keody(22), okeeody(16), ykeody(16), yteody(14), qokeeody(13), | |
| cheeody(12), qoteody(12), ykeeody(12), oteeody(11), yteeody(9), | |
| keeody(8), teody(8), olkeeody(7), pcheody(7), ctheody(6), | |
| lkeeody(6), qoteeody(6), tcheody(6), chokeody(5), ckheody(5), | |
| kcheody(5), ksheody(5), psheody(5), lkeody(4), teeody(4), | |
| cpheody(3), lcheody(3), lsheody(3), okcheody(3), opcheody(3), | |
| qoeeody(3), qokcheody(3), sheeody(3), ycheody(3), chckheody(2), | |
| chokeeody(2), dcheeody(2), dcheody(2), dsheody(2), fcheody(2), | |
| octheody(2), oekeody(2), olcheody(2), olkeody(2), olteody(2), | |
| otcheody(2), pcheeody(2), qkeody(2), qopcheody(2), shkeody(2), | |
| shoteeody(2), tsheody(2), ycheeody(2), ysheeody(2), acheody(1), | |
| adeeody(1), archeody(1), cfheody(1), cheekeody(1), chekeody(1), | |
| chesokeeoteody(1), chkeeody(1), chkeody(1), choteody(1), | |
| chteody(1), chyteody(1), ckheeody(1), cpheeody(1), daikeody(1), | |
| dcheeokeody(1), deody(1), eeeody(1), eeody(1), etcheody(1), | |
| eteodys(1), fcheeody(1), fchoctheody(1), keeeody(1), lkeeeody(1), | |
| ltcheody(1), lteody(1), ockheody(1), ocpheody(1), oeeeody(1), | |
| oeeody(1), oeteody(1), okeeeody(1), okeokeokeody(1), olsheody(1), | |
| oteeeody(1), oteoteeody(1), otsheody(1), pdsheody(1), | |
| pocheody(1), possheody(1), qekeody(1), qeokeody(1), qkeeody(1), | |
| qoctheody(1), qoeedeody(1), qoekeeykeody(1), qoepsheody(1), | |
| qopcheeody(1), qoscheody(1), qykeeody(1), shekeeody(1), | |
| shteody(1), shykeody(1), skeeody(1), teodyteytar(1), theody(1), | |
| tshokeody(1), yckheody(1), ykcheody(1), ykeeeody(1), yokeody(1), | |
| ysheody(1), ytcheodytor(1), yteeeody(1) | |
| eoky(1): (word length: 4 / group items: 11) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: ch(3), sh(1), yc(1), dc(1), ke(1) | |
| contains: cheoky(10), sheoky(6), ycheoky(3), dcheoky(2), chokeeoky(1), | |
| choteoky(1), keoky(1), okeoky(1), psheoky(1), qokeeoky(1), | |
| toeoky(1) | |
| eol(2): (word length: 3 / group items: 253) | |
| length: min=4, max=14, avg=7.4 | |
| top prefixes: ch(36), sh(28), qo(22), ok(20), ot(16) | |
| contains: cheol(173), sheol(114), okeol(66), qokeol(52), oteol(42), | |
| keol(20), okeeol(18), teol(15), ykeol(15), sheeol(14), | |
| ycheol(14), keeol(13), ykeeol(13), qoteol(12), pcheol(11), | |
| qokeeol(11), ctheol(10), cheeol(9), dsheol(9), oteeol(9), | |
| dcheol(8), lcheol(8), olcheol(8), opcheol(8), ckheol(7), | |
| olkeol(7), okeoly(6), tcheol(6), yteol(6), cheoldy(5), cheoly(5), | |
| chokeol(5), kcheol(5), lkeol(5), qoeol(5), qoteeol(5), teeol(5), | |
| lkeeol(4), olsheol(4), cheols(3), choteol(3), cpheol(3), | |
| qockheol(3), qofcheol(3), qotcheol(3), sheols(3), cfheol(2), | |
| chekeol(2), cheokeol(2), cheolkeedy(2), cheolor(2), eeol(2), | |
| keeeol(2), ksheeol(2), ksheol(2), lsheol(2), octheol(2), | |
| okeeoly(2), okeoldy(2), oleeol(2), oteoldy(2), oteoly(2), | |
| psheoldy(2), qoeeol(2), qokeoly(2), qolcheol(2), scheol(2), | |
| sheoldy(2), sheolol(2), sheoltey(2), solcheol(2), ykeols(2), | |
| yksheol(2), alkeeol(1), alteol(1), cheeoldair(1), cheeoldy(1), | |
| cheolaiin(1), cheolchal(1), cheolchcthy(1), cheolchdaiin(1), | |
| cheolchdy(1), cheolchey(1), cheoldain(1), cheolkain(1), | |
| cheolkary(1), cheolkedy(1), cheolkeepchy(1), cheolkeey(1), | |
| cheolky(1), cheolpy(1), cheolshy(1), cheoltain(1), cheoltar(1), | |
| cheoltchedaiin(1), cheoltey(1), chepcheol(1), cholkcheol(1), | |
| chotcheol(1), choteoly(1), ckheeol(1), cseol(1), ctheoly(1), | |
| dcheeol(1), dcheoldy(1), deeol(1), deol(1), dolchsyckheol(1), | |
| eeeoloy(1), eeeoly(1), ekeolol(1), ereoly(1), etolctheol(1), | |
| fcheeol(1), fcheol(1), fcheolain(1), fchodycheol(1), kcheoly(1), | |
| keeolshey(1), keeoly(1), keolchey(1), keolor(1), keoly(1), | |
| lcheeol(1), lcheolshedy(1), lfcheol(1), lkcheol(1), lkeoldy(1), | |
| lklcheol(1), lolkeol(1), oalcheol(1), ocheol(1), oeeolchy(1), | |
| oeeoly(1), oekeol(1), oeola(1), oeoldan(1), ofcheol(1), oheol(1), | |
| okcheol(1), okearcheol(1), okeeeol(1), okeeolkcheey(1), | |
| okeolaiin(1), okeolan(1), okeolar(1), okeolkey(1), okeoloky(1), | |
| okeolol(1), okeolor(1), okeols(1), okeolshey(1), okilcheol(1), | |
| okoleeolar(1), olcheeol(1), olkeeol(1), olkeeoldy(1), | |
| olkeeoly(1), opcheeol(1), opcheolfy(1), opsheolaiin(1), | |
| oqoeeol(1), oqokeol(1), oraroekeol(1), orcheol(1), orsheoldy(1), | |
| osheol(1), otakeol(1), otcheol(1), otcheolom(1), otcheoly(1), | |
| oteeolchor(1), oteeolkeey(1), oteeols(1), oteeoly(1), | |
| oteolain(1), oteolair(1), oteolar(1), otorkeol(1), pcheoldom(1), | |
| pcheolkal(1), pcheoly(1), polcheolkain(1), poleeol(1), | |
| qckheol(1), qekeoldy(1), qeol(1), qocheeol(1), qocheol(1), | |
| qoctheol(1), qoekeol(1), qokalcheol(1), qokcheol(1), | |
| qokeeolchey(1), qokeolo(1), qopcheol(1), qoteold(1), qoteoly(1), | |
| rcheold(1), rsheol(1), rteol(1), scheeol(1), scseykcheol(1), | |
| secheeol(1), shckheol(1), sheeoldy(1), sheeolody(1), sheeoly(1), | |
| sheokeol(1), sheoldam(1), sheolkain(1), sheolkchy(1), | |
| sheolkeal(1), sheolkedy(1), sheolkeedy(1), sheolkeey(1), | |
| sheolo(1), sheolor(1), sheolshody(1), sheoly(1), sheoteoly(1), | |
| shkeol(1), shokeeol(1), shokeolls(1), sholteol(1), shoteol(1), | |
| soeeol(1), soteol(1), ssheol(1), stsheol(1), tcheolchy(1), | |
| teeolain(1), teeolteedy(1), teolkechey(1), teolkedain(1), | |
| teols(1), teolshy(1), tolkeol(1), tolsheol(1), ycheeol(1), | |
| ycheolk(1), ycseol(1), ykeeols(1), ykeeoly(1), ykeolal(1), | |
| ykeoldy(1), yokeeol(1), ysheol(1), ytecheol(1), yteeol(1), | |
| yteeoldy(1), yteold(1), yteoldy(1) | |
| eosaiin(1): (word length: 7 / group items: 6) | |
| length: min=9, max=15, avg=11.0 | |
| top prefixes: ch(2), ok(1), ot(1), sh(1), yp(1) | |
| contains: cheosaiin(1), cheteeeosaiin(1), okeeeosaiin(1), oteosaiin(1), | |
| sheosaiin(1), ypchocpheosaiin(1) | |
| eotar(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: cheotar(1) | |
| epaiin(2): (word length: 6 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ch(2) | |
| contains: cheepaiin(1), chepaiin(1) | |
| epal(1): (word length: 4 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: oc(1) | |
| contains: ochepalain(1) | |
| epchey(1): (word length: 6 / group items: 3) | |
| length: min=7, max=10, avg=8.3 | |
| top prefixes: ch(1), qe(1), tc(1) | |
| contains: chepchey(2), qepchey(1), tcheepchey(1) | |
| epchy(1): (word length: 5 / group items: 7) | |
| length: min=6, max=12, avg=8.3 | |
| top prefixes: ch(2), sh(1), ct(1), pc(1), qo(1) | |
| contains: chepchy(4), shepchy(3), cheolkeepchy(1), ctheepchy(1), | |
| pcheoepchy(1), qoepchy(1), zepchy(1) | |
| esedy(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qoesedy(1) | |
| eses(1): (word length: 4 / group items: 1) | |
| length: min=12, max=12, avg=12.0 | |
| top prefixes: ch(1) | |
| contains: chetesescher(1) | |
| etaiin(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(1), qe(1) | |
| contains: chetaiin(3), qetaiin(1) | |
| etar(1): (word length: 4 / group items: 4) | |
| length: min=6, max=7, avg=6.2 | |
| top prefixes: ch(2), qo(1), sh(1) | |
| contains: chetar(6), cheetar(1), qoetar(1), shetar(1) | |
| etchal(1): (word length: 6 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ch(1) | |
| contains: choetchaldy(1) | |
| etedy(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(1), qe(1) | |
| contains: chetedy(3), qetedy(1) | |
| eteedy(1): (word length: 6 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ch(2) | |
| contains: cheteedy(1), choeteedy(1) | |
| ety(7): (word length: 3 / group items: 23) | |
| length: min=4, max=9, avg=6.4 | |
| top prefixes: ch(4), sh(3), qo(2), ls(1), qe(1) | |
| contains: chety(25), shety(9), sheety(8), cheety(3), lshety(2), qety(2), | |
| cheeety(1), choety(1), cpchety(1), ctheety(1), deeety(1), | |
| eeoeety(1), etyd(1), loety(1), olcheety(1), opchety(1), | |
| otorchety(1), pcheety(1), qoeeeety(1), qopchety(1), schety(1), | |
| shoety(1), ycheety(1) | |
| faiir(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: fa(1) | |
| contains: faiiral(1) | |
| faiis(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: of(1) | |
| contains: ofaiis(1) | |
| far(3): (word length: 3 / group items: 22) | |
| length: min=4, max=9, avg=6.3 | |
| top prefixes: of(7), ch(3), fa(3), cf(1), df(1) | |
| contains: ofar(4), cfarasr(1), cheefar(1), chefar(1), chofary(1), | |
| dfar(1), fardam(1), farsheey(1), fary(1), keeyfar(1), lfar(1), | |
| ofaral(1), ofaralar(1), ofaram(1), ofaramoty(1), ofaror(1), | |
| ofcheefar(1), olfar(1), pchofar(1), shoyfar(1), yfary(1), | |
| ykofar(1) | |
| fary(1): (word length: 4 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: ch(1), yf(1) | |
| contains: chofary(1), yfary(1) | |
| fcham(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olfcham(1) | |
| fchdar(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qofchdar(1) | |
| fchdy(4): (word length: 5 / group items: 10) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: of(2), ch(2), qo(1), sh(1), dy(1) | |
| contains: ofchdy(5), qofchdy(3), shefchdy(2), chefchdy(1), chofchdy(1), | |
| dyfchdy(1), kolfchdy(1), lfchdy(1), ofchdysd(1), yfchdy(1) | |
| fchedol(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: of(1) | |
| contains: ofchedol(1) | |
| fchedy(11): (word length: 6 / group items: 11) | |
| length: min=7, max=11, avg=8.1 | |
| top prefixes: fc(2), qo(1), of(1), ol(1), lf(1) | |
| contains: qofchedy(8), ofchedy(7), olfchedy(4), lfchedy(2), | |
| dolfchedy(1), efchedy(1), fchedypaiin(1), fchedys(1), | |
| oqofchedy(1), sayfchedy(1), yfchedy(1) | |
| fchee(1): (word length: 5 / group items: 9) | |
| length: min=6, max=10, avg=8.2 | |
| top prefixes: fc(3), of(2), lf(1), qo(1), sh(1) | |
| contains: fcheey(4), fcheeody(1), fcheeol(1), lfcheedy(1), ofcheefar(1), | |
| ofcheesy(1), qofcheepy(1), shoefcheey(1), socfchees(1) | |
| fcheey(4): (word length: 6 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: sh(1) | |
| contains: shoefcheey(1) | |
| fcheol(1): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: qo(1), fc(1), lf(1), of(1) | |
| contains: qofcheol(3), fcheolain(1), lfcheol(1), ofcheol(1) | |
| fchey(2): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: of(1), yf(1), ol(1), ch(1), qo(1) | |
| contains: ofchey(5), yfchey(3), olfchey(2), chefchey(1), qofchey(1) | |
| fcho(1): (word length: 4 / group items: 34) | |
| length: min=5, max=11, avg=7.5 | |
| top prefixes: fc(16), of(5), ch(4), qo(3), ok(1) | |
| contains: fchol(3), fchor(3), fchodaiin(2), fcholdy(2), ofchor(2), | |
| qofchol(2), chefchol(1), chfchol(1), chofchody(1), chofchol(1), | |
| fchochor(1), fchocthar(1), fchoctheody(1), fchodees(1), | |
| fchodycheol(1), fchoiin(1), fchokshy(1), fchoky(1), fcholy(1), | |
| fchom(1), fchosaiin(1), fchoy(1), ofcho(1), ofchol(1), | |
| ofchory(1), ofchoshy(1), okaiifchody(1), olfchor(1), otolfcho(1), | |
| qofcho(1), qofchor(1), sholfchor(1), soefchocphy(1), yfchor(1) | |
| fchol(3): (word length: 5 / group items: 7) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ch(3), fc(2), qo(1), of(1) | |
| contains: fcholdy(2), qofchol(2), chefchol(1), chfchol(1), chofchol(1), | |
| fcholy(1), ofchol(1) | |
| fchor(3): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: of(2), ol(1), qo(1), sh(1), yf(1) | |
| contains: ofchor(2), ofchory(1), olfchor(1), qofchor(1), sholfchor(1), | |
| yfchor(1) | |
| fchs(1): (word length: 4 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: fc(1), of(1) | |
| contains: fchsom(1), ofchsody(1) | |
| fchy(1): (word length: 4 / group items: 12) | |
| length: min=5, max=10, avg=7.2 | |
| top prefixes: ch(4), of(1), lf(1), qo(1), al(1) | |
| contains: chefchy(3), ofchy(3), chofchy(2), lfchy(2), qofchy(2), | |
| alolfchy(1), chckhyfchy(1), cholfchy(1), dalfchy(1), | |
| pchesfchy(1), rfchykchey(1), yfchy(1) | |
| feeedy(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: shefeeedy(1) | |
| fol(3): (word length: 3 / group items: 23) | |
| length: min=4, max=9, avg=6.3 | |
| top prefixes: fo(12), yf(2), ch(2), of(2), qo(1) | |
| contains: qofol(2), yfolaiin(2), chefoly(1), chofol(1), folaiin(1), | |
| folcfhhy(1), folchear(1), folchey(1), folchol(1), folchor(1), | |
| fold(1), foldaiin(1), folor(1), folorarom(1), folr(1), | |
| folshody(1), lfol(1), ofol(1), ofoly(1), oteoefol(1), qfol(1), | |
| shofol(1), yfoldy(1) | |
| folaiin(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yf(1) | |
| contains: yfolaiin(2) | |
| fold(1): (word length: 4 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: fo(1), yf(1) | |
| contains: foldaiin(1), yfoldy(1) | |
| folor(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: fo(1) | |
| contains: folorarom(1) | |
| fshedy(2): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: shofshedy(1) | |
| fshor(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: shefshoro(1) | |
| fydy(1): (word length: 4 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: ch(1), of(1) | |
| contains: chofydy(1), ofydy(1) | |
| haiin(1): (word length: 5 / group items: 41) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: ch(7), qo(4), sh(3), kc(2), ot(2) | |
| contains: chaiin(45), shaiin(20), cthaiin(13), cphaiin(7), dchaiin(5), | |
| chckhaiin(3), ckhaiin(3), kchaiin(3), chokchaiin(2), okchaiin(2), | |
| otchaiin(2), qokchaiin(2), qotchaiin(2), cfhaiin(1), chaiind(1), | |
| chcthaiin(1), chetchaiin(1), cholchaiin(1), kchochaiin(1), | |
| kshaiin(1), lchaiin(1), ochaiin(1), odchaiin(1), opchaiin(1), | |
| orchaiin(1), oschaiin(1), oshaiin(1), otshaiin(1), pchaiin(1), | |
| pochaiin(1), qochaiin(1), qopchaiin(1), schaiin(1), shckhaiin(1), | |
| shcthaiin(1), sotchaiin(1), tchaiin(1), tshaiin(1), ykchaiin(1), | |
| ypchaiin(1), ytchaiin(1) | |
| iiin(1): (word length: 4 / group items: 59) | |
| length: min=5, max=10, avg=7.2 | |
| top prefixes: qo(6), ch(5), da(4), sh(4), oi(3) | |
| contains: aiiin(41), daiiin(17), oiiin(11), soiiin(6), odaiiin(4), | |
| okaiiin(4), oraiiin(4), qoiiin(4), doiiin(3), kaiiin(3), | |
| alaiiin(2), chedaiiin(2), laiiin(2), loiiin(2), oroiiin(2), | |
| qodaiiin(2), qokaiiin(2), qokoiiin(2), qotaiiin(2), aiiinro(1), | |
| aloiiin(1), chaiiin(1), chekaiiin(1), cheodaiiin(1), chlaiiin(1), | |
| daiiine(1), daiiiny(1), daraiiin(1), diiiin(1), diiin(1), | |
| iiincheom(1), kedaiiin(1), ldaiiin(1), lkaiiin(1), lolsaiiin(1), | |
| oiiiin(1), oiiiny(1), okchoiiin(1), olaiiin(1), oqotoiiin(1), | |
| osaiiin(1), otaiiin(1), otiiin(1), pchoiiin(1), poraiiindy(1), | |
| qooiiin(1), raiiin(1), raraiiin(1), saiiin(1), shaiiin(1), | |
| shedaiiin(1), shekaiiin(1), sheykaiiin(1), siiin(1), sodaiiin(1), | |
| sotoiiin(1), taiiin(1), ykaiiin(1), ytoiiin(1) | |
| iin(1): (word length: 3 / group items: 625) | |
| length: min=4, max=15, avg=7.8 | |
| top prefixes: ch(80), qo(61), sh(33), ot(29), ok(28) | |
| contains: daiin(864), aiin(470), qokaiin(262), okaiin(212), otaiin(154), | |
| saiin(144), qotaiin(79), raiin(75), kaiin(65), odaiin(61), | |
| olaiin(52), lkaiin(49), chaiin(45), ykaiin(45), chodaiin(44), | |
| ytaiin(43), qodaiin(42), taiin(42), aiiin(41), oraiin(38), | |
| oiin(34), chedaiin(32), olkaiin(31), oaiin(26), qoaiin(23), | |
| shodaiin(23), soiin(21), ydaiin(21), shaiin(20), doiin(19), | |
| chkaiin(18), chokaiin(17), daiiin(17), chdaiin(16), shedaiin(15), | |
| choiin(13), cthaiin(13), laiin(13), opaiin(13), cheodaiin(11), | |
| oiiin(11), araiin(10), chotaiin(9), okoiin(9), oldaiin(9), | |
| sheaiin(9), todaiin(9), chekaiin(8), osaiin(8), oteodaiin(8), | |
| paiin(8), polaiin(8), choaiin(7), cphaiin(7), soraiin(7), | |
| ofaiin(6), qokoiin(6), qopaiin(6), raraiin(6), shoiin(6), | |
| soiiin(6), yaiin(6), alkaiin(5), choraiin(5), dchaiin(5), | |
| koiin(5), oloiin(5), otodaiin(5), pchodaiin(5), podaiin(5), | |
| sheodaiin(5), shosaiin(5), aiiny(4), alaiin(4), cheedaiin(4), | |
| cholaiin(4), cholkaiin(4), chosaiin(4), chtaiin(4), loiin(4), | |
| odaiiin(4), okaiiin(4), opchedaiin(4), oraiiin(4), pchedaiin(4), | |
| qoiiin(4), roiin(4), saraiin(4), shkaiin(4), shoaiin(4), | |
| soaiin(4), ykoiin(4), ysaiin(4), ytoiin(4), aldaiin(3), | |
| chckhaiin(3), cheaiin(3), chetaiin(3), ckhaiin(3), daiindy(3), | |
| dalaiin(3), daldaiin(3), doaiin(3), doiiin(3), dykaiin(3), | |
| kaiiin(3), kchaiin(3), koaiin(3), kodaiin(3), ldaiin(3), | |
| lodaiin(3), oekaiin(3), okedaiin(3), opdaiin(3), opydaiin(3), | |
| otalaiin(3), otedaiin(3), otoiin(3), pchdaiin(3), pdaiin(3), | |
| poiin(3), poraiin(3), qoedaiin(3), qoiin(3), qokedaiin(3), | |
| qolaiin(3), qotedaiin(3), qotoiin(3), rodaiin(3), shdaiin(3), | |
| shokaiin(3), skaiin(3), sodaiin(3), solkaiin(3), tchodaiin(3), | |
| tedaiin(3), ypaiin(3), ytodaiin(3), alaiiin(2), aloiin(2), | |
| ariin(2), chedaiiin(2), cheeaiin(2), cheekaiin(2), cheoaiin(2), | |
| cheokaiin(2), chokchaiin(2), cthoiin(2), daraiin(2), | |
| dchodaiin(2), doldaiin(2), doroiin(2), epaiin(2), fchodaiin(2), | |
| kcheodaiin(2), keodaiin(2), kokaiin(2), kooiin(2), koraiin(2), | |
| laiiin(2), loiiin(2), lolkaiin(2), lsaiin(2), oeedaiin(2), | |
| okalaiin(2), okaraiin(2), okchaiin(2), okeaiin(2), okeeodaiin(2), | |
| okeodaiin(2), okiin(2), okoaiin(2), okodaiin(2), okolaiin(2), | |
| okoraiin(2), olchdaiin(2), olkedaiin(2), olsaiin(2), oltaiin(2), | |
| opalkaiin(2), oporaiin(2), ordaiin(2), oroiiin(2), otariin(2), | |
| otchaiin(2), oteaiin(2), otoaiin(2), pshodaiin(2), pydaiin(2), | |
| qaiin(2), qekaiin(2), qodaiiin(2), qoeedaiin(2), qokaiiin(2), | |
| qokchaiin(2), qokeeaiin(2), qokoiiin(2), qolkaiin(2), qosaiin(2), | |
| qotaiiin(2), qotchaiin(2), qotcheaiin(2), qotchoiin(2), | |
| scheaiin(2), shekaiin(2), sheokaiin(2), shotaiin(2), solaiin(2), | |
| taraiin(2), tchdaiin(2), teeodaiin(2), teodaiin(2), toaiin(2), | |
| toiin(2), ychedaiin(2), yfolaiin(2), ykoaiin(2), ykykaiin(2), | |
| ylkaiin(2), yoiin(2), aiiinro(1), aiinal(1), aiinod(1), | |
| aiinog(1), akaiin(1), aloiiin(1), arakaiin(1), ararchodaiin(1), | |
| aroiin(1), ataiin(1), cfhaiin(1), cfhoaiin(1), cfhyaiin(1), | |
| chadaiin(1), chaiiin(1), chaiind(1), chalaiin(1), charaiin(1), | |
| chariin(1), chataiin(1), chckaiin(1), chcpaiin(1), chcthaiin(1), | |
| chdodaiin(1), chdolaiin(1), chdypdaiin(1), chearaiin(1), | |
| chechdaiin(1), cheedalaiin(1), cheeedaiin(1), cheeotaiin(1), | |
| cheepaiin(1), chefaiin(1), chekaiiin(1), cheodaiiin(1), | |
| cheodoiidaiin(1), cheolaiin(1), cheolchdaiin(1), | |
| cheoltchedaiin(1), cheopaiin(1), cheosaiin(1), cheotaiin(1), | |
| cheotdaiin(1), chepaiin(1), chetchaiin(1), cheteeeosaiin(1), | |
| cheykaiin(1), chfaiin(1), chforaiin(1), chiin(1), chkeaiin(1), | |
| chlaiiin(1), chldaiin(1), chodaiindy(1), chokchodaiin(1), | |
| chokoaiin(1), chokoiin(1), cholchaiin(1), choldaiin(1), | |
| choltaiin(1), choroiin(1), chpaiin(1), chteokeeiin(1), | |
| chtodaiin(1), chtoiin(1), chykaiin(1), chytaroiin(1), ckaiin(1), | |
| ckhoiin(1), ckooaiin(1), cpheeaiin(1), cpheodaiin(1), | |
| cphesaiin(1), cphoaiin(1), cpholkaiin(1), cthodaiin(1), | |
| cthyaiin(1), ctoiin(1), daiiine(1), daiiiny(1), daiiiolkaiin(1), | |
| daiinls(1), daiino(1), daiinol(1), daiiny(1), daraiiin(1), | |
| daraiinm(1), dariin(1), darordaiin(1), dasaiin(1), dcheaiin(1), | |
| dchedaiin(1), dcheodaiin(1), dchsaiin(1), deaiin(1), diiiin(1), | |
| diiin(1), dodaiin(1), dolaiin(1), doleodaiin(1), doraiin(1), | |
| dteodoiin(1), dtoaiin(1), dyaiin(1), dydariin(1), eeeodaiin(1), | |
| eeesaiin(1), eeodaiin(1), ekaiin(1), eosaiin(1), etaiin(1), | |
| etodaiin(1), fchedypaiin(1), fchoiin(1), fchosaiin(1), | |
| fodaiin(1), folaiin(1), foldaiin(1), gaiin(1), haiin(1), iiin(1), | |
| iiincheom(1), kaldaiin(1), kchdaiin(1), kchedaiin(1), | |
| kchochaiin(1), kedaiiin(1), keeaiin(1), keeodaiin(1), kiin(1), | |
| koroiin(1), kshaiin(1), kshodaiin(1), kshoraiin(1), lchaiin(1), | |
| lchealaiin(1), lcholkaiin(1), ldaiiin(1), leedaiin(1), | |
| lkaiiin(1), lkeodaiin(1), loaiin(1), lokaiin(1), lolsaiiin(1), | |
| loraiin(1), losaiin(1), lotedaiin(1), lpaiin(1), lraiin(1), | |
| lshdaiin(1), lsoraiin(1), ltaiin(1), ochaiin(1), ocheodaiin(1), | |
| ochoaiin(1), ocphoraiin(1), odariin(1), odchaiin(1), odeaiin(1), | |
| odeedaiin(1), odoiin(1), oeaiin(1), oedaiin(1), oeeaiin(1), | |
| oeeeodaiin(1), oeesaiin(1), ofaiino(1), ofalaiin(1), | |
| ofchedaiin(1), oiiiin(1), oiiiny(1), oiinal(1), oiinar(1), | |
| oiinol(1), oiiny(1), okadaiin(1), okcharaiin(1), okchedaiin(1), | |
| okchoiiin(1), okeeaiin(1), okeedaiin(1), okeeeosaiin(1), | |
| okeeoraiin(1), okeoaiin(1), okeolaiin(1), okolraiin(1), | |
| okraiin(1), okytaiin(1), olaiiin(1), olaiiny(1), olalaiin(1), | |
| olchedaiin(1), olchoiin(1), olfaiin(1), olkalaiin(1), oloaiin(1), | |
| oloraiin(1), olraiin(1), oltoiin(1), ooiin(1), opaiinar(1), | |
| opaldaiin(1), opchaiin(1), opcharoiin(1), opcheaiin(1), | |
| opchekaiin(1), opcholalaiin(1), opodaiin(1), opoiin(1), | |
| opolaiin(1), opoloiin(1), opsheolaiin(1), opyaiin(1), oqaiin(1), | |
| oqotaiin(1), oqotoiiin(1), oraiino(1), oraiiny(1), orchaiin(1), | |
| oriin(1), osaiiin(1), oschaiin(1), oshaiin(1), osheokaiin(1), | |
| oshsodaiin(1), otaiiin(1), otaldiin(1), otaraiin(1), | |
| otcheedaiin(1), otcheodaiin(1), otcholcheaiin(1), oteeaiin(1), | |
| oteeodaiin(1), oteosaiin(1), otiiin(1), otlaiin(1), otolaiin(1), | |
| otolaiino(1), otoloaiin(1), otolopaiin(1), otoraiin(1), | |
| otosaiin(1), otshaiin(1), otshsaiin(1), paiinody(1), paroiin(1), | |
| pchaiin(1), pchdoiin(1), pcheodaiin(1), pchoiiin(1), pchooiin(1), | |
| pchoraiin(1), pchraiin(1), pdychoiin(1), poaiin(1), pochaiin(1), | |
| poeeaiin(1), poldaiin(1), polkiin(1), poraiiindy(1), | |
| pororaiin(1), pshdaiin(1), pshedaiin(1), pysaiinor(1), qeaiin(1), | |
| qedaiin(1), qeoodaiin(1), qetaiin(1), qochaiin(1), qochdaiin(1), | |
| qochodaiin(1), qoctaiin(1), qoeeokaiin(1), qoekaiin(1), | |
| qofaiin(1), qofchdaiin(1), qofoiin(1), qofydaiin(1), | |
| qokaiinos(1), qokalaiin(1), qokcheodaiin(1), qokeaiin(1), | |
| qokeedaiin(1), qokeeiin(1), qokeeodaiin(1), qoklaiin(1), | |
| qokoaiin(1), qokodaiin(1), qooiiin(1), qooiin(1), qoolkaiin(1), | |
| qoparaiin(1), qopchaiin(1), qopchedaiin(1), qopdaiin(1), | |
| qopoiin(1), qopydaiin(1), qoraiin(1), qotcheeaiin(1), | |
| qotchoraiin(1), qoteedaiin(1), qoteodaiin(1), qotodaiin(1), | |
| qotolaiin(1), qykaiin(1), raiiin(1), raraiiin(1), rlaiin(1), | |
| roaiin(1), rotaiin(1), saiiin(1), saiinchy(1), saiindy(1), | |
| saiino(1), saiiny(1), sakaiin(1), saldaiin(1), saloiin(1), | |
| salsoiin(1), schaiin(1), sedaiin(1), seodaiin(1), shaiiin(1), | |
| shalkaiin(1), shcheaiin(1), shckhaiin(1), shcthaiin(1), | |
| shedaiiin(1), sheeodaiin(1), shekaiiin(1), sheosaiin(1), | |
| shepdaiin(1), sheykaiiin(1), shfydaiin(1), sholaiin(1), | |
| sholdaiin(1), sholfaiin(1), sholfosdaiin(1), sholoiin(1), | |
| shtaiin(1), shykaiin(1), siiin(1), sodaiiin(1), sokaiin(1), | |
| soloiin(1), sotaiin(1), sotchaiin(1), sotchdaiin(1), sotoiiin(1), | |
| spaiin(1), sykaiin(1), taedaiin(1), taiiin(1), tarodaiin(1), | |
| tchaiin(1), tchedaiin(1), tcheodaiin(1), tchkaiin(1), | |
| tcholkaiin(1), tdaiin(1), teaiin(1), teodkaiin(1), teoiin(1), | |
| tesaiin(1), tolchdaiin(1), topaiin(1), tshaiin(1), tshodaiin(1), | |
| tshoiin(1), xoiin(1), ycheealkaiin(1), ycheedaiin(1), | |
| ycheeodaiin(1), ycheeytydaiin(1), ycheoraiin(1), ychodaiin(1), | |
| ychtaiin(1), ycthodaiin(1), yefaiin(1), yfaiin(1), yiin(1), | |
| ykaiiin(1), ykairaiin(1), ykchaiin(1), ykedaiin(1), ykeedaiin(1), | |
| ykeodaiin(1), ykolaiin(1), ylaiin(1), yodaiin(1), yotaiin(1), | |
| ypchaiin(1), ypchdaiin(1), ypchocpheosaiin(1), ypodaiin(1), | |
| yraiin(1), yshedaiin(1), ysheeoaiin(1), yshoiin(1), ytchaiin(1), | |
| ytchodaiin(1), yteodaiin(1), ytoaiin(1), ytoiiin(1), ytolaiin(1) | |
| iir(2): (word length: 3 / group items: 66) | |
| length: min=4, max=12, avg=6.5 | |
| top prefixes: ai(7), da(5), qo(5), ch(5), ol(4) | |
| contains: aiir(23), daiir(23), doiir(8), okaiir(6), saiir(6), oaiir(4), | |
| otaiir(4), oiir(3), olaiir(3), qokaiir(3), daiiral(2), lkaiir(2), | |
| odaiir(2), paiir(2), podaiir(2), qokiir(2), yaiir(2), ykaiir(2), | |
| aiiral(1), aiiraly(1), aiirchar(1), aiirody(1), aiirol(1), | |
| aiiry(1), chaiir(1), chdaiirsainy(1), cheodaiir(1), chpiir(1), | |
| chtaiir(1), daiiirchy(1), daiirol(1), daiiry(1), deeaiir(1), | |
| diir(1), doiiram(1), faiir(1), faiiral(1), iirchal(1), leiir(1), | |
| liiram(1), llaiiry(1), lshaiir(1), okinaiir(1), olkaiir(1), | |
| olkiir(1), oloiir(1), opaiir(1), opaiiral(1), opaloiiry(1), | |
| oroiir(1), otariir(1), otiir(1), qoaiir(1), qokoiir(1), | |
| qotoiir(1), roiir(1), saiirol(1), saraiir(1), schedaiir(1), | |
| shokaiir(1), soiir(1), sosaiir(1), syaiir(1), ykeeeedaiir(1), | |
| ytaiir(1), ytolaiir(1) | |
| iphy(1): (word length: 4 / group items: 4) | |
| length: min=5, max=9, avg=7.0 | |
| top prefixes: ch(2), ai(1), ot(1) | |
| contains: aiphy(1), chekaiphy(1), choiphy(1), otaiphy(1) | |
| ithey(1): (word length: 5 / group items: 2) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: et(1), oc(1) | |
| contains: etodaithey(1), ocheoithey(1) | |
| ithhy(1): (word length: 5 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: chekaithhy(1) | |
| ithy(1): (word length: 4 / group items: 12) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: cp(2), ai(1), oi(1), ch(1), da(1) | |
| contains: aithy(5), oithy(2), chtoithy(1), cphdaithy(1), cphoithy(1), | |
| daiiithy(1), doithy(1), kaithy(1), oaithy(1), qochoithy(1), | |
| raithy(1), saithy(1) | |
| kaiiin(3): (word length: 6 / group items: 7) | |
| length: min=7, max=10, avg=8.1 | |
| top prefixes: sh(2), ok(1), qo(1), ch(1), lk(1) | |
| contains: okaiiin(4), qokaiiin(2), chekaiiin(1), lkaiiin(1), | |
| shekaiiin(1), sheykaiiin(1), ykaiiin(1) | |
| kaiim(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: cheokaiim(1) | |
| kaiin(65): (word length: 5 / group items: 54) | |
| length: min=6, max=12, avg=8.0 | |
| top prefixes: ch(9), qo(6), sh(6), yk(2), so(2) | |
| contains: qokaiin(262), okaiin(212), lkaiin(49), ykaiin(45), | |
| olkaiin(31), chkaiin(18), chokaiin(17), chekaiin(8), alkaiin(5), | |
| cholkaiin(4), shkaiin(4), dykaiin(3), oekaiin(3), shokaiin(3), | |
| skaiin(3), solkaiin(3), cheekaiin(2), cheokaiin(2), kokaiin(2), | |
| lolkaiin(2), opalkaiin(2), qekaiin(2), qolkaiin(2), shekaiin(2), | |
| sheokaiin(2), ykykaiin(2), ylkaiin(2), akaiin(1), arakaiin(1), | |
| chckaiin(1), cheykaiin(1), chykaiin(1), ckaiin(1), cpholkaiin(1), | |
| daiiiolkaiin(1), ekaiin(1), lcholkaiin(1), lokaiin(1), | |
| opchekaiin(1), osheokaiin(1), qoeeokaiin(1), qoekaiin(1), | |
| qokaiinos(1), qoolkaiin(1), qykaiin(1), sakaiin(1), shalkaiin(1), | |
| shykaiin(1), sokaiin(1), sykaiin(1), tchkaiin(1), tcholkaiin(1), | |
| teodkaiin(1), ycheealkaiin(1) | |
| kaiis(1): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ka(1), ok(1) | |
| contains: kaiishdy(1), okaiis(1) | |
| kail(1): (word length: 4 / group items: 4) | |
| length: min=5, max=7, avg=5.8 | |
| top prefixes: ok(2), qo(1), yk(1) | |
| contains: okail(1), okaildy(1), qokail(1), ykail(1) | |
| kain(48): (word length: 4 / group items: 59) | |
| length: min=5, max=12, avg=7.3 | |
| top prefixes: ch(12), sh(7), qo(6), ok(4), yk(3) | |
| contains: qokain(279), okain(144), lkain(35), olkain(33), chkain(12), | |
| chokain(11), ykain(10), alkain(7), chekain(7), qolkain(5), | |
| shekain(5), cheokain(4), cheekain(3), shkain(3), solkain(3), | |
| cholkain(2), dkain(2), oqokain(2), qkain(2), tokain(2), | |
| tolkain(2), akain(1), chakain(1), chalkain(1), chedkain(1), | |
| chedyteokain(1), cheolkain(1), cheykain(1), dalkain(1), | |
| dolkain(1), dykain(1), eekain(1), fdykain(1), kchekain(1), | |
| lokain(1), lshekain(1), oekain(1), okainy(1), okeeokain(1), | |
| okeokain(1), oqekain(1), orolkain(1), otalkain(1), pokain(1), | |
| polcheolkain(1), qoeekain(1), qokeeokain(1), qokolkain(1), | |
| qopolkain(1), rakain(1), shedykain(1), sheekain(1), sheokain(1), | |
| sheolkain(1), shokain(1), skain(1), ykalkain(1), ykalokain(1), | |
| yqokain(1) | |
| kair(14): (word length: 4 / group items: 28) | |
| length: min=5, max=12, avg=7.2 | |
| top prefixes: ok(6), sh(4), qo(3), yk(3), ka(2) | |
| contains: okair(22), qokair(17), ykair(8), lkair(4), olkair(4), | |
| qokairor(3), kairam(2), okairy(2), shkair(2), akair(1), | |
| alkair(1), chdalkair(1), chokair(1), dkair(1), fcheokair(1), | |
| kairy(1), lolkair(1), okairady(1), okaircham(1), okairo(1), | |
| okairody(1), qokairolchdy(1), shdykairy(1), shekair(1), | |
| sholkair(1), ykairaiin(1), ykairolky(1), yshealkair(1) | |
| kairy(1): (word length: 5 / group items: 2) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ok(1), sh(1) | |
| contains: okairy(2), shdykairy(1) | |
| kais(2): (word length: 4 / group items: 6) | |
| length: min=5, max=6, avg=5.7 | |
| top prefixes: ka(2), ok(2), ek(1), ol(1) | |
| contains: ekais(1), kaisar(1), kaishd(1), okais(1), okaisy(1), olkais(1) | |
| kal(23): (word length: 3 / group items: 121) | |
| length: min=4, max=11, avg=6.8 | |
| top prefixes: ok(28), qo(22), ch(14), ka(9), sh(9) | |
| contains: qokal(191), okal(138), okaly(24), qokaly(18), ykal(16), | |
| chkal(13), chekal(12), olkal(11), chokal(9), okaldy(9), | |
| qokaldy(9), okalal(6), okalar(6), ykaly(6), lkal(5), kaldy(4), | |
| shekal(4), shokal(4), cholkal(3), okalchy(3), okalody(3), | |
| okalol(3), okalor(3), cheokal(2), chkaly(2), chokaly(2), | |
| kalkal(2), kaly(2), okalaiin(2), okalam(2), okalchedy(2), | |
| qokalchdy(2), qokalor(2), ackaldy(1), akal(1), alkal(1), | |
| chedkaly(1), chekalchs(1), chekaly(1), cheokaly(1), chkalar(1), | |
| chkalchy(1), chykald(1), dairkal(1), dalkal(1), dalkalytam(1), | |
| dkals(1), dlkal(1), dokal(1), dykaly(1), kalchdy(1), kalchedy(1), | |
| kaldaiin(1), kaldaim(1), kalos(1), kalshey(1), lkaldy(1), | |
| lkalol(1), ofakal(1), okaikaly(1), okalain(1), okalair(1), | |
| okalchal(1), okalchdy(1), okalched(1), okalcheg(1), okald(1), | |
| okalda(1), okaldain(1), okaldal(1), okalo(1), okalsalchey(1), | |
| okalshdy(1), okalshey(1), okalys(1), olchokal(1), olkalaiin(1), | |
| olkalol(1), olkaly(1), otokal(1), pcheolkal(1), pcholkal(1), | |
| qekal(1), qoekaly(1), qokalaiin(1), qokalam(1), qokalar(1), | |
| qokalchal(1), qokalchar(1), qokalcheol(1), qokalchey(1), | |
| qokaldar(1), qokalol(1), qokalom(1), qokaloro(1), qokalos(1), | |
| qokalsh(1), qokalshedy(1), qoolkal(1), qotlolkal(1), rkal(1), | |
| sheekal(1), shekalchdy(1), shekaly(1), sheykal(1), shkal(1), | |
| shokalol(1), sholkal(1), skal(1), sokal(1), solchkal(1), | |
| tolkal(1), ykald(1), ykaldy(1), ykalkain(1), ykalo(1), | |
| ykalokain(1), yokal(1), yokalod(1), yqokaly(1), ytolkal(1) | |
| kalchdy(1): (word length: 7 / group items: 3) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: qo(1), ok(1), sh(1) | |
| contains: qokalchdy(2), okalchdy(1), shekalchdy(1) | |
| kalchedy(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ok(1) | |
| contains: okalchedy(2) | |
| kaldy(4): (word length: 5 / group items: 5) | |
| length: min=6, max=7, avg=6.4 | |
| top prefixes: ok(1), qo(1), ac(1), lk(1), yk(1) | |
| contains: okaldy(9), qokaldy(9), ackaldy(1), lkaldy(1), ykaldy(1) | |
| kalos(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokalos(1) | |
| kalshey(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okalshey(1) | |
| kaly(2): (word length: 4 / group items: 16) | |
| length: min=5, max=10, avg=6.8 | |
| top prefixes: ch(5), ok(3), qo(2), yk(1), da(1) | |
| contains: okaly(24), qokaly(18), ykaly(6), chkaly(2), chokaly(2), | |
| chedkaly(1), chekaly(1), cheokaly(1), dalkalytam(1), dykaly(1), | |
| okaikaly(1), okalys(1), olkaly(1), qoekaly(1), shekaly(1), | |
| yqokaly(1) | |
| kam(9): (word length: 3 / group items: 26) | |
| length: min=4, max=9, avg=5.9 | |
| top prefixes: ch(5), qo(2), lk(2), sh(2), op(2) | |
| contains: okam(26), qokam(25), olkam(9), lkam(7), alkam(6), ykam(5), | |
| chokam(4), chkam(3), cheokam(2), lokam(2), shekam(2), aiikam(1), | |
| cheeykam(1), chekam(1), daikam(1), dkam(1), kamdam(1), | |
| lcheoekam(1), lkamo(1), ookam(1), opakam(1), opalkam(1), | |
| otaiikam(1), qokamdy(1), rolkam(1), sheqokam(1) | |
| kan(3): (word length: 3 / group items: 10) | |
| length: min=4, max=8, avg=5.4 | |
| top prefixes: ch(2), yk(2), qo(1), ok(1), al(1) | |
| contains: qokan(8), okan(5), chokan(2), alkan(1), cheekan(1), dakan(1), | |
| lkan(1), opchekan(1), ykan(1), ykanam(1) | |
| kar(52): (word length: 3 / group items: 92) | |
| length: min=4, max=10, avg=6.1 | |
| top prefixes: ch(13), ka(12), ok(11), sh(7), qo(6) | |
| contains: qokar(152), okar(129), ykar(36), lkar(30), olkar(19), | |
| chkar(12), okary(11), chekar(8), chokar(7), kary(5), okaral(5), | |
| alkar(4), cholkar(3), dalkar(3), okaram(3), shokar(3), akar(2), | |
| chalkar(2), chykar(2), karar(2), karody(2), okaraiin(2), | |
| okardy(2), okarol(2), qekar(2), qokaram(2), sheekar(2), | |
| shekar(2), shkar(2), tokar(2), akarar(1), chedykar(1), | |
| cheoekar(1), cheokar(1), cheolkary(1), chkarol(1), chokaro(1), | |
| chskar(1), dakar(1), dkar(1), dkarar(1), ekar(1), kaolkar(1), | |
| kara(1), karaim(1), karainy(1), karal(1), kararo(1), karchy(1), | |
| kard(1), kardy(1), kolkar(1), lkarchees(1), lkarshar(1), | |
| lokar(1), oekar(1), oheekar(1), okaralet(1), okaraly(1), | |
| okarar(1), okarchy(1), olekar(1), olkardam(1), olokar(1), | |
| opalkar(1), oqokar(1), orkar(1), otakar(1), otshealkar(1), | |
| pchykar(1), pokar(1), potchokar(1), qakar(1), qoekar(1), | |
| qokarary(1), qokary(1), qolkary(1), rkar(1), sakar(1), | |
| sheokar(1), shoekar(1), sholkar(1), skar(1), sokar(1), sykar(1), | |
| tokary(1), ykarain(1), ykaras(1), ykaro(1), ykarshy(1), | |
| yteokar(1), ytokar(1) | |
| kara(1): (word length: 4 / group items: 17) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: ok(6), ka(5), qo(2), yk(2), ak(1) | |
| contains: okaral(5), okaram(3), karar(2), okaraiin(2), qokaram(2), | |
| akarar(1), dkarar(1), karaim(1), karainy(1), karal(1), kararo(1), | |
| okaralet(1), okaraly(1), okarar(1), qokarary(1), ykarain(1), | |
| ykaras(1) | |
| karal(1): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ok(3) | |
| contains: okaral(5), okaralet(1), okaraly(1) | |
| karar(2): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.4 | |
| top prefixes: ak(1), dk(1), ka(1), ok(1), qo(1) | |
| contains: akarar(1), dkarar(1), kararo(1), okarar(1), qokarary(1) | |
| karchy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okarchy(1) | |
| kard(1): (word length: 4 / group items: 3) | |
| length: min=5, max=8, avg=6.3 | |
| top prefixes: ok(1), ka(1), ol(1) | |
| contains: okardy(2), kardy(1), olkardam(1) | |
| kardy(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1) | |
| contains: okardy(2) | |
| kary(5): (word length: 4 / group items: 5) | |
| length: min=5, max=9, avg=6.6 | |
| top prefixes: qo(2), ok(1), ch(1), to(1) | |
| contains: okary(11), cheolkary(1), qokary(1), qolkary(1), tokary(1) | |
| kas(4): (word length: 3 / group items: 8) | |
| length: min=4, max=7, avg=5.1 | |
| top prefixes: ok(3), qo(1), ch(1), ka(1), sh(1) | |
| contains: qokas(3), okas(2), chkas(1), kasol(1), okasor(1), okasy(1), | |
| sheekas(1), ykas(1) | |
| kchaiin(3): (word length: 7 / group items: 4) | |
| length: min=8, max=10, avg=8.8 | |
| top prefixes: ch(1), ok(1), qo(1), yk(1) | |
| contains: chokchaiin(2), okchaiin(2), qokchaiin(2), ykchaiin(1) | |
| kchain(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okchain(1), qokchain(1) | |
| kchal(1): (word length: 5 / group items: 7) | |
| length: min=6, max=8, avg=6.9 | |
| top prefixes: ok(2), dy(1), kc(1), lk(1), qo(1) | |
| contains: okchal(3), dykchal(1), kchaldy(1), lkchaly(1), okokchal(1), | |
| qokchal(1), ykchal(1) | |
| kchar(2): (word length: 5 / group items: 5) | |
| length: min=6, max=10, avg=7.8 | |
| top prefixes: ok(2), qo(2), oc(1) | |
| contains: okchar(4), ochkchar(1), okcharaiin(1), qoekchar(1), qokchar(1) | |
| kchdal(2): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: ok(1), kc(1), ol(1) | |
| contains: okchdal(2), kchdaldy(1), olkchdal(1) | |
| kchdar(1): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ok(1), ch(1), qo(1), yk(1) | |
| contains: okchdar(3), chkchdar(1), qokchdar(1), ykchdar(1) | |
| kchdy(20): (word length: 5 / group items: 18) | |
| length: min=6, max=10, avg=7.4 | |
| top prefixes: qo(3), ok(1), yk(1), lk(1), ol(1) | |
| contains: qokchdy(56), okchdy(21), ykchdy(8), lkchdy(5), olkchdy(4), | |
| qekchdy(3), alkchdy(1), cfhekchdy(1), chekchdy(1), oekchdy(1), | |
| orkchdy(1), pcholkchdy(1), qokchdyl(1), qokolkchdy(1), rkchdy(1), | |
| skchdy(1), sshkchdy(1), tolkchdy(1) | |
| kche(1): (word length: 4 / group items: 108) | |
| length: min=5, max=12, avg=7.8 | |
| top prefixes: kc(23), ok(21), ch(17), qo(11), yk(10) | |
| contains: qokchedy(39), okchey(32), qokchey(30), okchedy(25), | |
| kchedy(22), kchey(21), lkchedy(16), lkchey(8), okcheey(7), | |
| ykchedy(7), olkchedy(6), ykchey(6), kcheey(5), kcheody(5), | |
| kcheol(5), kcheo(4), kcheor(4), olkchey(4), chokchey(3), | |
| lkcheo(3), okcheody(3), qokcheo(3), qokcheody(3), ykcheor(3), | |
| chokchedy(2), kcheeor(2), kcheodaiin(2), lkches(2), okchedam(2), | |
| okcheo(2), okcheor(2), qokcheedy(2), qokcheey(2), qokcheor(2), | |
| shkchedy(2), akchedy(1), chdykchedy(1), cheekchey(1), | |
| chekcheey(1), chekchey(1), cheokcheo(1), cheokchet(1), | |
| cheokchey(1), chkchean(1), chkchedaram(1), chkcheean(1), | |
| chokcheey(1), chokcheo(1), cholkched(1), cholkcheol(1), | |
| chpkcheos(1), ckcheey(1), dorkcheky(1), ekchey(1), kcheals(1), | |
| kcheat(1), kchedaiin(1), kchedar(1), kcheed(1), kcheedchdy(1), | |
| kcheedy(1), kcheeky(1), kcheeos(1), kchekain(1), kcheodar(1), | |
| kcheoey(1), kcheoly(1), kchetam(1), lkcheol(1), okche(1), | |
| okchechy(1), okchedaiin(1), okchedyly(1), okcheefy(1), | |
| okcheeg(1), okcheeo(1), okcheochy(1), okcheod(1), okcheol(1), | |
| okches(1), okchesal(1), okchesy(1), okeeolkcheey(1), otkchedy(1), | |
| otokchey(1), qokche(1), qokched(1), qokcheodaiin(1), qokcheol(1), | |
| qykchey(1), ralkchedy(1), rfchykchey(1), scseykcheol(1), | |
| shekcheor(1), shekchey(1), shkchey(1), shokche(1), shokcheey(1), | |
| shokchey(1), sokcheey(1), solkchedy(1), ykched(1), ykchedain(1), | |
| ykchedor(1), ykcheg(1), ykcheodain(1), ykcheody(1), ykcheshd(1) | |
| kchedaiin(1): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ok(1) | |
| contains: okchedaiin(1) | |
| kchedar(1): (word length: 7 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ch(1) | |
| contains: chkchedaram(1) | |
| kchedy(22): (word length: 6 / group items: 13) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: ok(2), ch(2), qo(1), lk(1), yk(1) | |
| contains: qokchedy(39), okchedy(25), lkchedy(16), ykchedy(7), | |
| olkchedy(6), chokchedy(2), shkchedy(2), akchedy(1), | |
| chdykchedy(1), okchedyly(1), otkchedy(1), ralkchedy(1), | |
| solkchedy(1) | |
| kcheed(1): (word length: 6 / group items: 3) | |
| length: min=7, max=10, avg=8.7 | |
| top prefixes: kc(2), qo(1) | |
| contains: qokcheedy(2), kcheedchdy(1), kcheedy(1) | |
| kcheedy(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokcheedy(2) | |
| kcheey(5): (word length: 6 / group items: 8) | |
| length: min=7, max=12, avg=8.6 | |
| top prefixes: ok(2), ch(2), qo(1), ck(1), sh(1) | |
| contains: okcheey(7), qokcheey(2), chekcheey(1), chokcheey(1), | |
| ckcheey(1), okeeolkcheey(1), shokcheey(1), sokcheey(1) | |
| kcheo(4): (word length: 5 / group items: 29) | |
| length: min=6, max=12, avg=8.0 | |
| top prefixes: kc(7), ok(6), qo(5), ch(4), yk(3) | |
| contains: kcheody(5), kcheol(5), kcheor(4), lkcheo(3), okcheody(3), | |
| qokcheo(3), qokcheody(3), ykcheor(3), kcheodaiin(2), okcheo(2), | |
| okcheor(2), qokcheor(2), cheokcheo(1), chokcheo(1), | |
| cholkcheol(1), chpkcheos(1), kcheodar(1), kcheoey(1), kcheoly(1), | |
| lkcheol(1), okcheochy(1), okcheod(1), okcheol(1), | |
| qokcheodaiin(1), qokcheol(1), scseykcheol(1), shekcheor(1), | |
| ykcheodain(1), ykcheody(1) | |
| kcheodaiin(2): (word length: 10 / group items: 1) | |
| length: min=12, max=12, avg=12.0 | |
| top prefixes: qo(1) | |
| contains: qokcheodaiin(1) | |
| kcheody(5): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: ok(1), qo(1), yk(1) | |
| contains: okcheody(3), qokcheody(3), ykcheody(1) | |
| kcheol(5): (word length: 6 / group items: 6) | |
| length: min=7, max=11, avg=8.3 | |
| top prefixes: ch(1), kc(1), lk(1), ok(1), qo(1) | |
| contains: cholkcheol(1), kcheoly(1), lkcheol(1), okcheol(1), | |
| qokcheol(1), scseykcheol(1) | |
| kcheor(4): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: yk(1), ok(1), qo(1), sh(1) | |
| contains: ykcheor(3), okcheor(2), qokcheor(2), shekcheor(1) | |
| kchey(21): (word length: 5 / group items: 16) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: ch(4), sh(3), ok(1), qo(1), lk(1) | |
| contains: okchey(32), qokchey(30), lkchey(8), ykchey(6), olkchey(4), | |
| chokchey(3), cheekchey(1), chekchey(1), cheokchey(1), ekchey(1), | |
| otokchey(1), qykchey(1), rfchykchey(1), shekchey(1), shkchey(1), | |
| shokchey(1) | |
| kcho(6): (word length: 4 / group items: 85) | |
| length: min=5, max=12, avg=7.2 | |
| top prefixes: ok(21), kc(19), yk(12), qo(10), ch(9) | |
| contains: kchol(21), kchor(20), okchor(20), qokchol(18), okchol(15), | |
| qokchor(11), qokcho(10), okcho(9), kchody(6), ykcho(6), | |
| ykchol(6), ykchor(5), chokchol(4), qokchod(4), ykchody(4), | |
| chkchol(3), kchod(3), kchos(3), okchody(3), chokcho(2), | |
| kchokchy(2), kchom(2), kchoy(2), okchod(2), okchoda(2), | |
| okchom(2), okchoy(2), qokchody(2), chekchoy(1), chkchod(1), | |
| chkchody(1), chkchory(1), chokchodaiin(1), chokchor(1), ckcho(1), | |
| ckchol(1), cphokchol(1), ekchody(1), kchoan(1), kchoar(1), | |
| kchochaiin(1), kchochy(1), kchodan(1), kcholchdar(1), kcholy(1), | |
| kchorchor(1), kchorl(1), kchoror(1), kchoty(1), lkchol(1), | |
| lkchor(1), okchoal(1), okchochor(1), okchocthy(1), okchodeey(1), | |
| okchodshy(1), okchoiiin(1), okchokol(1), okchokshy(1), okchop(1), | |
| okchos(1), okchosam(1), okchoteees(1), okokchodm(1), olkcho(1), | |
| olkchokeedy(1), otokcho(1), oykchor(1), qokchocthor(1), | |
| qokchodal(1), qokchon(1), qokchory(1), qokchos(1), shkchody(1), | |
| shkchor(1), sokchol(1), sokchor(1), ykchochdy(1), ykchokeo(1), | |
| ykcholqod(1), ykcholy(1), ykchom(1), ykchon(1), ykchos(1), | |
| ykchotchy(1) | |
| kchod(3): (word length: 5 / group items: 17) | |
| length: min=6, max=12, avg=7.8 | |
| top prefixes: ok(6), qo(3), ch(3), kc(2), yk(1) | |
| contains: kchody(6), qokchod(4), ykchody(4), okchody(3), okchod(2), | |
| okchoda(2), qokchody(2), chkchod(1), chkchody(1), | |
| chokchodaiin(1), ekchody(1), kchodan(1), okchodeey(1), | |
| okchodshy(1), okokchodm(1), qokchodal(1), shkchody(1) | |
| kchody(6): (word length: 6 / group items: 6) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: yk(1), ok(1), qo(1), ch(1), ek(1) | |
| contains: ykchody(4), okchody(3), qokchody(2), chkchody(1), ekchody(1), | |
| shkchody(1) | |
| kchol(21): (word length: 5 / group items: 13) | |
| length: min=6, max=10, avg=7.2 | |
| top prefixes: yk(3), ch(2), kc(2), qo(1), ok(1) | |
| contains: qokchol(18), okchol(15), ykchol(6), chokchol(4), chkchol(3), | |
| ckchol(1), cphokchol(1), kcholchdar(1), kcholy(1), lkchol(1), | |
| sokchol(1), ykcholqod(1), ykcholy(1) | |
| kcholy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yk(1) | |
| contains: ykcholy(1) | |
| kchom(2): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1), yk(1) | |
| contains: okchom(2), ykchom(1) | |
| kchor(20): (word length: 5 / group items: 13) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: kc(3), qo(2), ch(2), ok(1), yk(1) | |
| contains: okchor(20), qokchor(11), ykchor(5), chkchory(1), chokchor(1), | |
| kchorchor(1), kchorl(1), kchoror(1), lkchor(1), oykchor(1), | |
| qokchory(1), shkchor(1), sokchor(1) | |
| kchos(3): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ok(2), qo(1), yk(1) | |
| contains: okchos(1), okchosam(1), qokchos(1), ykchos(1) | |
| kchoy(2): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ok(1), ch(1) | |
| contains: okchoy(2), chekchoy(1) | |
| kchs(2): (word length: 4 / group items: 12) | |
| length: min=5, max=9, avg=6.5 | |
| top prefixes: qo(3), yk(2), dk(1), kc(1), lk(1) | |
| contains: ykchs(2), dkchs(1), kchsy(1), lkchs(1), okchshy(1), olkchs(1), | |
| orkchsd(1), otykchs(1), qokchs(1), qokchsdy(1), qokchshy(1), | |
| ykchscheg(1) | |
| kchy(30): (word length: 4 / group items: 48) | |
| length: min=5, max=10, avg=7.3 | |
| top prefixes: ch(10), sh(6), qo(5), ok(3), yk(3) | |
| contains: qokchy(69), okchy(39), ykchy(22), chokchy(16), shokchy(9), | |
| chkchy(6), chekchy(5), shekchy(5), olkchy(4), chykchy(3), | |
| dchokchy(3), sheekchy(3), dykchy(2), kchokchy(2), shkchy(2), | |
| ychekchy(2), akchy(1), cheokchy(1), chkchykoly(1), chodykchy(1), | |
| choekchy(1), cholkchy(1), chotyokchy(1), dchsykchy(1), | |
| dchykchy(1), dolkchy(1), dychokchy(1), kchydy(1), lkchy(1), | |
| lkshykchy(1), okchyd(1), okeeeykchy(1), otalkchy(1), polkchy(1), | |
| qekchy(1), qoekchy(1), qokchyky(1), qokokchy(1), qolkchy(1), | |
| raikchy(1), sheolkchy(1), shorkchy(1), sokchy(1), solkchy(1), | |
| tchykchy(1), ychykchy(1), ykchyr(1), ykchys(1) | |
| keam(1): (word length: 4 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: ok(1), al(1) | |
| contains: okeam(2), allkeam(1) | |
| kechdy(4): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ok(1), qo(1), lk(1) | |
| contains: okechdy(4), qokechdy(3), lkechdy(1) | |
| kechedy(3): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: ok(1), qo(1), lk(1) | |
| contains: okechedy(4), qokechedy(4), lkechedy(3) | |
| kechey(1): (word length: 6 / group items: 6) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: lk(1), ok(1), ch(1), qo(1), te(1) | |
| contains: lkechey(2), okechey(2), cheykechey(1), qokechey(1), | |
| teolkechey(1), ykechey(1) | |
| kechody(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yk(1) | |
| contains: ykechody(1) | |
| kechy(4): (word length: 5 / group items: 8) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: qo(1), ok(1), ol(1), ch(1), do(1) | |
| contains: qokechy(13), okechy(6), olkechy(2), chekechy(1), dokechy(1), | |
| keeokechy(1), lkechy(1), shkechy(1) | |
| ked(1): (word length: 3 / group items: 89) | |
| length: min=4, max=10, avg=6.8 | |
| top prefixes: ok(16), qo(13), ch(11), lk(9), ke(8) | |
| contains: qokedy(272), okedy(118), kedy(44), lkedy(29), olkedy(27), | |
| ykedy(23), qokedar(8), okedal(7), qoked(7), okedar(6), chkedy(5), | |
| chekedy(4), qokedain(4), chokedy(3), kedar(3), okedaiin(3), | |
| okedain(3), okedam(3), okedor(3), qokedaiin(3), qokedal(3), | |
| solkedy(3), alkedy(2), cheked(2), cheokedy(2), dalkedy(2), | |
| dkedy(2), dykedy(2), lkedain(2), lkedal(2), oked(2), | |
| olkedaiin(2), qoekedy(2), qokedam(2), shekedy(2), chedalkedy(1), | |
| cheodkedy(1), cheolkedy(1), cheykedy(1), choked(1), chokedair(1), | |
| dkedam(1), dkedar(1), dokedy(1), dolkedy(1), ekedy(1), | |
| kedaiiin(1), kedair(1), kedal(1), kedaleey(1), kedarxy(1), | |
| kedydy(1), kolkedy(1), lked(1), lkedar(1), lkedeed(1), lkedey(1), | |
| lkedlkey(1), lkedshedy(1), lolkedy(1), okechoked(1), okedalor(1), | |
| okedals(1), okedes(1), okedody(1), okedyd(1), okedyted(1), | |
| okeokedr(1), olked(1), pykedy(1), qekedy(1), qokededy(1), | |
| qokedol(1), qokedydy(1), qokeokedy(1), qolkedy(1), rkedam(1), | |
| shedkedy(1), sheoked(1), sheolkedy(1), sokedy(1), tchokedy(1), | |
| teolkedain(1), yekedy(1), ykeda(1), ykedaiin(1), ykedar(1), | |
| ykedckhy(1), ykedor(1) | |
| kedair(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chokedair(1) | |
| kedal(1): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ok(3), qo(1), lk(1), ke(1) | |
| contains: okedal(7), qokedal(3), lkedal(2), kedaleey(1), okedalor(1), | |
| okedals(1) | |
| kedar(3): (word length: 5 / group items: 6) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: qo(1), ok(1), dk(1), ke(1), lk(1) | |
| contains: qokedar(8), okedar(6), dkedar(1), kedarxy(1), lkedar(1), | |
| ykedar(1) | |
| kedy(44): (word length: 4 / group items: 38) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: ch(8), qo(5), ok(3), sh(3), so(2) | |
| contains: qokedy(272), okedy(118), lkedy(29), olkedy(27), ykedy(23), | |
| chkedy(5), chekedy(4), chokedy(3), solkedy(3), alkedy(2), | |
| cheokedy(2), dalkedy(2), dkedy(2), dykedy(2), qoekedy(2), | |
| shekedy(2), chedalkedy(1), cheodkedy(1), cheolkedy(1), | |
| cheykedy(1), dokedy(1), dolkedy(1), ekedy(1), kedydy(1), | |
| kolkedy(1), lolkedy(1), okedyd(1), okedyted(1), pykedy(1), | |
| qekedy(1), qokedydy(1), qokeokedy(1), qolkedy(1), shedkedy(1), | |
| sheolkedy(1), sokedy(1), tchokedy(1), yekedy(1) | |
| kedydy(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokedydy(1) | |
| keeaiin(1): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(1), ok(1) | |
| contains: qokeeaiin(2), okeeaiin(1) | |
| keear(3): (word length: 5 / group items: 7) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ok(2), ol(1), qo(1), yk(1), al(1) | |
| contains: okeear(4), olkeear(2), qokeear(2), ykeear(2), alkeear(1), | |
| chokeear(1), okeearam(1) | |
| keechdy(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ol(1) | |
| contains: olkeechdy(1) | |
| keechey(1): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.7 | |
| top prefixes: lk(1), ol(1), qo(1) | |
| contains: lkeechey(1), olkeechey(1), qokeechey(1) | |
| keechy(3): (word length: 6 / group items: 5) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: qo(1), ol(1), yk(1), ok(1), sh(1) | |
| contains: qokeechy(6), olkeechy(3), ykeechy(3), okeechy(1), | |
| sholkeechy(1) | |
| keed(2): (word length: 4 / group items: 89) | |
| length: min=5, max=11, avg=7.7 | |
| top prefixes: ok(14), qo(11), lk(9), ch(9), ke(7) | |
| contains: qokeedy(305), okeedy(105), keedy(53), olkeedy(42), lkeedy(41), | |
| ykeedy(30), qokeed(15), qolkeedy(7), qokeedar(6), solkeedy(5), | |
| alkeedy(4), chekeedy(4), chokeedy(3), cholkeedy(3), keedal(3), | |
| lkeed(3), lokeedy(3), okeed(3), okeedal(3), qokeedain(3), | |
| qokeedal(3), sokeedy(3), cheolkeedy(2), chkeedy(2), dykeedy(2), | |
| keedain(2), okeedain(2), okeedaly(2), okeedar(2), salkeedy(2), | |
| sholkeedy(2), ykeedain(2), chalkeedy(1), chokeed(1), | |
| chokeedam(1), chykeedy(1), dolkeedy(1), dykeedain(1), keedas(1), | |
| keedeedy(1), keedey(1), keedor(1), lkeeda(1), lkeedain(1), | |
| lkeedal(1), lkeedar(1), lkeede(1), lkeedol(1), lkeedor(1), | |
| oekeedy(1), okeedaiin(1), okeedaim(1), okeedaky(1), okeedam(1), | |
| okeedaram(1), okeedchsy(1), okeeddl(1), okeedey(1), | |
| olkchokeedy(1), olkeed(1), olkeedain(1), olkeedal(1), | |
| otokeedar(1), otokeedy(1), oykeedy(1), palkeedy(1), | |
| pcholkeedy(1), polkeedal(1), qoeekeedy(1), qokeedaiin(1), | |
| qokeedair(1), qokeedody(1), qoolkeedy(1), qsolkeedy(1), | |
| rokeedy(1), rolkeedy(1), sheokeedy(1), sheolkeedy(1), | |
| shkakeedy(1), shkeedy(1), shokeedar(1), syokeedy(1), | |
| tolokeedy(1), tsheokeedy(1), ykeed(1), ykeedaiin(1), ykeedal(1), | |
| ykeedar(1), ykeedl(1) | |
| keedain(2): (word length: 7 / group items: 6) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(1), ok(1), yk(1), dy(1), lk(1) | |
| contains: qokeedain(3), okeedain(2), ykeedain(2), dykeedain(1), | |
| lkeedain(1), olkeedain(1) | |
| keedal(3): (word length: 6 / group items: 7) | |
| length: min=7, max=9, avg=7.7 | |
| top prefixes: ok(2), qo(1), lk(1), ol(1), po(1) | |
| contains: okeedal(3), qokeedal(3), okeedaly(2), lkeedal(1), olkeedal(1), | |
| polkeedal(1), ykeedal(1) | |
| keedey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okeedey(1) | |
| keedor(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: lk(1) | |
| contains: lkeedor(1) | |
| keedy(53): (word length: 5 / group items: 39) | |
| length: min=6, max=11, avg=8.1 | |
| top prefixes: ch(7), sh(5), qo(4), ol(2), so(2) | |
| contains: qokeedy(305), okeedy(105), olkeedy(42), lkeedy(41), | |
| ykeedy(30), qolkeedy(7), solkeedy(5), alkeedy(4), chekeedy(4), | |
| chokeedy(3), cholkeedy(3), lokeedy(3), sokeedy(3), cheolkeedy(2), | |
| chkeedy(2), dykeedy(2), salkeedy(2), sholkeedy(2), chalkeedy(1), | |
| chykeedy(1), dolkeedy(1), oekeedy(1), olkchokeedy(1), | |
| otokeedy(1), oykeedy(1), palkeedy(1), pcholkeedy(1), | |
| qoeekeedy(1), qoolkeedy(1), qsolkeedy(1), rokeedy(1), | |
| rolkeedy(1), sheokeedy(1), sheolkeedy(1), shkakeedy(1), | |
| shkeedy(1), syokeedy(1), tolokeedy(1), tsheokeedy(1) | |
| keeed(1): (word length: 5 / group items: 14) | |
| length: min=6, max=10, avg=7.8 | |
| top prefixes: lk(3), ch(3), ke(2), ol(2), ok(1) | |
| contains: okeeedy(9), qokeeedy(5), lkeeedy(4), ykeeedy(4), keeedy(3), | |
| olkeeedy(3), chalkeeedy(1), cheykeeed(1), cholkeeedy(1), | |
| keeedal(1), lkeeed(1), lkeeedam(1), olkeeed(1), tolkeeedy(1) | |
| keeedy(3): (word length: 6 / group items: 8) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: ch(2), ok(1), qo(1), lk(1), yk(1) | |
| contains: okeeedy(9), qokeeedy(5), lkeeedy(4), ykeeedy(4), olkeeedy(3), | |
| chalkeeedy(1), cholkeeedy(1), tolkeeedy(1) | |
| keeees(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okeeees(1) | |
| keeeo(1): (word length: 5 / group items: 13) | |
| length: min=6, max=11, avg=7.7 | |
| top prefixes: ok(4), ke(3), qo(2), yk(2), lk(1) | |
| contains: keeeol(2), okeeeo(2), keeeody(1), keeeos(1), lkeeeody(1), | |
| okeeeody(1), okeeeol(1), okeeeosaiin(1), qokeeeor(1), | |
| qokeeeos(1), sykeeeochy(1), ykeeeody(1), ykeeeos(1) | |
| keeeody(1): (word length: 7 / group items: 3) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: lk(1), ok(1), yk(1) | |
| contains: lkeeeody(1), okeeeody(1), ykeeeody(1) | |
| keeeol(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okeeeol(1) | |
| keeeos(1): (word length: 6 / group items: 3) | |
| length: min=7, max=11, avg=8.7 | |
| top prefixes: ok(1), qo(1), yk(1) | |
| contains: okeeeosaiin(1), qokeeeos(1), ykeeeos(1) | |
| keees(1): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ok(2), qo(1), lk(1), ol(1) | |
| contains: qokeees(3), lkeees(1), okeees(1), okeeesey(1), olkeees(1) | |
| keeey(11): (word length: 5 / group items: 19) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: qo(4), ch(3), ok(2), ol(1), lk(1) | |
| contains: okeeey(27), qokeeey(26), olkeeey(9), lkeeey(8), ykeeey(6), | |
| chokeeey(2), cholkeeey(2), aekeeey(1), chkeeey(1), dalkeeey(1), | |
| okeeeykchy(1), orkeeey(1), polkeeey(1), qekeeey(1), qkeeey(1), | |
| qokaekeeey(1), qolkeeey(1), qoykeeey(1), shokeeey(1) | |
| keel(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qokeel(1) | |
| keeo(9): (word length: 4 / group items: 93) | |
| length: min=5, max=14, avg=7.5 | |
| top prefixes: ok(16), ke(13), yk(13), qo(12), ch(11) | |
| contains: qokeeo(23), okeeol(18), okeeody(16), okeeo(15), okeeor(14), | |
| keeol(13), qokeeody(13), ykeeol(13), ykeeody(12), qokeeol(11), | |
| qokeeor(10), keeody(8), keeor(8), olkeeody(7), ykeeo(7), | |
| lkeeody(6), okeeos(6), keeos(4), lkeeo(4), lkeeol(4), olkeeo(4), | |
| qokeeos(4), ykeeor(4), okeeom(3), shkeeo(3), ykeeos(3), | |
| cheokeeo(2), chokeeody(2), keeod(2), keeodal(2), lkeeor(2), | |
| okeeodaiin(2), okeeoly(2), okeeoy(2), olkeeor(2), qokeeod(2), | |
| ykeeod(2), alkeeol(1), cheokeeos(1), chesokeeoteody(1), | |
| cheykeeoy(1), chkeeody(1), choekeeos(1), chokeeo(1), | |
| chokeeodol(1), chokeeoky(1), chokeeor(1), dkeeor(1), eokeeor(1), | |
| keeoal(1), keeodaiin(1), keeodar(1), keeodol(1), keeokechy(1), | |
| keeolshey(1), keeoly(1), lkeeoar(1), lkeeos(1), oekeeor(1), | |
| okeeoda(1), okeeodair(1), okeeodal(1), okeeodar(1), okeeokain(1), | |
| okeeolkcheey(1), okeeoraiin(1), olkeeodal(1), olkeeol(1), | |
| olkeeoldy(1), olkeeoly(1), olkeeos(1), polkeeo(1), qkeeod(1), | |
| qkeeody(1), qokeeodaiin(1), qokeeodain(1), qokeeodor(1), | |
| qokeeokain(1), qokeeoky(1), qokeeolchey(1), qykeeody(1), | |
| rkeeo(1), shekeeody(1), shokeeol(1), skeeody(1), ykeeochody(1), | |
| ykeeodain(1), ykeeodam(1), ykeeodey(1), ykeeols(1), ykeeoly(1), | |
| ykeeory(1), yokeeol(1) | |
| keeod(2): (word length: 5 / group items: 32) | |
| length: min=6, max=11, avg=8.0 | |
| top prefixes: ok(6), qo(5), yk(5), ke(5), ch(3) | |
| contains: okeeody(16), qokeeody(13), ykeeody(12), keeody(8), | |
| olkeeody(7), lkeeody(6), chokeeody(2), keeodal(2), okeeodaiin(2), | |
| qokeeod(2), ykeeod(2), chkeeody(1), chokeeodol(1), keeodaiin(1), | |
| keeodar(1), keeodol(1), okeeoda(1), okeeodair(1), okeeodal(1), | |
| okeeodar(1), olkeeodal(1), qkeeod(1), qkeeody(1), qokeeodaiin(1), | |
| qokeeodain(1), qokeeodor(1), qykeeody(1), shekeeody(1), | |
| skeeody(1), ykeeodain(1), ykeeodam(1), ykeeodey(1) | |
| keeodaiin(1): (word length: 9 / group items: 2) | |
| length: min=10, max=11, avg=10.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okeeodaiin(2), qokeeodaiin(1) | |
| keeodal(2): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ok(1), ol(1) | |
| contains: okeeodal(1), olkeeodal(1) | |
| keeodar(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okeeodar(1) | |
| keeodol(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: chokeeodol(1) | |
| keeody(8): (word length: 6 / group items: 11) | |
| length: min=7, max=9, avg=7.7 | |
| top prefixes: ch(2), ok(1), qo(1), yk(1), ol(1) | |
| contains: okeeody(16), qokeeody(13), ykeeody(12), olkeeody(7), | |
| lkeeody(6), chokeeody(2), chkeeody(1), qkeeody(1), qykeeody(1), | |
| shekeeody(1), skeeody(1) | |
| keeol(13): (word length: 5 / group items: 17) | |
| length: min=6, max=12, avg=7.6 | |
| top prefixes: ok(3), yk(3), ol(3), qo(2), ke(2) | |
| contains: okeeol(18), ykeeol(13), qokeeol(11), lkeeol(4), okeeoly(2), | |
| alkeeol(1), keeolshey(1), keeoly(1), okeeolkcheey(1), olkeeol(1), | |
| olkeeoldy(1), olkeeoly(1), qokeeolchey(1), shokeeol(1), | |
| ykeeols(1), ykeeoly(1), yokeeol(1) | |
| keeoly(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ok(1), ol(1), yk(1) | |
| contains: okeeoly(2), olkeeoly(1), ykeeoly(1) | |
| keeor(8): (word length: 5 / group items: 11) | |
| length: min=6, max=10, avg=7.0 | |
| top prefixes: ok(2), yk(2), qo(1), lk(1), ol(1) | |
| contains: okeeor(14), qokeeor(10), ykeeor(4), lkeeor(2), olkeeor(2), | |
| chokeeor(1), dkeeor(1), eokeeor(1), oekeeor(1), okeeoraiin(1), | |
| ykeeory(1) | |
| keeos(4): (word length: 5 / group items: 7) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: ch(2), ok(1), qo(1), yk(1), lk(1) | |
| contains: okeeos(6), qokeeos(4), ykeeos(3), cheokeeos(1), choekeeos(1), | |
| lkeeos(1), olkeeos(1) | |
| keesho(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ke(1) | |
| contains: keeshody(1) | |
| keeshy(1): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ok(1), yk(1), ol(1), qo(1) | |
| contains: okeeshy(2), ykeeshy(2), olkeeshy(1), qokeeshy(1) | |
| keesy(1): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ok(1), sh(1) | |
| contains: okeesy(1), shokeesy(1) | |
| keey(45): (word length: 4 / group items: 71) | |
| length: min=5, max=12, avg=7.3 | |
| top prefixes: ch(13), qo(9), sh(8), ol(4), ot(4) | |
| contains: qokeey(308), okeey(177), ykeey(58), lkeey(41), olkeey(40), | |
| chkeey(13), chokeey(11), chekeey(6), qolkeey(6), shekeey(6), | |
| cheokeey(5), solkeey(4), shkeey(3), shokeey(3), choekeey(2), | |
| lokeey(2), qekeey(2), qoekeey(2), sheekeey(2), sheokeey(2), | |
| sokeey(2), alekeey(1), alkeey(1), arolkeey(1), chakeey(1), | |
| chalkeey(1), cheekeey(1), cheeokeey(1), cheoekeey(1), | |
| cheolkeey(1), cholkeey(1), choolkeey(1), dakeey(1), dkeey(1), | |
| ekeey(1), ekokeey(1), keeyfar(1), ochokeey(1), oekeey(1), | |
| okeeylchedy(1), okeeyteedy(1), olekeey(1), olkeeycthy(1), | |
| olkeeyr(1), oqokeey(1), oteeolkeey(1), oteeykeey(1), oteokeey(1), | |
| otykeey(1), oykeey(1), pcheokeey(1), poeokeey(1), pokeey(1), | |
| polkeey(1), qeykeey(1), qkeey(1), qoekeeykeody(1), qoikeey(1), | |
| qokchkeey(1), qoolkeey(1), qoqokeey(1), qoykeey(1), rkeey(1), | |
| rolkeey(1), sheckeey(1), sheolkeey(1), shyokeey(1), skeey(1), | |
| ycheekeey(1), ykeeykeey(1), yokeey(1) | |
| keo(4): (word length: 3 / group items: 174) | |
| length: min=4, max=12, avg=7.0 | |
| top prefixes: ok(46), ch(23), qo(22), ke(18), yk(18) | |
| contains: okeol(66), qokeol(52), okeody(37), qokeody(32), keody(22), | |
| okeor(22), qokeor(21), keol(20), ykeody(16), ykeol(15), okeo(14), | |
| okeos(14), keor(10), qokeod(8), ykeor(8), olkeol(7), qokeo(7), | |
| okeod(6), okeoly(6), okeom(6), chokeody(5), chokeol(5), lkeol(5), | |
| qokeos(5), lkeody(4), lkeo(3), okeodal(3), okeodar(3), ykeo(3), | |
| ykeos(3), chekeol(2), cheokeol(2), chokeo(2), keodaiin(2), | |
| keodar(2), keoy(2), oekeody(2), okeodaiin(2), okeodaly(2), | |
| okeoldy(2), okeosar(2), okeoy(2), olkeody(2), qkeody(2), | |
| qokeochy(2), qokeodal(2), qokeoly(2), qokeom(2), shkeody(2), | |
| ykeodar(2), ykeols(2), cheekeo(1), cheekeody(1), chekeo(1), | |
| chekeoar(1), chekeod(1), chekeody(1), chekeor(1), cheokeo(1), | |
| cheokeodal(1), cheokeos(1), chepakeo(1), chkeody(1), chkeor(1), | |
| chokeod(1), chokeor(1), chokeos(1), cholkeod(1), chykeor(1), | |
| ckeor(1), cthckeom(1), daikeody(1), dcheeokeody(1), dykeor(1), | |
| ekeolol(1), kecheokeo(1), keoar(1), keocthedy(1), keocthy(1), | |
| keodal(1), keodam(1), keodky(1), keoky(1), keolchey(1), | |
| keolor(1), keoly(1), keos(1), lkeodaiin(1), lkeodain(1), | |
| lkeoldy(1), lkeopol(1), lkeor(1), lolkeol(1), oekeol(1), | |
| okeoaiin(1), okeoaly(1), okeoam(1), okeoar(1), okeockhey(1), | |
| okeodain(1), okeodly(1), okeodof(1), okeodor(1), okeoeeey(1), | |
| okeoekol(1), okeohdar(1), okeokain(1), okeokear(1), okeokedr(1), | |
| okeokeokeody(1), okeoky(1), okeolaiin(1), okeolan(1), okeolar(1), | |
| okeolkey(1), okeoloky(1), okeolol(1), okeolor(1), okeols(1), | |
| okeolshey(1), okeoram(1), okeorl(1), okeory(1), okeoschso(1), | |
| okeoteey(1), olkeor(1), olkeoy(1), opolkeor(1), oqokeol(1), | |
| oraroekeol(1), otakeol(1), otokeoar(1), otorkeol(1), pykeor(1), | |
| qekeochor(1), qekeody(1), qekeoldy(1), qekeor(1), qeokeody(1), | |
| qoekeeykeody(1), qoekeol(1), qoekeor(1), qokeoda(1), | |
| qokeodair(1), qokeodol(1), qokeoefy(1), qokeog(1), qokeokedy(1), | |
| qokeolo(1), qokeory(1), qokeoy(1), shekeod(1), sheokeol(1), | |
| sheokeor(1), shkeol(1), shkeor(1), shokeolls(1), shykeody(1), | |
| soeokeot(1), sqokeo(1), tolkeol(1), tshokeody(1), ykchokeo(1), | |
| ykeockhey(1), ykeod(1), ykeoda(1), ykeodaiin(1), ykeodain(1), | |
| ykeoees(1), ykeoeshy(1), ykeolal(1), ykeoldy(1), ykeoshe(1), | |
| yokeody(1) | |
| keoar(1): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.3 | |
| top prefixes: ch(1), ok(1), ot(1) | |
| contains: chekeoar(1), okeoar(1), otokeoar(1) | |
| keodaiin(2): (word length: 8 / group items: 3) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ok(1), lk(1), yk(1) | |
| contains: okeodaiin(2), lkeodaiin(1), ykeodaiin(1) | |
| keodal(1): (word length: 6 / group items: 4) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: ok(2), qo(1), ch(1) | |
| contains: okeodal(3), okeodaly(2), qokeodal(2), cheokeodal(1) | |
| keodar(2): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1), yk(1) | |
| contains: okeodar(3), ykeodar(2) | |
| keody(22): (word length: 5 / group items: 21) | |
| length: min=6, max=12, avg=7.9 | |
| top prefixes: ch(4), ok(2), qo(2), sh(2), qe(2) | |
| contains: okeody(37), qokeody(32), ykeody(16), chokeody(5), lkeody(4), | |
| oekeody(2), olkeody(2), qkeody(2), shkeody(2), cheekeody(1), | |
| chekeody(1), chkeody(1), daikeody(1), dcheeokeody(1), | |
| okeokeokeody(1), qekeody(1), qeokeody(1), qoekeeykeody(1), | |
| shykeody(1), tshokeody(1), yokeody(1) | |
| keoky(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1) | |
| contains: okeoky(1) | |
| keol(20): (word length: 4 / group items: 41) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: ok(12), qo(4), yk(4), ch(3), ke(3) | |
| contains: okeol(66), qokeol(52), ykeol(15), olkeol(7), okeoly(6), | |
| chokeol(5), lkeol(5), chekeol(2), cheokeol(2), okeoldy(2), | |
| qokeoly(2), ykeols(2), ekeolol(1), keolchey(1), keolor(1), | |
| keoly(1), lkeoldy(1), lolkeol(1), oekeol(1), okeolaiin(1), | |
| okeolan(1), okeolar(1), okeolkey(1), okeoloky(1), okeolol(1), | |
| okeolor(1), okeols(1), okeolshey(1), oqokeol(1), oraroekeol(1), | |
| otakeol(1), otorkeol(1), qekeoldy(1), qoekeol(1), qokeolo(1), | |
| sheokeol(1), shkeol(1), shokeolls(1), tolkeol(1), ykeolal(1), | |
| ykeoldy(1) | |
| keolor(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okeolor(1) | |
| keoly(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okeoly(6), qokeoly(2) | |
| keor(10): (word length: 4 / group items: 21) | |
| length: min=5, max=8, avg=6.3 | |
| top prefixes: ok(4), ch(4), qo(3), sh(2), yk(1) | |
| contains: okeor(22), qokeor(21), ykeor(8), chekeor(1), chkeor(1), | |
| chokeor(1), chykeor(1), ckeor(1), dykeor(1), lkeor(1), | |
| okeoram(1), okeorl(1), okeory(1), olkeor(1), opolkeor(1), | |
| pykeor(1), qekeor(1), qoekeor(1), qokeory(1), sheokeor(1), | |
| shkeor(1) | |
| keos(1): (word length: 4 / group items: 8) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: ok(3), yk(2), ch(2), qo(1) | |
| contains: okeos(14), qokeos(5), ykeos(3), okeosar(2), cheokeos(1), | |
| chokeos(1), okeoschso(1), ykeoshe(1) | |
| keoy(2): (word length: 4 / group items: 3) | |
| length: min=5, max=6, avg=5.7 | |
| top prefixes: ok(1), ol(1), qo(1) | |
| contains: okeoy(2), olkeoy(1), qokeoy(1) | |
| ker(1): (word length: 3 / group items: 2) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ok(1), qo(1) | |
| contains: okery(1), qoker(1) | |
| kesd(1): (word length: 4 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: qo(2), ok(1) | |
| contains: okesdy(1), qokesd(1), qokesdy(1) | |
| keshdy(1): (word length: 6 / group items: 3) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: qo(2), lk(1) | |
| contains: lkeshdy(1), qokeshdy(1), qolkeshdy(1) | |
| keshed(1): (word length: 6 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okeshedy(1), qokeshedy(1) | |
| keshey(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: ok(1), ol(1), qo(1) | |
| contains: okeshey(1), olkeshey(1), qokeshey(1) | |
| key(14): (word length: 3 / group items: 56) | |
| length: min=4, max=9, avg=6.3 | |
| top prefixes: ch(12), sh(7), ok(6), qo(4), yk(4) | |
| contains: qokey(107), okey(64), olkey(12), chkey(8), ykey(8), chekey(7), | |
| chokey(7), lkey(7), cheekey(6), shekey(5), shokey(5), sheokey(4), | |
| cheokey(3), oekey(3), alkey(2), chykey(2), ekey(2), akey(1), | |
| cheeoekey(1), chekeys(1), cheoekey(1), cheykey(1), choekey(1), | |
| chpaiikey(1), ckey(1), ckheokey(1), dainkey(1), dchokey(1), | |
| dchykey(1), dykey(1), lkedlkey(1), okeolkey(1), okeyr(1), | |
| okeytam(1), okeyteey(1), okeyty(1), opykey(1), oteeykey(1), | |
| otockey(1), qekey(1), qodykey(1), qokeyl(1), qolkey(1), | |
| schokey(1), seekey(1), shedykeyl(1), sheekey(1), shkey(1), | |
| shoekey(1), skey(1), solkey(1), tolkey(1), yekey(1), | |
| ykeealkey(1), ykeydom(1), ykeydy(1) | |
| kiin(1): (word length: 4 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: ok(1), po(1) | |
| contains: okiin(2), polkiin(1) | |
| koaiin(3): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: ok(1), yk(1), ch(1), qo(1) | |
| contains: okoaiin(2), ykoaiin(2), chokoaiin(1), qokoaiin(1) | |
| kod(2): (word length: 3 / group items: 41) | |
| length: min=4, max=9, avg=6.3 | |
| top prefixes: ko(13), ok(8), qo(6), ch(4), yk(4) | |
| contains: okody(16), qokody(9), kody(7), qokod(7), chekody(3), | |
| chokody(3), kodaiin(3), okod(3), okodaiin(2), ykody(2), | |
| chakod(1), chkodal(1), kodain(1), kodal(1), kodalchy(1), | |
| kodam(1), kodar(1), kodary(1), koddy(1), kodeey(1), kodl(1), | |
| kodshey(1), kodshol(1), lkodol(1), lkody(1), okodaly(1), | |
| okodar(1), okodas(1), okodchy(1), okodeey(1), opolkod(1), | |
| qokodaiin(1), qokodal(1), qokodar(1), qotokody(1), shekody(1), | |
| shotokody(1), sokod(1), ykodair(1), ykodar(1), ykodas(1) | |
| kodaiin(3): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okodaiin(2), qokodaiin(1) | |
| kodal(1): (word length: 5 / group items: 4) | |
| length: min=7, max=8, avg=7.2 | |
| top prefixes: ch(1), ko(1), ok(1), qo(1) | |
| contains: chkodal(1), kodalchy(1), okodaly(1), qokodal(1) | |
| kodar(1): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.2 | |
| top prefixes: ko(1), ok(1), qo(1), yk(1) | |
| contains: kodary(1), okodar(1), qokodar(1), ykodar(1) | |
| kodeey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okodeey(1) | |
| kody(7): (word length: 4 / group items: 9) | |
| length: min=5, max=9, avg=6.6 | |
| top prefixes: qo(2), ch(2), sh(2), ok(1), yk(1) | |
| contains: okody(16), qokody(9), chekody(3), chokody(3), ykody(2), | |
| lkody(1), qotokody(1), shekody(1), shotokody(1) | |
| koees(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okoeese(1) | |
| koiin(5): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ok(1), qo(1), yk(1), ch(1) | |
| contains: okoiin(9), qokoiin(6), ykoiin(4), chokoiin(1) | |
| kol(37): (word length: 3 / group items: 97) | |
| length: min=4, max=10, avg=6.6 | |
| top prefixes: ok(24), ko(24), qo(11), yk(9), ch(7) | |
| contains: qokol(105), okol(83), ykol(14), okoldy(8), koldy(7), lkol(5), | |
| okoly(5), olkol(5), chokol(4), chekol(3), chkol(3), koly(3), | |
| okolchy(3), okolo(3), okolshy(3), qokoldy(3), shokol(3), | |
| chkoldy(2), koldal(2), okolaiin(2), okolar(2), okolchey(2), | |
| okolol(2), okolor(2), okols(2), qkol(2), qoekol(2), shkol(2), | |
| ykoly(2), alkol(1), chkchykoly(1), chokoldy(1), chokolg(1), | |
| ckol(1), dchokol(1), dechoekol(1), dkol(1), echkolal(1), | |
| kolchdy(1), kolchedy(1), kolcheey(1), kolches(1), kolchey(1), | |
| koldaky(1), koldarod(1), koleearol(1), kolfchdy(1), kolkar(1), | |
| kolkedy(1), kolky(1), kolor(1), kolotam(1), kolpy(1), | |
| kolschees(1), kolshd(1), kolshes(1), kolsho(1), koltoldy(1), | |
| kolyky(1), okchokol(1), okeoekol(1), okolair(1), okolaldy(1), | |
| okolarm(1), okoldaly(1), okoldam(1), okoldm(1), okoldody(1), | |
| okoleeolar(1), okolraiin(1), okolyd(1), otokol(1), otykol(1), | |
| qkoldy(1), qokolchedy(1), qokolchey(1), qokold(1), qokolkain(1), | |
| qokolkchdy(1), qokolky(1), qokololal(1), qokoly(1), schekol(1), | |
| seokol(1), sheekol(1), shekol(1), sokol(1), sokoly(1), tokol(1), | |
| ykolaiin(1), ykolairol(1), ykoldam(1), ykoldy(1), ykolody(1), | |
| ykoloin(1), ykolor(1), yolkol(1) | |
| kolchedy(1): (word length: 8 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: qo(1) | |
| contains: qokolchedy(1) | |
| kolchey(1): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okolchey(2), qokolchey(1) | |
| koldal(2): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okoldaly(1) | |
| koldy(7): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: ch(2), ok(1), qo(1), qk(1), yk(1) | |
| contains: okoldy(8), qokoldy(3), chkoldy(2), chokoldy(1), qkoldy(1), | |
| ykoldy(1) | |
| kolky(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokolky(1) | |
| kolor(1): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1), yk(1) | |
| contains: okolor(2), ykolor(1) | |
| koly(3): (word length: 4 / group items: 7) | |
| length: min=5, max=10, avg=6.3 | |
| top prefixes: ok(2), yk(1), ch(1), ko(1), qo(1) | |
| contains: okoly(5), ykoly(2), chkchykoly(1), kolyky(1), okolyd(1), | |
| qokoly(1), sokoly(1) | |
| kom(2): (word length: 3 / group items: 5) | |
| length: min=4, max=6, avg=5.2 | |
| top prefixes: ok(2), qo(2), ko(1) | |
| contains: okom(7), qokom(2), komdy(1), okokom(1), qokomo(1) | |
| kor(26): (word length: 3 / group items: 48) | |
| length: min=4, max=11, avg=6.2 | |
| top prefixes: ok(9), ch(9), ko(9), qo(4), ol(3) | |
| contains: qokor(36), okor(34), ykor(11), chokor(6), lkor(4), olkor(4), | |
| okory(3), koraiin(2), korain(2), korchy(2), okoraiin(2), | |
| qekor(2), qokorar(2), chekor(1), cheokor(1), cheokorchey(1), | |
| chkor(1), chkorchy(1), chokokor(1), chokoran(1), chokory(1), | |
| dokor(1), eeeokor(1), korare(1), korary(1), koroiin(1), korol(1), | |
| korols(1), kory(1), oekor(1), okorair(1), okoral(1), okoraldy(1), | |
| okoramog(1), okoroeey(1), okorory(1), olekor(1), olkory(1), | |
| podkor(1), qkor(1), qkory(1), qokoral(1), qokoror(1), shekor(1), | |
| shokor(1), ykory(1), yokor(1), ytedykor(1) | |
| koraiin(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okoraiin(2) | |
| korchy(2): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chkorchy(1) | |
| korol(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ko(1) | |
| contains: korols(1) | |
| kory(1): (word length: 4 / group items: 5) | |
| length: min=5, max=7, avg=5.6 | |
| top prefixes: ok(1), ch(1), ol(1), qk(1), yk(1) | |
| contains: okory(3), chokory(1), olkory(1), qkory(1), ykory(1) | |
| kos(3): (word length: 3 / group items: 9) | |
| length: min=4, max=8, avg=5.3 | |
| top prefixes: ko(4), ok(3), qk(1), qo(1) | |
| contains: okos(8), koshey(2), kosar(1), koshet(1), kosholda(1), | |
| okosd(1), okosy(1), qkos(1), qokos(1) | |
| ksh(1): (word length: 3 / group items: 105) | |
| length: min=4, max=11, avg=6.8 | |
| top prefixes: ks(29), ok(20), qo(12), sh(8), yk(7) | |
| contains: qokshedy(11), okshy(10), qokshy(10), okshey(9), ksho(8), | |
| qokshey(8), kshedy(6), kshey(6), kshdy(5), ksheody(5), kshy(5), | |
| kshar(4), ksheo(4), kshody(4), lkshedy(4), oksho(4), qokshdy(4), | |
| kshol(3), okshedy(3), qokshd(3), chokshor(2), dkshey(2), kshd(2), | |
| kshed(2), ksheeol(2), ksheey(2), ksheol(2), kshor(2), lkshey(2), | |
| okshd(2), okshor(2), shekshey(2), yksheol(2), ykshy(2), | |
| chckshy(1), chkshy(1), chokshchy(1), chokshy(1), cholkshedy(1), | |
| ckshy(1), dalkshdy(1), dksheey(1), dkshy(1), dykshy(1), ekshy(1), | |
| fchokshy(1), kshaiin(1), kshardy(1), kshdain(1), kshdor(1), | |
| ksheoary(1), ksheodal(1), ksheodl(1), kshes(1), kshodaiin(1), | |
| ksholochey(1), kshoraiin(1), kshotol(1), kshoy(1), lksheey(1), | |
| lksho(1), lkshykchy(1), oekshy(1), oepchksheey(1), okchokshy(1), | |
| okoksheo(1), okshal(1), okshchedy(1), okshdy(1), okshed(1), | |
| oksheeoda(1), oksheey(1), oksheo(1), okshes(1), okshodeeen(1), | |
| okshody(1), okshol(1), oksholshol(1), olkshdy(1), olkshed(1), | |
| olkshedy(1), olkshey(1), oteeykshy(1), otolkshy(1), oykshy(1), | |
| qoekshg(1), qoksh(1), qokshe(1), qoksheo(1), qoksheoy(1), | |
| qokshol(1), qolkshey(1), sheekshy(1), sheksheet(1), shekshol(1), | |
| shkshy(1), shokshdy(1), shokshor(1), sholkshy(1), tolkshey(1), | |
| yksh(1), ykshedy(1), yksheey(1), yksho(1), ykshol(1) | |
| kshar(4): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ks(1) | |
| contains: kshardy(1) | |
| kshd(2): (word length: 4 / group items: 10) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: ks(3), qo(2), ok(2), da(1), ol(1) | |
| contains: kshdy(5), qokshdy(4), qokshd(3), okshd(2), dalkshdy(1), | |
| kshdain(1), kshdor(1), okshdy(1), olkshdy(1), shokshdy(1) | |
| kshdy(5): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: qo(1), da(1), ok(1), ol(1), sh(1) | |
| contains: qokshdy(4), dalkshdy(1), okshdy(1), olkshdy(1), shokshdy(1) | |
| kshed(2): (word length: 5 / group items: 9) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: ok(2), ol(2), qo(1), ks(1), lk(1) | |
| contains: qokshedy(11), kshedy(6), lkshedy(4), okshedy(3), | |
| cholkshedy(1), okshed(1), olkshed(1), olkshedy(1), ykshedy(1) | |
| kshedy(6): (word length: 6 / group items: 6) | |
| length: min=7, max=10, avg=7.8 | |
| top prefixes: qo(1), lk(1), ok(1), ch(1), ol(1) | |
| contains: qokshedy(11), lkshedy(4), okshedy(3), cholkshedy(1), | |
| olkshedy(1), ykshedy(1) | |
| ksheey(2): (word length: 6 / group items: 5) | |
| length: min=7, max=11, avg=7.8 | |
| top prefixes: dk(1), lk(1), oe(1), ok(1), yk(1) | |
| contains: dksheey(1), lksheey(1), oepchksheey(1), oksheey(1), yksheey(1) | |
| ksheo(4): (word length: 5 / group items: 10) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: ks(5), ok(2), qo(2), yk(1) | |
| contains: ksheody(5), ksheol(2), yksheol(2), ksheoary(1), ksheodal(1), | |
| ksheodl(1), okoksheo(1), oksheo(1), qoksheo(1), qoksheoy(1) | |
| ksheol(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yk(1) | |
| contains: yksheol(2) | |
| kshes(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1) | |
| contains: okshes(1) | |
| kshey(6): (word length: 5 / group items: 8) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: qo(2), ok(1), dk(1), lk(1), sh(1) | |
| contains: okshey(9), qokshey(8), dkshey(2), lkshey(2), shekshey(2), | |
| olkshey(1), qolkshey(1), tolkshey(1) | |
| ksho(8): (word length: 4 / group items: 21) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: ks(8), ok(6), sh(2), yk(2), ch(1) | |
| contains: kshody(4), oksho(4), kshol(3), chokshor(2), kshor(2), | |
| okshor(2), kshodaiin(1), ksholochey(1), kshoraiin(1), kshotol(1), | |
| kshoy(1), lksho(1), okshodeeen(1), okshody(1), okshol(1), | |
| oksholshol(1), qokshol(1), shekshol(1), shokshor(1), yksho(1), | |
| ykshol(1) | |
| kshody(4): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okshody(1) | |
| kshol(3): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.8 | |
| top prefixes: ok(2), ks(1), qo(1), sh(1), yk(1) | |
| contains: ksholochey(1), okshol(1), oksholshol(1), qokshol(1), | |
| shekshol(1), ykshol(1) | |
| kshor(2): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.8 | |
| top prefixes: ch(1), ok(1), ks(1), sh(1) | |
| contains: chokshor(2), okshor(2), kshoraiin(1), shokshor(1) | |
| kshy(5): (word length: 4 / group items: 20) | |
| length: min=5, max=9, avg=6.7 | |
| top prefixes: ch(3), sh(3), ok(2), ot(2), qo(1) | |
| contains: okshy(10), qokshy(10), ykshy(2), chckshy(1), chkshy(1), | |
| chokshy(1), ckshy(1), dkshy(1), dykshy(1), ekshy(1), fchokshy(1), | |
| lkshykchy(1), oekshy(1), okchokshy(1), oteeykshy(1), otolkshy(1), | |
| oykshy(1), sheekshy(1), shkshy(1), sholkshy(1) | |
| kydain(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ky(1) | |
| contains: kydainy(1) | |
| laiiin(2): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: al(1), ch(1), ol(1) | |
| contains: alaiiin(2), chlaiiin(1), olaiiin(1) | |
| laiin(13): (word length: 5 / group items: 37) | |
| length: min=6, max=12, avg=8.1 | |
| top prefixes: ch(5), ol(4), ot(4), qo(4), ok(3) | |
| contains: olaiin(52), polaiin(8), alaiin(4), cholaiin(4), dalaiin(3), | |
| otalaiin(3), qolaiin(3), okalaiin(2), okolaiin(2), solaiin(2), | |
| yfolaiin(2), chalaiin(1), chdolaiin(1), cheedalaiin(1), | |
| cheolaiin(1), dolaiin(1), folaiin(1), lchealaiin(1), ofalaiin(1), | |
| okeolaiin(1), olaiiny(1), olalaiin(1), olkalaiin(1), | |
| opcholalaiin(1), opolaiin(1), opsheolaiin(1), otlaiin(1), | |
| otolaiin(1), otolaiino(1), qokalaiin(1), qoklaiin(1), | |
| qotolaiin(1), rlaiin(1), sholaiin(1), ykolaiin(1), ylaiin(1), | |
| ytolaiin(1) | |
| lain(5): (word length: 4 / group items: 19) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: ol(3), qo(2), ot(2), to(2), al(1) | |
| contains: olain(13), alain(4), qolain(3), lolain(2), chetolain(1), | |
| dalain(1), fcheolain(1), ochepalain(1), okalain(1), olainy(1), | |
| ollain(1), otalain(1), oteolain(1), qoklain(1), shelain(1), | |
| solain(1), teeolain(1), todalain(1), tolain(1) | |
| lair(1): (word length: 4 / group items: 14) | |
| length: min=5, max=9, avg=6.9 | |
| top prefixes: ok(3), al(2), ot(2), ch(1), ol(1) | |
| contains: cholairy(2), alair(1), alairdy(1), okalair(1), oklairdy(1), | |
| okolair(1), olair(1), otalair(1), oteolair(1), polairy(1), | |
| qolair(1), solair(1), tolair(1), ykolairol(1) | |
| lal(7): (word length: 3 / group items: 51) | |
| length: min=4, max=12, avg=6.5 | |
| top prefixes: ol(8), ch(7), da(5), ot(4), al(3) | |
| contains: olal(7), okalal(6), alal(5), dalal(5), cholal(4), olaly(3), | |
| otalal(3), olaldy(2), olalor(2), opalal(2), polal(2), qolal(2), | |
| salal(2), alaldy(1), alalor(1), chalal(1), chalaly(1), | |
| chdalal(1), chelal(1), chlal(1), cholaly(1), dalaldam(1), | |
| dalalody(1), dalaly(1), darolaly(1), dcholal(1), dlal(1), | |
| echkolal(1), laldan(1), odalaly(1), ofalals(1), okolaldy(1), | |
| olalaiin(1), olald(1), olals(1), olalsy(1), oolals(1), | |
| opcholalaiin(1), opsholal(1), orolaly(1), osalal(1), otalalg(1), | |
| otalaly(1), otylal(1), polalchdy(1), qokololal(1), qotalal(1), | |
| sholalam(1), solal(1), ykeolal(1), ylaly(1) | |
| lam(6): (word length: 3 / group items: 15) | |
| length: min=4, max=8, avg=5.6 | |
| top prefixes: al(2), ot(2), ch(2), da(1), ol(1) | |
| contains: alam(8), dalam(7), olam(6), otalam(3), okalam(2), otolam(2), | |
| alamchy(1), chlam(1), cholam(1), ealam(1), opalam(1), qokalam(1), | |
| sholalam(1), talam(1), ylam(1) | |
| lar(6): (word length: 3 / group items: 46) | |
| length: min=4, max=14, avg=6.5 | |
| top prefixes: ok(5), ol(4), ch(4), ot(3), do(3) | |
| contains: olar(11), alar(6), okalar(6), dalar(5), otalar(3), chlar(2), | |
| cholar(2), dalary(2), dolar(2), okolar(2), polar(2), polarar(2), | |
| qolar(2), salar(2), aralary(1), chkalar(1), chodalar(1), dlar(1), | |
| dolaram(1), dolary(1), larorol(1), odalar(1), ofalar(1), | |
| ofaralar(1), okeolar(1), okolarm(1), okoleeolar(1), olaraly(1), | |
| olaran(1), ololary(1), ooooooooolarsr(1), opalar(1), oralar(1), | |
| oralaror(1), oteolar(1), otolarol(1), palar(1), pchallarar(1), | |
| pchdlar(1), psalar(1), qokalar(1), sholar(1), talar(1), | |
| ykeealar(1), ylar(1), ytalar(1) | |
| las(1): (word length: 3 / group items: 3) | |
| length: min=5, max=8, avg=6.3 | |
| top prefixes: ch(1), da(1), dr(1) | |
| contains: chefalas(1), dalas(1), dralas(1) | |
| lch(2): (word length: 3 / group items: 282) | |
| length: min=4, max=13, avg=7.4 | |
| top prefixes: lc(63), ol(51), qo(22), al(14), ch(14) | |
| contains: lchedy(119), lchey(45), olchedy(38), olchey(29), lchdy(18), | |
| lcheey(13), olcheey(13), qolchey(11), qolchedy(10), lcheedy(9), | |
| lcheol(8), lchy(8), olchdy(8), olcheol(8), olchy(8), solchedy(8), | |
| lchal(6), lched(6), lchor(6), polchedy(6), dalchdy(5), | |
| alchedy(4), alchey(4), dalchedy(4), lcheo(4), lchol(4), | |
| solchey(4), dalchy(3), dolchedy(3), lchar(3), lcheam(3), | |
| lcheckhy(3), lcheody(3), lcho(3), lchody(3), okalchy(3), | |
| okolchy(3), olched(3), olcheedy(3), olcheor(3), olchor(3), | |
| alchdy(2), alchor(2), cholchedy(2), cholchey(2), dlchd(2), | |
| dolchey(2), lchdain(2), lchdal(2), lcheal(2), lchedam(2), | |
| lchedar(2), lchees(2), lcheod(2), lcheor(2), lchg(2), lchl(2), | |
| lchs(2), okalchedy(2), okolchey(2), olchar(2), olchcthy(2), | |
| olchdaiin(2), olchear(2), olcheo(2), olcheody(2), ollchy(2), | |
| otolchey(2), polchdy(2), polched(2), polchey(2), qokalchdy(2), | |
| qolcheedy(2), qolcheol(2), qolchy(2), qotolcheo(2), rolchy(2), | |
| salchedy(2), solcheol(2), airorlchy(1), alchd(1), alched(1), | |
| alchedar(1), alcheey(1), alcheky(1), alches(1), alchky(1), | |
| alchl(1), alchol(1), alchy(1), chdalchdy(1), chekalchs(1), | |
| cheolchal(1), cheolchcthy(1), cheolchdaiin(1), cheolchdy(1), | |
| cheolchey(1), chkalchy(1), chlchd(1), chlchpsheey(1), | |
| cholchaiin(1), cholcham(1), dalchckhy(1), dalchd(1), dalched(1), | |
| dalcheeeky(1), dalches(1), dalchor(1), darailchedy(1), dlchy(1), | |
| dolchds(1), dolcheedy(1), dolcheey(1), dolchl(1), dolchoy(1), | |
| dolchsyckheol(1), dylches(1), dylchsody(1), folchear(1), | |
| folchey(1), folchol(1), folchor(1), kalchdy(1), kalchedy(1), | |
| kcholchdar(1), keolchey(1), kodalchy(1), kolchdy(1), kolchedy(1), | |
| kolcheey(1), kolches(1), kolchey(1), lchaiin(1), lchain(1), | |
| lcham(1), lcharar(1), lchckhy(1), lchcphedy(1), lchcthy(1), | |
| lchdol(1), lchea(1), lchealaiin(1), lchealaim(1), lchear(1), | |
| lchechdy(1), lcheckhedy(1), lcheckhey(1), lchedal(1), lchedo(1), | |
| lchedr(1), lcheed(1), lcheeey(1), lcheel(1), lcheeol(1), | |
| lcheeor(1), lcheg(1), lcheoekam(1), lcheolshedy(1), lcheos(1), | |
| lcheylchy(1), lchoar(1), lchod(1), lcholkaiin(1), lchpchdy(1), | |
| lchr(1), lchsl(1), lklcheol(1), llchey(1), llchs(1), lolchor(1), | |
| oalchdm(1), oalcheg(1), oalcheol(1), oeeolchy(1), oetalchg(1), | |
| okalchal(1), okalchdy(1), okalched(1), okalcheg(1), | |
| okalsalchey(1), okeeylchedy(1), okilcheol(1), olch(1), olcha(1), | |
| olchad(1), olchain(1), olchal(1), olcham(1), olchckhy(1), | |
| olchdar(1), olcheckhy(1), olchedaiin(1), olchedr(1), olchedyo(1), | |
| olcheear(1), olcheedar(1), olcheees(1), olcheeey(1), olcheem(1), | |
| olcheeo(1), olcheeol(1), olchees(1), olcheesey(1), olcheety(1), | |
| olchef(1), olcheky(1), olcheom(1), olcheos(1), olchesy(1), | |
| olcho(1), olchocfhy(1), olchod(1), olchoiin(1), olchokal(1), | |
| olchsy(1), ololchey(1), opalchdy(1), orlchey(1), otalchal(1), | |
| otalchy(1), otcholcheaiin(1), otcholchy(1), otealchedy(1), | |
| oteeolchor(1), otlchdain(1), otolchcthy(1), otolchd(1), | |
| otolches(1), otoralchy(1), palchar(1), palchd(1), polalchdy(1), | |
| polchal(1), polchechy(1), polcheolkain(1), polchls(1), polchs(1), | |
| polchy(1), qokairolchdy(1), qokalchal(1), qokalchar(1), | |
| qokalcheol(1), qokalchey(1), qokeeolchey(1), qoklcheey(1), | |
| qokolchedy(1), qokolchey(1), qolchdy(1), qolcheey(1), | |
| qolcheor(1), qotalchedy(1), qotolchd(1), qotolchy(1), ralchl(1), | |
| ralchs(1), ralchy(1), rarolchl(1), rchealcham(1), rolchedy(1), | |
| rolchey(1), salched(1), salchedal(1), shekalchdy(1), shlches(1), | |
| shopolchedy(1), solchd(1), solchkal(1), solchyd(1), talchos(1), | |
| tcheolchy(1), toealchs(1), tolchd(1), tolchdaiin(1), tolchedy(1), | |
| tolchor(1), tolchory(1), ylchdy(1), ylchedor(1), ylcheey(1), | |
| ylcho(1), ypolcheey(1), ytalchos(1) | |
| lchaiin(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: cholchaiin(1) | |
| lchain(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olchain(1) | |
| lchal(6): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.8 | |
| top prefixes: ch(1), ok(1), ol(1), ot(1), po(1) | |
| contains: cheolchal(1), okalchal(1), olchal(1), otalchal(1), polchal(1), | |
| qokalchal(1) | |
| lcham(1): (word length: 5 / group items: 3) | |
| length: min=6, max=10, avg=8.0 | |
| top prefixes: ch(1), ol(1), rc(1) | |
| contains: cholcham(1), olcham(1), rchealcham(1) | |
| lchar(3): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: ol(1), lc(1), pa(1), qo(1) | |
| contains: olchar(2), lcharar(1), palchar(1), qokalchar(1) | |
| lchckhy(1): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: da(1), ol(1) | |
| contains: dalchckhy(1), olchckhy(1) | |
| lchcthy(1): (word length: 7 / group items: 3) | |
| length: min=8, max=11, avg=9.7 | |
| top prefixes: ol(1), ch(1), ot(1) | |
| contains: olchcthy(2), cheolchcthy(1), otolchcthy(1) | |
| lchdain(2): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ot(1) | |
| contains: otlchdain(1) | |
| lchdy(18): (word length: 5 / group items: 16) | |
| length: min=6, max=12, avg=7.9 | |
| top prefixes: qo(3), po(2), ch(2), ol(1), da(1) | |
| contains: olchdy(8), dalchdy(5), alchdy(2), polchdy(2), qokalchdy(2), | |
| chdalchdy(1), cheolchdy(1), kalchdy(1), kolchdy(1), okalchdy(1), | |
| opalchdy(1), polalchdy(1), qokairolchdy(1), qolchdy(1), | |
| shekalchdy(1), ylchdy(1) | |
| lchea(1): (word length: 5 / group items: 8) | |
| length: min=6, max=13, avg=8.1 | |
| top prefixes: lc(5), ol(1), fo(1), ot(1) | |
| contains: lcheam(3), lcheal(2), olchear(2), folchear(1), lchealaiin(1), | |
| lchealaim(1), lchear(1), otcholcheaiin(1) | |
| lcheal(2): (word length: 6 / group items: 2) | |
| length: min=9, max=10, avg=9.5 | |
| top prefixes: lc(2) | |
| contains: lchealaiin(1), lchealaim(1) | |
| lchear(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ol(1), fo(1) | |
| contains: olchear(2), folchear(1) | |
| lcheckhy(3): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ol(1) | |
| contains: olcheckhy(1) | |
| lched(6): (word length: 5 / group items: 38) | |
| length: min=6, max=11, avg=8.0 | |
| top prefixes: lc(6), ol(5), qo(3), al(3), da(3) | |
| contains: lchedy(119), olchedy(38), qolchedy(10), solchedy(8), | |
| polchedy(6), alchedy(4), dalchedy(4), dolchedy(3), olched(3), | |
| cholchedy(2), lchedam(2), lchedar(2), okalchedy(2), polched(2), | |
| salchedy(2), alched(1), alchedar(1), dalched(1), darailchedy(1), | |
| kalchedy(1), kolchedy(1), lchedal(1), lchedo(1), lchedr(1), | |
| okalched(1), okeeylchedy(1), olchedaiin(1), olchedr(1), | |
| olchedyo(1), otealchedy(1), qokolchedy(1), qotalchedy(1), | |
| rolchedy(1), salched(1), salchedal(1), shopolchedy(1), | |
| tolchedy(1), ylchedor(1) | |
| lchedal(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sa(1) | |
| contains: salchedal(1) | |
| lchedar(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: al(1) | |
| contains: alchedar(1) | |
| lchedo(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yl(1) | |
| contains: ylchedor(1) | |
| lchedr(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olchedr(1) | |
| lchedy(119): (word length: 6 / group items: 21) | |
| length: min=7, max=11, avg=8.7 | |
| top prefixes: qo(3), ol(2), da(2), ok(2), so(1) | |
| contains: olchedy(38), qolchedy(10), solchedy(8), polchedy(6), | |
| alchedy(4), dalchedy(4), dolchedy(3), cholchedy(2), okalchedy(2), | |
| salchedy(2), darailchedy(1), kalchedy(1), kolchedy(1), | |
| okeeylchedy(1), olchedyo(1), otealchedy(1), qokolchedy(1), | |
| qotalchedy(1), rolchedy(1), shopolchedy(1), tolchedy(1) | |
| lcheed(1): (word length: 6 / group items: 5) | |
| length: min=7, max=9, avg=8.4 | |
| top prefixes: ol(2), lc(1), qo(1), do(1) | |
| contains: lcheedy(9), olcheedy(3), qolcheedy(2), dolcheedy(1), | |
| olcheedar(1) | |
| lcheedy(9): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.7 | |
| top prefixes: ol(1), qo(1), do(1) | |
| contains: olcheedy(3), qolcheedy(2), dolcheedy(1) | |
| lcheeey(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olcheeey(1) | |
| lcheeol(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olcheeol(1) | |
| lchees(2): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ol(2) | |
| contains: olchees(1), olcheesey(1) | |
| lcheey(13): (word length: 6 / group items: 8) | |
| length: min=7, max=9, avg=7.9 | |
| top prefixes: qo(2), ol(1), al(1), do(1), ko(1) | |
| contains: olcheey(13), alcheey(1), dolcheey(1), kolcheey(1), | |
| qoklcheey(1), qolcheey(1), ylcheey(1), ypolcheey(1) | |
| lcheg(1): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: oa(1), ok(1) | |
| contains: oalcheg(1), okalcheg(1) | |
| lcheo(4): (word length: 5 / group items: 22) | |
| length: min=6, max=12, avg=7.9 | |
| top prefixes: lc(7), ol(6), qo(4), so(1), lk(1) | |
| contains: lcheol(8), olcheol(8), lcheody(3), olcheor(3), lcheod(2), | |
| lcheor(2), olcheo(2), olcheody(2), qolcheol(2), qotolcheo(2), | |
| solcheol(2), lcheoekam(1), lcheolshedy(1), lcheos(1), | |
| lklcheol(1), oalcheol(1), okilcheol(1), olcheom(1), olcheos(1), | |
| polcheolkain(1), qokalcheol(1), qolcheor(1) | |
| lcheod(2): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: lc(1), ol(1) | |
| contains: lcheody(3), olcheody(2) | |
| lcheody(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olcheody(2) | |
| lcheol(8): (word length: 6 / group items: 9) | |
| length: min=7, max=12, avg=9.0 | |
| top prefixes: qo(2), ol(1), so(1), lc(1), lk(1) | |
| contains: olcheol(8), qolcheol(2), solcheol(2), lcheolshedy(1), | |
| lklcheol(1), oalcheol(1), okilcheol(1), polcheolkain(1), | |
| qokalcheol(1) | |
| lcheor(2): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ol(1), qo(1) | |
| contains: olcheor(3), qolcheor(1) | |
| lcheos(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olcheos(1) | |
| lchey(45): (word length: 5 / group items: 22) | |
| length: min=6, max=11, avg=7.8 | |
| top prefixes: qo(4), ol(2), ch(2), ok(2), al(1) | |
| contains: olchey(29), qolchey(11), alchey(4), solchey(4), cholchey(2), | |
| dolchey(2), okolchey(2), otolchey(2), polchey(2), cheolchey(1), | |
| folchey(1), keolchey(1), kolchey(1), lcheylchy(1), llchey(1), | |
| okalsalchey(1), ololchey(1), orlchey(1), qokalchey(1), | |
| qokeeolchey(1), qokolchey(1), rolchey(1) | |
| lchg(2): (word length: 4 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: oe(1) | |
| contains: oetalchg(1) | |
| lchl(2): (word length: 4 / group items: 5) | |
| length: min=5, max=8, avg=6.4 | |
| top prefixes: ra(2), al(1), do(1), po(1) | |
| contains: alchl(1), dolchl(1), polchls(1), ralchl(1), rarolchl(1) | |
| lcho(3): (word length: 4 / group items: 25) | |
| length: min=5, max=10, avg=6.8 | |
| top prefixes: lc(6), ol(6), al(2), fo(2), to(2) | |
| contains: lchor(6), lchol(4), lchody(3), olchor(3), alchor(2), | |
| alchol(1), dalchor(1), dolchoy(1), folchol(1), folchor(1), | |
| lchoar(1), lchod(1), lcholkaiin(1), lolchor(1), olcho(1), | |
| olchocfhy(1), olchod(1), olchoiin(1), olchokal(1), oteeolchor(1), | |
| talchos(1), tolchor(1), tolchory(1), ylcho(1), ytalchos(1) | |
| lchod(1): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: lc(1), ol(1) | |
| contains: lchody(3), olchod(1) | |
| lchol(4): (word length: 5 / group items: 3) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: al(1), fo(1), lc(1) | |
| contains: alchol(1), folchol(1), lcholkaiin(1) | |
| lchor(6): (word length: 5 / group items: 8) | |
| length: min=6, max=10, avg=7.2 | |
| top prefixes: to(2), ol(1), al(1), da(1), fo(1) | |
| contains: olchor(3), alchor(2), dalchor(1), folchor(1), lolchor(1), | |
| oteeolchor(1), tolchor(1), tolchory(1) | |
| lchs(2): (word length: 4 / group items: 9) | |
| length: min=5, max=13, avg=7.4 | |
| top prefixes: ch(1), do(1), dy(1), lc(1), ll(1) | |
| contains: chekalchs(1), dolchsyckheol(1), dylchsody(1), lchsl(1), | |
| llchs(1), olchsy(1), polchs(1), ralchs(1), toealchs(1) | |
| lchy(8): (word length: 4 / group items: 22) | |
| length: min=5, max=9, avg=7.1 | |
| top prefixes: ot(3), ol(2), ok(2), qo(2), da(1) | |
| contains: olchy(8), dalchy(3), okalchy(3), okolchy(3), ollchy(2), | |
| qolchy(2), rolchy(2), airorlchy(1), alchy(1), chkalchy(1), | |
| dlchy(1), kodalchy(1), lcheylchy(1), oeeolchy(1), otalchy(1), | |
| otcholchy(1), otoralchy(1), polchy(1), qotolchy(1), ralchy(1), | |
| solchyd(1), tcheolchy(1) | |
| ldaiin(3): (word length: 6 / group items: 12) | |
| length: min=7, max=9, avg=8.1 | |
| top prefixes: ch(2), ol(1), al(1), da(1), do(1) | |
| contains: oldaiin(9), aldaiin(3), daldaiin(3), doldaiin(2), chldaiin(1), | |
| choldaiin(1), foldaiin(1), kaldaiin(1), opaldaiin(1), | |
| poldaiin(1), saldaiin(1), sholdaiin(1) | |
| ldain(2): (word length: 5 / group items: 5) | |
| length: min=6, max=9, avg=7.6 | |
| top prefixes: ol(1), ch(1), da(1), ok(1), ta(1) | |
| contains: oldain(2), cheoldain(1), daildain(1), okaldain(1), taldain(1) | |
| ldaly(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okoldaly(1) | |
| ldar(5): (word length: 4 / group items: 12) | |
| length: min=5, max=8, avg=6.4 | |
| top prefixes: oa(2), qo(2), ol(1), al(1), ch(1) | |
| contains: oldar(6), aldar(3), choldar(1), ctholdar(1), daldar(1), | |
| koldarod(1), lldar(1), oaldar(1), oaldary(1), qokaldar(1), | |
| qoldar(1), taldar(1) | |
| ldo(1): (word length: 3 / group items: 8) | |
| length: min=4, max=9, avg=6.6 | |
| top prefixes: ld(1), ol(1), do(1), of(1), ok(1) | |
| contains: ldol(2), oldor(2), doldom(1), ofaldo(1), okoldody(1), | |
| opdaildo(1), otoldos(1), pcheoldom(1) | |
| ldy(25): (word length: 3 / group items: 103) | |
| length: min=4, max=11, avg=6.7 | |
| top prefixes: ch(10), sh(8), qo(7), ot(6), ok(6) | |
| contains: oldy(28), daldy(17), aldy(14), otoldy(11), choldy(10), | |
| okaldy(9), qokaldy(9), okoldy(8), sholdy(8), koldy(7), otaldy(7), | |
| cheoldy(5), ytoldy(5), kaldy(4), aildy(3), qokoldy(3), | |
| chkoldy(2), cpholdy(2), doldy(2), fcholdy(2), lldy(2), loldy(2), | |
| okeoldy(2), olaldy(2), ololdy(2), otaraldy(2), oteoldy(2), | |
| poldy(2), psheoldy(2), saldy(2), sheoldy(2), shldy(2), toldy(2), | |
| ackaldy(1), aiildy(1), airaldy(1), alaldy(1), aldydy(1), | |
| aloldy(1), chdaldy(1), cheeoldy(1), chodoldy(1), choetchaldy(1), | |
| chokoldy(1), chtaldy(1), chypaldy(1), ckholdy(1), cphaldy(1), | |
| cthaildy(1), ctholdy(1), daiildy(1), dainaldy(1), daisoldy(1), | |
| dchdaldy(1), dcheoldy(1), dcholdy(1), dsholdy(1), kchaldy(1), | |
| kchdaldy(1), koltoldy(1), ldyr(1), lkaldy(1), lkeoldy(1), | |
| lkldy(1), ocholdy(1), odaldy(1), ofsholdy(1), okaildy(1), | |
| okolaldy(1), okoraldy(1), olkeeoldy(1), olldy(1), opaldy(1), | |
| opchaldy(1), opcholdy(1), orsheoldy(1), oteoaldy(1), otoldyl(1), | |
| qekeoldy(1), qkholdy(1), qkoldy(1), qokealdy(1), qoldy(1), | |
| qooldy(1), qotaldy(1), qotoldy(1), raldy(1), raraldy(1), | |
| shaldy(1), shdaldy(1), shedaldy(1), sheeoldy(1), shoaldy(1), | |
| soldy(1), tsholdy(1), yfoldy(1), ykaldy(1), ykeoldy(1), | |
| ykoldy(1), ypcholdy(1), yshealdy(1), yteeoldy(1), yteoldy(1) | |
| ledy(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: do(1) | |
| contains: doledy(1) | |
| leeey(1): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ol(1), do(1), yr(1) | |
| contains: oleeey(3), doleeey(1), yroleeey(1) | |
| leeo(1): (word length: 4 / group items: 4) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: ol(2), ok(1), po(1) | |
| contains: oleeol(2), okoleeolar(1), oleeo(1), poleeol(1) | |
| les(1): (word length: 3 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: cp(1) | |
| contains: cphodales(1) | |
| lfar(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ol(1) | |
| contains: olfar(1) | |
| lfchdy(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ko(1) | |
| contains: kolfchdy(1) | |
| lfchedy(2): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ol(1), do(1) | |
| contains: olfchedy(4), dolfchedy(1) | |
| lfchy(2): (word length: 5 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: al(1), ch(1), da(1) | |
| contains: alolfchy(1), cholfchy(1), dalfchy(1) | |
| lkaiin(49): (word length: 6 / group items: 15) | |
| length: min=7, max=12, avg=9.0 | |
| top prefixes: qo(2), ol(1), al(1), ch(1), so(1) | |
| contains: olkaiin(31), alkaiin(5), cholkaiin(4), solkaiin(3), | |
| lolkaiin(2), opalkaiin(2), qolkaiin(2), ylkaiin(2), | |
| cpholkaiin(1), daiiiolkaiin(1), lcholkaiin(1), qoolkaiin(1), | |
| shalkaiin(1), tcholkaiin(1), ycheealkaiin(1) | |
| lkaiir(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olkaiir(1) | |
| lkaim(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1) | |
| contains: olkaim(1) | |
| lkain(35): (word length: 5 / group items: 17) | |
| length: min=6, max=12, avg=7.9 | |
| top prefixes: qo(3), ch(3), ol(1), al(1), so(1) | |
| contains: olkain(33), alkain(7), qolkain(5), solkain(3), cholkain(2), | |
| tolkain(2), chalkain(1), cheolkain(1), dalkain(1), dolkain(1), | |
| orolkain(1), otalkain(1), polcheolkain(1), qokolkain(1), | |
| qopolkain(1), sheolkain(1), ykalkain(1) | |
| lkair(4): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: ol(1), al(1), ch(1), lo(1), sh(1) | |
| contains: olkair(4), alkair(1), chdalkair(1), lolkair(1), sholkair(1), | |
| yshealkair(1) | |
| lkal(5): (word length: 4 / group items: 19) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: ol(4), da(2), lk(2), pc(2), qo(2) | |
| contains: olkal(11), cholkal(3), kalkal(2), alkal(1), dalkal(1), | |
| dalkalytam(1), dlkal(1), lkaldy(1), lkalol(1), olkalaiin(1), | |
| olkalol(1), olkaly(1), pcheolkal(1), pcholkal(1), qoolkal(1), | |
| qotlolkal(1), sholkal(1), tolkal(1), ytolkal(1) | |
| lkalol(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olkalol(1) | |
| lkam(7): (word length: 4 / group items: 5) | |
| length: min=5, max=7, avg=5.6 | |
| top prefixes: ol(1), al(1), lk(1), op(1), ro(1) | |
| contains: olkam(9), alkam(6), lkamo(1), opalkam(1), rolkam(1) | |
| lkan(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: al(1) | |
| contains: alkan(1) | |
| lkar(30): (word length: 4 / group items: 15) | |
| length: min=5, max=10, avg=7.2 | |
| top prefixes: ch(3), ol(2), lk(2), al(1), da(1) | |
| contains: olkar(19), alkar(4), cholkar(3), dalkar(3), chalkar(2), | |
| cheolkary(1), kaolkar(1), kolkar(1), lkarchees(1), lkarshar(1), | |
| olkardam(1), opalkar(1), otshealkar(1), qolkary(1), sholkar(1) | |
| lkch(1): (word length: 4 / group items: 35) | |
| length: min=5, max=12, avg=7.5 | |
| top prefixes: lk(11), ol(8), ch(3), qo(2), so(2) | |
| contains: lkchedy(16), lkchey(8), olkchedy(6), lkchdy(5), olkchdy(4), | |
| olkchey(4), olkchy(4), lkcheo(3), lkches(2), alkchdy(1), | |
| cholkched(1), cholkcheol(1), cholkchy(1), dolkchy(1), lkchaly(1), | |
| lkcheol(1), lkchol(1), lkchor(1), lkchs(1), lkchy(1), | |
| okeeolkcheey(1), olkchdal(1), olkcho(1), olkchokeedy(1), | |
| olkchs(1), otalkchy(1), pcholkchdy(1), polkchy(1), qokolkchdy(1), | |
| qolkchy(1), ralkchedy(1), sheolkchy(1), solkchedy(1), solkchy(1), | |
| tolkchdy(1) | |
| lkchdy(5): (word length: 6 / group items: 5) | |
| length: min=7, max=10, avg=8.4 | |
| top prefixes: ol(1), al(1), pc(1), qo(1), to(1) | |
| contains: olkchdy(4), alkchdy(1), pcholkchdy(1), qokolkchdy(1), | |
| tolkchdy(1) | |
| lkchedy(16): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.7 | |
| top prefixes: ol(1), ra(1), so(1) | |
| contains: olkchedy(6), ralkchedy(1), solkchedy(1) | |
| lkcheo(3): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: ch(1), lk(1) | |
| contains: cholkcheol(1), lkcheol(1) | |
| lkcheol(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: cholkcheol(1) | |
| lkchey(8): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olkchey(4) | |
| lkchs(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1) | |
| contains: olkchs(1) | |
| lkchy(1): (word length: 5 / group items: 8) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: ol(1), ch(1), do(1), ot(1), po(1) | |
| contains: olkchy(4), cholkchy(1), dolkchy(1), otalkchy(1), polkchy(1), | |
| qolkchy(1), sheolkchy(1), solkchy(1) | |
| lkeain(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: al(1) | |
| contains: alkeain(1) | |
| lkeal(2): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: lk(1), ol(1), sh(1) | |
| contains: lkealy(1), olkeal(1), sheolkeal(1) | |
| lkech(1): (word length: 5 / group items: 8) | |
| length: min=6, max=10, avg=7.4 | |
| top prefixes: lk(6), ol(1), te(1) | |
| contains: lkechedy(3), lkechey(2), olkechy(2), lkechdy(1), lkeches(1), | |
| lkechor(1), lkechy(1), teolkechey(1) | |
| lkechey(2): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: te(1) | |
| contains: teolkechey(1) | |
| lkechy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olkechy(2) | |
| lked(1): (word length: 4 / group items: 22) | |
| length: min=5, max=10, avg=7.3 | |
| top prefixes: lk(8), ol(3), ch(2), so(1), al(1) | |
| contains: lkedy(29), olkedy(27), solkedy(3), alkedy(2), dalkedy(2), | |
| lkedain(2), lkedal(2), olkedaiin(2), chedalkedy(1), cheolkedy(1), | |
| dolkedy(1), kolkedy(1), lkedar(1), lkedeed(1), lkedey(1), | |
| lkedlkey(1), lkedshedy(1), lolkedy(1), olked(1), qolkedy(1), | |
| sheolkedy(1), teolkedain(1) | |
| lkedain(2): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: te(1) | |
| contains: teolkedain(1) | |
| lkedy(29): (word length: 5 / group items: 11) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: ch(2), ol(1), so(1), al(1), da(1) | |
| contains: olkedy(27), solkedy(3), alkedy(2), dalkedy(2), chedalkedy(1), | |
| cheolkedy(1), dolkedy(1), kolkedy(1), lolkedy(1), qolkedy(1), | |
| sheolkedy(1) | |
| lkeeal(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olkeeal(1) | |
| lkeechey(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ol(1) | |
| contains: olkeechey(1) | |
| lkeed(3): (word length: 5 / group items: 28) | |
| length: min=6, max=10, avg=8.0 | |
| top prefixes: lk(8), ol(4), ch(3), qo(2), sh(2) | |
| contains: olkeedy(42), lkeedy(41), qolkeedy(7), solkeedy(5), alkeedy(4), | |
| cholkeedy(3), cheolkeedy(2), salkeedy(2), sholkeedy(2), | |
| chalkeedy(1), dolkeedy(1), lkeeda(1), lkeedain(1), lkeedal(1), | |
| lkeedar(1), lkeede(1), lkeedol(1), lkeedor(1), olkeed(1), | |
| olkeedain(1), olkeedal(1), palkeedy(1), pcholkeedy(1), | |
| polkeedal(1), qoolkeedy(1), qsolkeedy(1), rolkeedy(1), | |
| sheolkeedy(1) | |
| lkeeda(1): (word length: 6 / group items: 6) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: lk(3), ol(2), po(1) | |
| contains: lkeedain(1), lkeedal(1), lkeedar(1), olkeedain(1), | |
| olkeedal(1), polkeedal(1) | |
| lkeedain(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ol(1) | |
| contains: olkeedain(1) | |
| lkeedal(1): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ol(1), po(1) | |
| contains: olkeedal(1), polkeedal(1) | |
| lkeedy(41): (word length: 6 / group items: 16) | |
| length: min=7, max=10, avg=8.6 | |
| top prefixes: ch(3), qo(2), sh(2), ol(1), so(1) | |
| contains: olkeedy(42), qolkeedy(7), solkeedy(5), alkeedy(4), | |
| cholkeedy(3), cheolkeedy(2), salkeedy(2), sholkeedy(2), | |
| chalkeedy(1), dolkeedy(1), palkeedy(1), pcholkeedy(1), | |
| qoolkeedy(1), qsolkeedy(1), rolkeedy(1), sheolkeedy(1) | |
| lkeeed(1): (word length: 6 / group items: 7) | |
| length: min=7, max=10, avg=8.4 | |
| top prefixes: lk(2), ol(2), ch(2), to(1) | |
| contains: lkeeedy(4), olkeeedy(3), chalkeeedy(1), cholkeeedy(1), | |
| lkeeedam(1), olkeeed(1), tolkeeedy(1) | |
| lkeeedy(4): (word length: 7 / group items: 4) | |
| length: min=8, max=10, avg=9.2 | |
| top prefixes: ch(2), ol(1), to(1) | |
| contains: olkeeedy(3), chalkeeedy(1), cholkeeedy(1), tolkeeedy(1) | |
| lkeees(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olkeees(1) | |
| lkeeey(8): (word length: 6 / group items: 5) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ol(1), ch(1), da(1), po(1), qo(1) | |
| contains: olkeeey(9), cholkeeey(2), dalkeeey(1), polkeeey(1), | |
| qolkeeey(1) | |
| lkeeo(4): (word length: 5 / group items: 15) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: ol(8), lk(5), al(1), po(1) | |
| contains: olkeeody(7), lkeeody(6), lkeeol(4), olkeeo(4), lkeeor(2), | |
| olkeeor(2), alkeeol(1), lkeeoar(1), lkeeos(1), olkeeodal(1), | |
| olkeeol(1), olkeeoldy(1), olkeeoly(1), olkeeos(1), polkeeo(1) | |
| lkeeody(6): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olkeeody(7) | |
| lkeeol(4): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: ol(3), al(1) | |
| contains: alkeeol(1), olkeeol(1), olkeeoldy(1), olkeeoly(1) | |
| lkeeor(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olkeeor(2) | |
| lkeeos(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olkeeos(1) | |
| lkees(1): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.8 | |
| top prefixes: ol(2), lk(2) | |
| contains: olkees(3), lkeeshdy(1), lkeeshedy(1), olkeeshy(1) | |
| lkeey(41): (word length: 5 / group items: 16) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: ch(4), ol(3), qo(2), so(1), al(1) | |
| contains: olkeey(40), qolkeey(6), solkeey(4), alkeey(1), arolkeey(1), | |
| chalkeey(1), cheolkeey(1), cholkeey(1), choolkeey(1), | |
| olkeeycthy(1), olkeeyr(1), oteeolkeey(1), polkeey(1), | |
| qoolkeey(1), rolkeey(1), sheolkeey(1) | |
| lkeo(3): (word length: 4 / group items: 15) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: lk(7), ol(4), ch(1), lo(1), op(1) | |
| contains: olkeol(7), lkeol(5), lkeody(4), olkeody(2), cholkeod(1), | |
| lkeodaiin(1), lkeodain(1), lkeoldy(1), lkeopol(1), lkeor(1), | |
| lolkeol(1), olkeor(1), olkeoy(1), opolkeor(1), tolkeol(1) | |
| lkeody(4): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olkeody(2) | |
| lkeol(5): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.8 | |
| top prefixes: ol(1), lk(1), lo(1), to(1) | |
| contains: olkeol(7), lkeoldy(1), lolkeol(1), tolkeol(1) | |
| lkeor(1): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ol(1), op(1) | |
| contains: olkeor(1), opolkeor(1) | |
| lkeshdy(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qolkeshdy(1) | |
| lkey(7): (word length: 4 / group items: 8) | |
| length: min=5, max=9, avg=6.6 | |
| top prefixes: ol(1), al(1), lk(1), ok(1), qo(1) | |
| contains: olkey(12), alkey(2), lkedlkey(1), okeolkey(1), qolkey(1), | |
| solkey(1), tolkey(1), ykeealkey(1) | |
| lkl(9): (word length: 3 / group items: 6) | |
| length: min=4, max=8, avg=5.5 | |
| top prefixes: lk(3), ol(1), sh(1), ta(1) | |
| contains: lklcheol(1), lkldy(1), lklor(1), olkl(1), shalkl(1), talkl(1) | |
| lko(3): (word length: 3 / group items: 11) | |
| length: min=4, max=7, avg=5.2 | |
| top prefixes: lk(4), ol(4), al(1), op(1), yo(1) | |
| contains: lkol(5), olkol(5), lkor(4), olkor(4), alkol(1), lkodol(1), | |
| lkody(1), olko(1), olkory(1), opolkod(1), yolkol(1) | |
| lkol(5): (word length: 4 / group items: 3) | |
| length: min=5, max=6, avg=5.3 | |
| top prefixes: ol(1), al(1), yo(1) | |
| contains: olkol(5), alkol(1), yolkol(1) | |
| lkor(4): (word length: 4 / group items: 2) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: ol(2) | |
| contains: olkor(4), olkory(1) | |
| lkshedy(4): (word length: 7 / group items: 2) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: ch(1), ol(1) | |
| contains: cholkshedy(1), olkshedy(1) | |
| lkshey(2): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: ol(1), qo(1), to(1) | |
| contains: olkshey(1), qolkshey(1), tolkshey(1) | |
| lky(17): (word length: 3 / group items: 21) | |
| length: min=4, max=9, avg=5.9 | |
| top prefixes: ch(3), qo(2), ot(2), sh(2), ol(1) | |
| contains: olky(22), cholky(4), qolky(4), alky(3), pcholky(2), arolky(1), | |
| chalolky(1), cheolky(1), dalky(1), kolky(1), okylky(1), | |
| otalky(1), otolky(1), polky(1), qlky(1), qokolky(1), ralky(1), | |
| shalky(1), shdalky(1), solky(1), ykairolky(1) | |
| lldy(2): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ol(1) | |
| contains: olldy(1) | |
| llo(1): (word length: 3 / group items: 4) | |
| length: min=4, max=5, avg=4.5 | |
| top prefixes: ll(3), ch(1) | |
| contains: chllo(1), llod(1), llor(1), llory(1) | |
| llor(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ll(1) | |
| contains: llory(1) | |
| loaiin(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ol(1), ot(1) | |
| contains: oloaiin(1), otoloaiin(1) | |
| loar(1): (word length: 4 / group items: 2) | |
| length: min=5, max=9, avg=7.0 | |
| top prefixes: lo(1), ot(1) | |
| contains: loary(1), otoloaram(1) | |
| lochey(1): (word length: 6 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ks(1) | |
| contains: ksholochey(1) | |
| lod(2): (word length: 3 / group items: 32) | |
| length: min=4, max=9, avg=6.6 | |
| top prefixes: lo(5), ot(5), al(4), da(2), qo(2) | |
| contains: alody(6), cholody(5), lodaiin(3), lody(3), okalody(3), | |
| alod(2), lodar(2), alodam(1), alodar(1), dalalody(1), dalody(1), | |
| dlod(1), dolody(1), llod(1), lodaly(1), loralody(1), olody(1), | |
| orolodain(1), otaiilody(1), otalod(1), otalody(1), otesalod(1), | |
| otolodal(1), qolody(1), qotalody(1), sheeolody(1), talody(1), | |
| tchalody(1), ychealod(1), ykolody(1), yokalod(1), ytalody(1) | |
| lodar(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: al(1) | |
| contains: alodar(1) | |
| lody(3): (word length: 4 / group items: 17) | |
| length: min=5, max=9, avg=7.0 | |
| top prefixes: da(2), ot(2), qo(2), al(1), ch(1) | |
| contains: alody(6), cholody(5), okalody(3), dalalody(1), dalody(1), | |
| dolody(1), loralody(1), olody(1), otaiilody(1), otalody(1), | |
| qolody(1), qotalody(1), sheeolody(1), talody(1), tchalody(1), | |
| ykolody(1), ytalody(1) | |
| loeees(2): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: xa(1) | |
| contains: xaloeees(1) | |
| loees(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: al(1) | |
| contains: aloees(2) | |
| loiiin(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: al(1) | |
| contains: aloiiin(1) | |
| loiin(4): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ol(1), al(1), op(1), sa(1), sh(1) | |
| contains: oloiin(5), aloiin(2), opoloiin(1), saloiin(1), sholoiin(1), | |
| soloiin(1) | |
| lokain(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: yk(1) | |
| contains: ykalokain(1) | |
| lokar(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1) | |
| contains: olokar(1) | |
| lokeedy(3): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: to(1) | |
| contains: tolokeedy(1) | |
| lol(44): (word length: 3 / group items: 69) | |
| length: min=4, max=9, avg=6.4 | |
| top prefixes: lo(13), ch(9), ol(8), al(8), qo(5) | |
| contains: olol(18), alol(9), dalol(7), loly(7), aloly(3), okalol(3), | |
| alols(2), cholol(2), cholols(2), lolain(2), loldy(2), | |
| lolkaiin(2), okolol(2), ololdy(2), olols(2), salol(2), | |
| sheolol(2), tcholol(2), alold(1), aloldy(1), alolfchy(1), | |
| alolor(1), alolshedy(1), chalolky(1), chaloly(1), chealol(1), | |
| cheodalol(1), chlol(1), chololer(1), chololy(1), daldalol(1), | |
| dalols(1), dolol(1), ekeolol(1), lkalol(1), lolchor(1), | |
| lolkair(1), lolkedy(1), lolkeol(1), lolol(1), lolom(1), lolor(1), | |
| lols(1), lolsaiiin(1), okeolol(1), olkalol(1), ololary(1), | |
| ololchey(1), ololdal(1), ololy(1), opchealol(1), oraloly(1), | |
| otedalol(1), otlol(1), otolol(1), otololees(1), qokalol(1), | |
| qokololal(1), qolol(1), qotlolkal(1), qotolol(1), salols(1), | |
| shokalol(1), sholol(1), solol(1), talol(1), tolol(1), tsholol(1), | |
| ypolol(1) | |
| loldy(2): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1), al(1) | |
| contains: ololdy(2), aloldy(1) | |
| lolor(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: al(1) | |
| contains: alolor(1) | |
| lols(1): (word length: 4 / group items: 7) | |
| length: min=5, max=9, avg=6.7 | |
| top prefixes: al(2), ch(1), ol(1), da(1), lo(1) | |
| contains: alols(2), cholols(2), olols(2), alolshedy(1), dalols(1), | |
| lolsaiiin(1), salols(1) | |
| loly(7): (word length: 4 / group items: 5) | |
| length: min=5, max=7, avg=6.2 | |
| top prefixes: ch(2), al(1), ol(1), or(1) | |
| contains: aloly(3), chaloly(1), chololy(1), ololy(1), oraloly(1) | |
| lom(5): (word length: 3 / group items: 12) | |
| length: min=4, max=9, avg=5.9 | |
| top prefixes: ot(3), qo(2), al(1), ol(1), da(1) | |
| contains: alom(6), olom(3), dalom(2), fsholom(1), lolom(1), otalom(1), | |
| otcheolom(1), otolom(1), qokalom(1), qotalom(1), ralom(1), | |
| shalom(1) | |
| lor(43): (word length: 3 / group items: 62) | |
| length: min=4, max=10, avg=6.1 | |
| top prefixes: ch(7), lo(7), ol(6), ok(6), al(4) | |
| contains: olor(31), dalor(8), alor(7), cholor(5), otalor(4), okalor(3), | |
| cheolor(2), dolor(2), lory(2), okolor(2), olalor(2), opalor(2), | |
| opcholor(2), otolor(2), polor(2), qokalor(2), alalor(1), | |
| alolor(1), alory(1), arolor(1), chalor(1), chdalor(1), | |
| chealor(1), chlor(1), choloro(1), dalorain(1), dalory(1), | |
| folor(1), folorarom(1), keolor(1), kolor(1), ldalor(1), lklor(1), | |
| llor(1), llory(1), lolor(1), loraiin(1), loral(1), loralody(1), | |
| loroin(1), loror(1), ltalor(1), okedalor(1), okeolor(1), | |
| oklor(1), okylor(1), oloraiin(1), olord(1), oloro(1), olorol(1), | |
| otasodlory(1), pcharalor(1), pcholor(1), qokaloro(1), qopalor(1), | |
| sheolor(1), sholor(1), solor(1), talor(1), tolor(1), ykolor(1), | |
| ylor(1) | |
| loraiin(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: oloraiin(1) | |
| loral(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: lo(1) | |
| contains: loralody(1) | |
| lory(2): (word length: 4 / group items: 4) | |
| length: min=5, max=10, avg=6.5 | |
| top prefixes: al(1), da(1), ll(1), ot(1) | |
| contains: alory(1), dalory(1), llory(1), otasodlory(1) | |
| los(5): (word length: 3 / group items: 16) | |
| length: min=4, max=10, avg=6.5 | |
| top prefixes: al(3), lo(3), ol(1), ar(1), ch(1) | |
| contains: alos(2), olos(2), aldalosam(1), alosheey(1), aralos(1), | |
| chedalos(1), dlos(1), kalos(1), losaiin(1), losair(1), losdy(1), | |
| otolosheey(1), poalosy(1), pshodalos(1), qokalos(1), tolos(1) | |
| loty(4): (word length: 4 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ot(1), ro(1) | |
| contains: otoloty(1), roloty(1) | |
| loy(1): (word length: 3 / group items: 4) | |
| length: min=4, max=7, avg=5.2 | |
| top prefixes: ol(1), al(1), de(1), ee(1) | |
| contains: oloy(2), aloy(1), dedloy(1), eeeoloy(1) | |
| lpchdy(2): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: al(1), ol(1) | |
| contains: alpchdy(1), olpchdy(1) | |
| lpchedy(6): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olpchedy(4) | |
| lpchey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olpchey(2) | |
| lraiin(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ok(1), ol(1) | |
| contains: okolraiin(1), olraiin(1) | |
| lraly(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: cholraly(1) | |
| lror(1): (word length: 4 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ch(1), cp(1) | |
| contains: chealror(1), cpholrory(1) | |
| lsaiin(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olsaiin(2) | |
| lsais(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: po(1) | |
| contains: polsaisy(1) | |
| lsan(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ll(1) | |
| contains: llsan(1) | |
| lsar(1): (word length: 4 / group items: 3) | |
| length: min=5, max=7, avg=6.3 | |
| top prefixes: ot(2), ol(1) | |
| contains: olsar(2), otalsar(1), otolsar(1) | |
| lsh(1): (word length: 3 / group items: 132) | |
| length: min=4, max=11, avg=7.2 | |
| top prefixes: ls(38), ol(18), qo(9), al(7), po(7) | |
| contains: lshedy(42), olshedy(23), lshey(18), olshey(11), lsheey(8), | |
| olsheey(7), lsheedy(6), alshey(4), olshdy(4), olsheol(4), | |
| dalshdy(3), lshed(3), lsheody(3), lshy(3), okolshy(3), olsho(3), | |
| olshy(3), otalshedy(3), polshy(3), solshedy(3), alshy(2), | |
| dolshedy(2), lshdy(2), lsheckhy(2), lsheol(2), lshety(2), | |
| lsho(2), olshed(2), olsheor(2), qolshedy(2), qolsheedy(2), | |
| qolshey(2), qolshy(2), alolshedy(1), alshdr(1), alshdy(1), | |
| alshedy(1), alshees(1), cheolshy(1), chetalshy(1), cholsho(1), | |
| dalshal(1), dalshedo(1), dalshedy(1), dalshey(1), dalshy(1), | |
| dlshedy(1), dolshed(1), dolshy(1), folshody(1), kalshey(1), | |
| keeolshey(1), kolshd(1), kolshes(1), kolsho(1), lcheolshedy(1), | |
| lshaiir(1), lshalshy(1), lshar(1), lshckhy(1), lshcthy(1), | |
| lshd(1), lshdaiin(1), lshdar(1), lshdyqo(1), lshechy(1), | |
| lsheckhedy(1), lshedary(1), lshee(1), lsheedain(1), lshees(1), | |
| lsheetal(1), lsheg(1), lshekain(1), lsheo(1), lsheok(1), | |
| lsheotey(1), lshes(1), lshl(1), lshodair(1), lshody(1), lshor(1), | |
| ocholshod(1), okalshdy(1), okalshey(1), okeolshey(1), | |
| oksholshol(1), olshalsy(1), olsheed(1), olsheedy(1), | |
| olsheeosol(1), olshees(1), olsheod(1), olsheody(1), olshly(1), | |
| olshty(1), opalshedy(1), otalshdy(1), otalshy(1), otolsheeos(1), | |
| palshsar(1), pdalshor(1), poalshsal(1), polshdal(1), polshdy(1), | |
| polshol(1), polshor(1), posalshy(1), qokalsh(1), qokalshedy(1), | |
| qolshdy(1), qolsheey(1), qotalshy(1), rolsheedy(1), rolshey(1), | |
| salshcthdy(1), sheolshody(1), sholshdy(1), solshed(1), | |
| solshey(1), talshdy(1), tcholshol(1), teolshy(1), tolsheo(1), | |
| tolsheol(1), tolshey(1), tolshosor(1), tolshy(1), torolshsdy(1), | |
| ylshey(1), yolsheey(1), ysholshy(1) | |
| lshd(1): (word length: 4 / group items: 16) | |
| length: min=5, max=8, avg=6.9 | |
| top prefixes: ls(4), al(2), po(2), ol(1), da(1) | |
| contains: olshdy(4), dalshdy(3), lshdy(2), alshdr(1), alshdy(1), | |
| kolshd(1), lshdaiin(1), lshdar(1), lshdyqo(1), okalshdy(1), | |
| otalshdy(1), polshdal(1), polshdy(1), qolshdy(1), sholshdy(1), | |
| talshdy(1) | |
| lshdy(2): (word length: 5 / group items: 10) | |
| length: min=6, max=8, avg=7.1 | |
| top prefixes: ol(1), da(1), al(1), ls(1), ok(1) | |
| contains: olshdy(4), dalshdy(3), alshdy(1), lshdyqo(1), okalshdy(1), | |
| otalshdy(1), polshdy(1), qolshdy(1), sholshdy(1), talshdy(1) | |
| lshed(3): (word length: 5 / group items: 18) | |
| length: min=6, max=11, avg=7.9 | |
| top prefixes: ls(2), ol(2), so(2), do(2), qo(2) | |
| contains: lshedy(42), olshedy(23), otalshedy(3), solshedy(3), | |
| dolshedy(2), olshed(2), qolshedy(2), alolshedy(1), alshedy(1), | |
| dalshedo(1), dalshedy(1), dlshedy(1), dolshed(1), lcheolshedy(1), | |
| lshedary(1), opalshedy(1), qokalshedy(1), solshed(1) | |
| lshedy(42): (word length: 6 / group items: 12) | |
| length: min=7, max=11, avg=8.4 | |
| top prefixes: qo(2), al(2), ol(1), ot(1), so(1) | |
| contains: olshedy(23), otalshedy(3), solshedy(3), dolshedy(2), | |
| qolshedy(2), alolshedy(1), alshedy(1), dalshedy(1), dlshedy(1), | |
| lcheolshedy(1), opalshedy(1), qokalshedy(1) | |
| lshee(1): (word length: 5 / group items: 16) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: ls(5), ol(5), qo(2), al(1), ot(1) | |
| contains: lsheey(8), olsheey(7), lsheedy(6), qolsheedy(2), alshees(1), | |
| lsheedain(1), lshees(1), lsheetal(1), olsheed(1), olsheedy(1), | |
| olsheeosol(1), olshees(1), otolsheeos(1), qolsheey(1), | |
| rolsheedy(1), yolsheey(1) | |
| lsheedy(6): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.7 | |
| top prefixes: qo(1), ol(1), ro(1) | |
| contains: qolsheedy(2), olsheedy(1), rolsheedy(1) | |
| lshees(1): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: al(1), ol(1) | |
| contains: alshees(1), olshees(1) | |
| lsheey(8): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: ol(1), qo(1), yo(1) | |
| contains: olsheey(7), qolsheey(1), yolsheey(1) | |
| lsheo(1): (word length: 5 / group items: 10) | |
| length: min=6, max=8, avg=7.1 | |
| top prefixes: ol(4), ls(4), to(2) | |
| contains: olsheol(4), lsheody(3), lsheol(2), olsheor(2), lsheok(1), | |
| lsheotey(1), olsheod(1), olsheody(1), tolsheo(1), tolsheol(1) | |
| lsheody(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olsheody(1) | |
| lsheol(2): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ol(1), to(1) | |
| contains: olsheol(4), tolsheol(1) | |
| lshes(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ko(1) | |
| contains: kolshes(1) | |
| lshey(18): (word length: 5 / group items: 12) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: ok(2), ol(1), al(1), qo(1), da(1) | |
| contains: olshey(11), alshey(4), qolshey(2), dalshey(1), kalshey(1), | |
| keeolshey(1), okalshey(1), okeolshey(1), rolshey(1), solshey(1), | |
| tolshey(1), ylshey(1) | |
| lshl(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1) | |
| contains: olshly(1) | |
| lsho(2): (word length: 4 / group items: 15) | |
| length: min=5, max=10, avg=7.6 | |
| top prefixes: ls(3), po(2), ol(1), ch(1), fo(1) | |
| contains: olsho(3), cholsho(1), folshody(1), kolsho(1), lshodair(1), | |
| lshody(1), lshor(1), ocholshod(1), oksholshol(1), pdalshor(1), | |
| polshol(1), polshor(1), sheolshody(1), tcholshol(1), tolshosor(1) | |
| lshody(1): (word length: 6 / group items: 2) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: fo(1), sh(1) | |
| contains: folshody(1), sheolshody(1) | |
| lshor(1): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: pd(1), po(1) | |
| contains: pdalshor(1), polshor(1) | |
| lshy(3): (word length: 4 / group items: 16) | |
| length: min=5, max=9, avg=6.9 | |
| top prefixes: po(2), qo(2), ch(2), ok(1), ol(1) | |
| contains: okolshy(3), olshy(3), polshy(3), alshy(2), qolshy(2), | |
| cheolshy(1), chetalshy(1), dalshy(1), dolshy(1), lshalshy(1), | |
| otalshy(1), posalshy(1), qotalshy(1), teolshy(1), tolshy(1), | |
| ysholshy(1) | |
| ltaiin(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ol(1), ch(1) | |
| contains: oltaiin(2), choltaiin(1) | |
| ltain(2): (word length: 5 / group items: 2) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ol(1), ch(1) | |
| contains: oltain(2), cheoltain(1) | |
| ltal(3): (word length: 4 / group items: 4) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: ch(2), ol(1), lt(1) | |
| contains: oltal(2), choltal(1), choltaly(1), ltalor(1) | |
| ltam(1): (word length: 4 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: ch(1), ol(1) | |
| contains: choltam(1), oltam(1) | |
| ltar(1): (word length: 4 / group items: 6) | |
| length: min=5, max=8, avg=6.3 | |
| top prefixes: ch(3), ol(1), lt(1), sa(1) | |
| contains: oltar(3), ltary(2), chaltar(1), cheoltar(1), choltar(1), | |
| saltar(1) | |
| ltchdy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: oltchdy(1) | |
| ltchey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: oltchey(2) | |
| ltedy(7): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.8 | |
| top prefixes: ol(1), da(1), qo(1), sa(1) | |
| contains: oltedy(5), daltedy(1), qoltedy(1), saltedy(1) | |
| lteedy(5): (word length: 6 / group items: 5) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: ol(1), qo(1), so(1), te(1), to(1) | |
| contains: olteedy(3), qolteedy(1), solteedy(1), teeolteedy(1), | |
| tolteedy(1) | |
| lteey(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1) | |
| contains: olteey(2) | |
| lteody(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: olteody(2) | |
| lty(2): (word length: 3 / group items: 3) | |
| length: min=4, max=6, avg=5.3 | |
| top prefixes: ol(2), ch(1) | |
| contains: oltydy(2), cholty(1), olty(1) | |
| mar(1): (word length: 3 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: cheamar(1) | |
| oaiin(26): (word length: 5 / group items: 26) | |
| length: min=6, max=10, avg=7.2 | |
| top prefixes: ch(3), qo(2), ok(2), ot(2), sh(1) | |
| contains: qoaiin(23), choaiin(7), shoaiin(4), soaiin(4), doaiin(3), | |
| koaiin(3), cheoaiin(2), okoaiin(2), otoaiin(2), toaiin(2), | |
| ykoaiin(2), cfhoaiin(1), chokoaiin(1), ckooaiin(1), cphoaiin(1), | |
| dtoaiin(1), loaiin(1), ochoaiin(1), okeoaiin(1), oloaiin(1), | |
| otoloaiin(1), poaiin(1), qokoaiin(1), roaiin(1), ysheeoaiin(1), | |
| ytoaiin(1) | |
| oaiir(4): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qoaiir(1) | |
| oain(11): (word length: 4 / group items: 10) | |
| length: min=5, max=11, avg=7.0 | |
| top prefixes: qo(2), ps(2), ch(1), co(1), dc(1) | |
| contains: qoain(7), cheoain(1), coain(1), dcheoain(1), loain(1), | |
| psheoepoain(1), pshoain(1), qopcheoain(1), soain(1), yshoain(1) | |
| oair(3): (word length: 4 / group items: 7) | |
| length: min=5, max=8, avg=6.1 | |
| top prefixes: qo(1), do(1), ko(1), oa(1), ps(1) | |
| contains: qoair(4), doair(1), koair(1), oairar(1), pshoair(1), | |
| soairal(1), toairshy(1) | |
| oal(3): (word length: 3 / group items: 30) | |
| length: min=4, max=9, avg=6.5 | |
| top prefixes: oa(6), ot(3), ok(3), po(3), ch(2) | |
| contains: qoal(4), cheoal(2), cphoal(2), oteeoaly(2), aloal(1), | |
| choal(1), cthodoaly(1), daroal(1), doal(1), keeoal(1), | |
| oafoaly(1), oalchdm(1), oalcheg(1), oalcheol(1), oaldar(1), | |
| oaldary(1), okchoal(1), okeoaly(1), okoaly(1), oteoal(1), | |
| oteoaldy(1), poalosy(1), poalshsal(1), poaly(1), pyoaly(1), | |
| schoal(1), sheoal(1), shoaldy(1), soraloaly(1), toal(1) | |
| oaldar(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: oa(1) | |
| contains: oaldary(1) | |
| oam(1): (word length: 3 / group items: 4) | |
| length: min=4, max=7, avg=5.8 | |
| top prefixes: da(1), oa(1), ok(1), yo(1) | |
| contains: daiioam(1), oamr(1), okeoam(1), yotoam(1) | |
| oar(16): (word length: 3 / group items: 45) | |
| length: min=4, max=11, avg=5.9 | |
| top prefixes: ot(4), ch(3), po(3), do(2), ke(2) | |
| contains: qoar(12), cheoar(5), choar(3), otoar(3), shoar(3), toar(3), | |
| foar(2), poar(2), soar(2), chekeoar(1), cphoar(1), cthoary(1), | |
| doar(1), doaro(1), kchoar(1), keoar(1), kesoar(1), koar(1), | |
| ksheoary(1), lchoar(1), lkeeoar(1), loar(1), loary(1), oaram(1), | |
| oaro(1), oeoar(1), okeoar(1), oteoarar(1), otokeoar(1), | |
| otoloaram(1), poaral(1), podaroar(1), seeoar(1), seoar(1), | |
| tchoar(1), tchoarorshy(1), teeoar(1), teoar(1), tsheoarom(1), | |
| tshoar(1), ycheoar(1), ykooar(1), yoar(1), ysheoar(1), ytoar(1) | |
| oaram(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ot(1) | |
| contains: otoloaram(1) | |
| oaro(1): (word length: 4 / group items: 3) | |
| length: min=5, max=11, avg=8.3 | |
| top prefixes: do(1), tc(1), ts(1) | |
| contains: doaro(1), tchoarorshy(1), tsheoarom(1) | |
| ocfhdy(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chocfhdy(1) | |
| ocfhey(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), sh(1) | |
| contains: qocfhey(1), shocfhey(1) | |
| ocfhor(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chocfhor(1) | |
| ochaiin(1): (word length: 7 / group items: 3) | |
| length: min=8, max=10, avg=8.7 | |
| top prefixes: kc(1), po(1), qo(1) | |
| contains: kchochaiin(1), pochaiin(1), qochaiin(1) | |
| ochar(2): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=7.4 | |
| top prefixes: ch(1), dc(1), ko(1), po(1), qo(1) | |
| contains: chochar(1), dchochar(1), kochardy(1), pocharal(1), qochar(1) | |
| ochdy(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: yk(1) | |
| contains: ykchochdy(1) | |
| ochedain(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qochedain(1) | |
| ochedy(8): (word length: 6 / group items: 6) | |
| length: min=7, max=9, avg=7.5 | |
| top prefixes: ot(2), po(1), qo(1), lo(1), yo(1) | |
| contains: otochedy(2), pochedy(2), qochedy(2), lochedy(1), oteochedy(1), | |
| yochedy(1) | |
| ocheey(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qocheey(2) | |
| ocheky(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qocheky(1) | |
| ocheol(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qocheol(1) | |
| ocheor(1): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ko(1), qo(1) | |
| contains: kocheor(1), qocheor(1) | |
| oches(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qoches(1) | |
| ochey(8): (word length: 5 / group items: 10) | |
| length: min=6, max=10, avg=7.0 | |
| top prefixes: qo(2), po(2), ok(1), ks(1), lo(1) | |
| contains: qochey(6), okochey(2), ksholochey(1), lochey(1), oteochey(1), | |
| pochey(1), pofochey(1), qoochey(1), sochey(1), tochey(1) | |
| ocho(2): (word length: 4 / group items: 39) | |
| length: min=5, max=10, avg=7.1 | |
| top prefixes: oc(14), qo(4), to(3), fo(2), ot(2) | |
| contains: ochor(6), ochol(5), chochor(2), ochody(2), qocho(2), | |
| qochol(2), dochod(1), etocho(1), fchochor(1), fochof(1), | |
| fochor(1), kochor(1), ochoaiin(1), ochockhy(1), ochodare(1), | |
| ochoiky(1), ochokeey(1), ocholdy(1), ocholshod(1), ocholy(1), | |
| ochory(1), ochos(1), ochoyk(1), okchochor(1), oochockhy(1), | |
| oteochor(1), otochor(1), pochor(1), qekeochor(1), qochodaiin(1), | |
| qochoithy(1), shocho(1), shochol(1), sochorcfhy(1), tochody(1), | |
| tochol(1), tochon(1), ykeeochody(1), yochor(1) | |
| ochockhy(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: oo(1) | |
| contains: oochockhy(1) | |
| ochody(2): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: to(1), yk(1) | |
| contains: tochody(1), ykeeochody(1) | |
| ochol(5): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=6.8 | |
| top prefixes: oc(3), qo(1), sh(1), to(1) | |
| contains: qochol(2), ocholdy(1), ocholshod(1), ocholy(1), shochol(1), | |
| tochol(1) | |
| ochor(6): (word length: 5 / group items: 12) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: ot(2), ch(1), fc(1), fo(1), ko(1) | |
| contains: chochor(2), fchochor(1), fochor(1), kochor(1), ochory(1), | |
| okchochor(1), oteochor(1), otochor(1), pochor(1), qekeochor(1), | |
| sochorcfhy(1), yochor(1) | |
| ochs(1): (word length: 4 / group items: 3) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: to(2), ch(1) | |
| contains: chochs(1), tochso(1), tochsy(1) | |
| ochy(5): (word length: 4 / group items: 18) | |
| length: min=5, max=10, avg=7.1 | |
| top prefixes: qo(4), ch(2), ck(1), cp(1), ct(1) | |
| contains: chochy(4), qochy(2), qokeochy(2), chorochy(1), ckhochy(1), | |
| cphochy(1), cthochy(1), dkochy(1), kchochy(1), okcheochy(1), | |
| otcheochy(1), qokochy(1), qoochy(1), shochy(1), sochy(1), | |
| sykeeeochy(1), ycheochy(1), yteochy(1) | |
| ockh(1): (word length: 4 / group items: 80) | |
| length: min=5, max=12, avg=7.8 | |
| top prefixes: qo(21), oc(15), ch(14), sh(10), ok(2) | |
| contains: chockhy(21), qockhy(19), qockhey(18), ockhy(13), cheockhy(10), | |
| ockhey(7), qockhol(7), ockhedy(6), chockhey(5), shockhy(5), | |
| qockhedy(4), qockheey(4), qockheol(3), shockhey(3), tockhy(3), | |
| cheockhey(2), chockhar(2), chockhdy(2), ockhhy(2), ockhody(2), | |
| sheockhey(2), sheockhy(2), aiisockhy(1), cheockhdy(1), | |
| cheockhedchy(1), chockhed(1), chockhedy(1), chockhhor(1), | |
| chockhhy(1), chockhol(1), chockhor(1), ctheockhosho(1), | |
| dockhy(1), kockhas(1), ochockhy(1), ockhdor(1), ockheey(1), | |
| ockheody(1), ockhh(1), ockhodar(1), ockhoees(1), ockhol(1), | |
| ockhor(1), ockhosam(1), oeeockhy(1), okeockhey(1), okockhy(1), | |
| olockhy(1), oochockhy(1), oqockhy(1), orockhey(1), oxockhey(1), | |
| pcheockhy(1), qockhal(1), qockhdy(1), qockhed(1), qockheedy(1), | |
| qockheor(1), qockheos(1), qockhhdy(1), qockhhy(1), qockho(1), | |
| qockhody(1), qockhom(1), qockhor(1), qockhos(1), qockhoy(1), | |
| qofockhdy(1), sheockhedy(1), shockhchy(1), shockhhy(1), | |
| shockho(1), shockhol(1), shockhsy(1), sockhey(1), sockhody(1), | |
| ycheockhy(1), ychockhy(1), ykeockhey(1), ysheockhy(1) | |
| ockhedy(6): (word length: 7 / group items: 3) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: qo(1), ch(1), sh(1) | |
| contains: qockhedy(4), chockhedy(1), sheockhedy(1) | |
| ockheey(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qockheey(4) | |
| ockhey(7): (word length: 6 / group items: 10) | |
| length: min=7, max=9, avg=8.2 | |
| top prefixes: ch(2), sh(2), qo(1), ok(1), or(1) | |
| contains: qockhey(18), chockhey(5), shockhey(3), cheockhey(2), | |
| sheockhey(2), okeockhey(1), orockhey(1), oxockhey(1), sockhey(1), | |
| ykeockhey(1) | |
| ockhh(1): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.7 | |
| top prefixes: ch(2), qo(2), oc(1), sh(1) | |
| contains: ockhhy(2), chockhhor(1), chockhhy(1), qockhhdy(1), qockhhy(1), | |
| shockhhy(1) | |
| ockhhy(2): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: ch(1), qo(1), sh(1) | |
| contains: chockhhy(1), qockhhy(1), shockhhy(1) | |
| ockhody(2): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1), so(1) | |
| contains: qockhody(1), sockhody(1) | |
| ockhol(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: qo(1), ch(1), sh(1) | |
| contains: qockhol(7), chockhol(1), shockhol(1) | |
| ockhor(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(1), qo(1) | |
| contains: chockhor(1), qockhor(1) | |
| ockhy(13): (word length: 5 / group items: 18) | |
| length: min=6, max=9, avg=7.7 | |
| top prefixes: ch(2), sh(2), yc(2), qo(1), to(1) | |
| contains: chockhy(21), qockhy(19), cheockhy(10), shockhy(5), tockhy(3), | |
| sheockhy(2), aiisockhy(1), dockhy(1), ochockhy(1), oeeockhy(1), | |
| okockhy(1), olockhy(1), oochockhy(1), oqockhy(1), pcheockhy(1), | |
| ycheockhy(1), ychockhy(1), ysheockhy(1) | |
| ocphedy(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: shocphedy(1) | |
| ocpheo(1): (word length: 6 / group items: 3) | |
| length: min=8, max=15, avg=10.7 | |
| top prefixes: ch(1), oc(1), yp(1) | |
| contains: chocpheod(1), ocpheody(1), ypchocpheosaiin(1) | |
| ocphey(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(1), qo(1) | |
| contains: cheocphey(1), qocphey(1) | |
| ocphy(3): (word length: 5 / group items: 7) | |
| length: min=6, max=11, avg=8.3 | |
| top prefixes: ch(2), qo(2), sh(1), pc(1), so(1) | |
| contains: chocphy(3), qocphy(2), sheocphy(2), cheocphy(1), pcheocphy(1), | |
| qoshocphy(1), soefchocphy(1) | |
| ocs(1): (word length: 3 / group items: 2) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: ot(1), qo(1) | |
| contains: otocs(1), qocseedy(1) | |
| octham(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: sheoctham(1) | |
| octhd(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: oc(1), qo(1) | |
| contains: octhdy(2), qocthdy(1) | |
| octhdy(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qocthdy(1) | |
| octhedy(2): (word length: 7 / group items: 4) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: ch(2), qo(1), ke(1) | |
| contains: qocthedy(3), cheocthedy(1), chocthedy(1), keocthedy(1) | |
| octheody(2): (word length: 8 / group items: 2) | |
| length: min=9, max=11, avg=10.0 | |
| top prefixes: fc(1), qo(1) | |
| contains: fchoctheody(1), qoctheody(1) | |
| octheol(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoctheol(1) | |
| octhey(6): (word length: 6 / group items: 8) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(2), qo(2), de(1), sh(1), so(1) | |
| contains: chocthey(6), qocthey(5), cheocthey(1), deeocthey(1), | |
| qotocthey(1), shocthey(1), socthey(1), tocthey(1) | |
| octho(1): (word length: 5 / group items: 19) | |
| length: min=6, max=12, avg=7.8 | |
| top prefixes: oc(6), qo(6), sh(2), ch(1), do(1) | |
| contains: octhody(4), octhos(2), qocthol(2), chocthody(1), doctho(1), | |
| octhodaly(1), octhol(1), octhole(1), octhor(1), osocthor(1), | |
| otcholocthol(1), qoctho(1), qocthody(1), qoctholy(1), qocthor(1), | |
| qokchocthor(1), shocthody(1), shocthol(1), socthody(1) | |
| octhody(4): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ch(1), qo(1), sh(1), so(1) | |
| contains: chocthody(1), qocthody(1), shocthody(1), socthody(1) | |
| octhol(1): (word length: 6 / group items: 5) | |
| length: min=7, max=12, avg=8.4 | |
| top prefixes: qo(2), oc(1), ot(1), sh(1) | |
| contains: qocthol(2), octhole(1), otcholocthol(1), qoctholy(1), | |
| shocthol(1) | |
| octhor(1): (word length: 6 / group items: 3) | |
| length: min=7, max=11, avg=8.7 | |
| top prefixes: qo(2), os(1) | |
| contains: osocthor(1), qocthor(1), qokchocthor(1) | |
| octhy(10): (word length: 5 / group items: 15) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: ch(2), sh(2), cp(2), qo(1), pc(1) | |
| contains: chocthy(18), shocthy(12), qocthy(7), cheocthy(5), pchocthy(3), | |
| sheocthy(2), ychocthy(2), ckhocthy(1), cpheocthy(1), cphocthy(1), | |
| eocthy(1), keocthy(1), octhys(1), okchocthy(1), tocthy(1) | |
| octy(1): (word length: 4 / group items: 3) | |
| length: min=6, max=7, avg=6.7 | |
| top prefixes: ch(1), pc(1), sh(1) | |
| contains: chocty(2), pchocty(1), sheocty(1) | |
| odaiiin(4): (word length: 7 / group items: 3) | |
| length: min=8, max=10, avg=8.7 | |
| top prefixes: qo(1), ch(1), so(1) | |
| contains: qodaiiin(2), cheodaiiin(1), sodaiiin(1) | |
| odaiil(1): (word length: 6 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: cp(1) | |
| contains: cphodaiils(1) | |
| odaiin(61): (word length: 6 / group items: 70) | |
| length: min=7, max=12, avg=9.0 | |
| top prefixes: qo(7), ch(6), ot(4), sh(3), yt(3) | |
| contains: chodaiin(44), qodaiin(42), shodaiin(23), cheodaiin(11), | |
| todaiin(9), oteodaiin(8), otodaiin(5), pchodaiin(5), podaiin(5), | |
| sheodaiin(5), kodaiin(3), lodaiin(3), rodaiin(3), sodaiin(3), | |
| tchodaiin(3), ytodaiin(3), dchodaiin(2), fchodaiin(2), | |
| kcheodaiin(2), keodaiin(2), okeeodaiin(2), okeodaiin(2), | |
| okodaiin(2), pshodaiin(2), teeodaiin(2), teodaiin(2), | |
| ararchodaiin(1), chdodaiin(1), chodaiindy(1), chokchodaiin(1), | |
| chtodaiin(1), cpheodaiin(1), cthodaiin(1), dcheodaiin(1), | |
| dodaiin(1), doleodaiin(1), eeeodaiin(1), eeodaiin(1), | |
| etodaiin(1), fodaiin(1), keeodaiin(1), kshodaiin(1), | |
| lkeodaiin(1), ocheodaiin(1), oeeeodaiin(1), opodaiin(1), | |
| oshsodaiin(1), otcheodaiin(1), oteeodaiin(1), pcheodaiin(1), | |
| qeoodaiin(1), qochodaiin(1), qokcheodaiin(1), qokeeodaiin(1), | |
| qokodaiin(1), qoteodaiin(1), qotodaiin(1), seodaiin(1), | |
| sheeodaiin(1), tarodaiin(1), tcheodaiin(1), tshodaiin(1), | |
| ycheeodaiin(1), ychodaiin(1), ycthodaiin(1), ykeodaiin(1), | |
| yodaiin(1), ypodaiin(1), ytchodaiin(1), yteodaiin(1) | |
| odaiir(2): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: po(1), ch(1) | |
| contains: podaiir(2), cheodaiir(1) | |
| odain(18): (word length: 5 / group items: 32) | |
| length: min=6, max=11, avg=8.1 | |
| top prefixes: qo(4), yk(3), ch(2), sh(2), pc(2) | |
| contains: qodain(11), chodain(9), cheodain(8), shodain(5), pchodain(3), | |
| todain(2), dcheodain(1), kodain(1), lkeodain(1), oeeodain(1), | |
| okeodain(1), orolodain(1), oteodain(1), otyteeodain(1), | |
| pcheodain(1), qokeeodain(1), qoodain(1), qotodain(1), rodain(1), | |
| schodain(1), sheeodain(1), ssheodain(1), tchodain(1), | |
| teeodain(1), teodain(1), ycheeodain(1), ycheodain(1), yfodain(1), | |
| ykcheodain(1), ykeeodain(1), ykeodain(1), yteodain(1) | |
| odair(5): (word length: 5 / group items: 14) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: qo(2), po(2), ch(1), ls(1), ok(1) | |
| contains: qodair(3), chodair(2), podair(2), lshodair(1), okeeodair(1), | |
| opcheodair(1), oteodair(1), pchodair(1), podairol(1), | |
| qokeodair(1), sodair(1), tchodairos(1), tshodair(1), ykodair(1) | |
| odal(13): (word length: 4 / group items: 66) | |
| length: min=5, max=11, avg=7.4 | |
| top prefixes: ch(10), ot(6), od(5), qo(4), ok(4) | |
| contains: cheodal(7), chodal(7), qodal(7), oteodal(6), sheodal(4), | |
| chodaly(3), okeodal(3), shodal(3), sodal(3), teodal(3), todal(3), | |
| chodalg(2), cthodal(2), keeodal(2), odaly(2), okeodaly(2), | |
| otodal(2), qokeodal(2), sheodaly(2), cheodalol(1), cheokeodal(1), | |
| cheoteeodal(1), chkodal(1), chodalar(1), chodalr(1), cphodal(1), | |
| cphodales(1), ctheodal(1), dshodal(1), eodal(1), fcheodal(1), | |
| fodal(1), keerodal(1), keodal(1), kodal(1), kodalchy(1), | |
| ksheodal(1), lodaly(1), octhodaly(1), odalaly(1), odalar(1), | |
| odaldy(1), odalydary(1), okeeodal(1), okodaly(1), olkeeodal(1), | |
| opcheodal(1), otchodal(1), otchodals(1), oteeodalsy(1), | |
| otolodal(1), pcheodal(1), pchodal(1), psheodalo(1), pshodalos(1), | |
| qchodal(1), qokchodal(1), qokodal(1), rcheodal(1), tcheodal(1), | |
| todalain(1), todaly(1), tsheodal(1), yteeodal(1), ytodal(1), | |
| ytodaly(1) | |
| odalar(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chodalar(1) | |
| odaly(2): (word length: 5 / group items: 9) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: ok(2), ch(1), sh(1), lo(1), oc(1) | |
| contains: chodaly(3), okeodaly(2), sheodaly(2), lodaly(1), octhodaly(1), | |
| odalydary(1), okodaly(1), todaly(1), ytodaly(1) | |
| odam(6): (word length: 4 / group items: 17) | |
| length: min=5, max=9, avg=6.5 | |
| top prefixes: ch(3), qo(2), ro(1), ai(1), al(1) | |
| contains: qodam(3), cheodam(2), rodam(2), aiodam(1), alodam(1), | |
| cheeodam(1), chodam(1), cthodam(1), keodam(1), kodam(1), | |
| orodam(1), oteeodam(1), qoschodam(1), shodam(1), ykeeodam(1), | |
| yodam(1), yteodam(1) | |
| odan(2): (word length: 4 / group items: 6) | |
| length: min=5, max=7, avg=6.2 | |
| top prefixes: fo(1), kc(1), qo(1), sh(1), so(1) | |
| contains: fodan(1), kchodan(1), qodan(1), shodan(1), sotodan(1), | |
| teeodan(1) | |
| odar(24): (word length: 4 / group items: 60) | |
| length: min=5, max=10, avg=7.2 | |
| top prefixes: ot(7), ok(4), qo(3), pc(3), sh(3) | |
| contains: chodar(14), qodar(11), oteodar(7), sodar(6), cheodar(4), | |
| okeodar(3), otodar(3), pcheodar(3), podar(3), teodar(3), | |
| dodar(2), keodar(2), lodar(2), otchodar(2), pchodar(2), | |
| sheeodar(2), tchodar(2), todar(2), ykeodar(2), alodar(1), | |
| cfhodar(1), ckheodar(1), cpheodar(1), cphodar(1), cthodar(1), | |
| dchodar(1), dsheodar(1), dshodar(1), kcheodar(1), keeodar(1), | |
| kodar(1), kodary(1), ochodare(1), ockhodar(1), odarchdy(1), | |
| odariin(1), okeeodar(1), okeesodar(1), okodar(1), olrodar(1), | |
| otcheodar(1), oteeeodar(1), oteeodar(1), otodarod(1), | |
| pchsodar(1), podaroar(1), psheodar(1), qodary(1), qokodar(1), | |
| schodar(1), sheodar(1), shodary(1), skaiiodar(1), tcheodar(1), | |
| teodarody(1), todaraiily(1), tsheodar(1), ykesodarar(1), | |
| ykodar(1), ytcheodar(1) | |
| odchd(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: od(1) | |
| contains: odchdy(1) | |
| odchedy(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ar(1) | |
| contains: arodchedy(1) | |
| odchey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: po(1) | |
| contains: podchey(1) | |
| odchy(1): (word length: 5 / group items: 9) | |
| length: min=6, max=9, avg=7.6 | |
| top prefixes: ch(2), ot(2), qo(1), fs(1), ok(1) | |
| contains: chodchy(4), qodchy(2), cheodchy(1), fshodchy(1), okodchy(1), | |
| oteodchy(1), otodchy(1), pcheodchy(1), schodchy(1) | |
| odeedy(2): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1), ro(1) | |
| contains: qodeedy(3), rodeedy(1) | |
| odeeey(2): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(1), to(1) | |
| contains: cheodeeey(1), todeeey(1) | |
| odees(1): (word length: 5 / group items: 5) | |
| length: min=8, max=9, avg=8.4 | |
| top prefixes: dc(1), fc(1), po(1), sh(1), ts(1) | |
| contains: dchodees(1), fchodees(1), podeesho(1), sheeodees(1), | |
| tshodeesy(1) | |
| odeey(2): (word length: 5 / group items: 7) | |
| length: min=6, max=9, avg=7.3 | |
| top prefixes: ok(2), qo(1), ae(1), ch(1), ko(1) | |
| contains: qodeey(2), aeeodeey(1), cheodeey(1), kodeey(1), okchodeey(1), | |
| okodeey(1), teodeey(1) | |
| odey(1): (word length: 4 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ch(1), yk(1) | |
| contains: chodey(2), ykeeodey(1) | |
| odl(4): (word length: 3 / group items: 17) | |
| length: min=4, max=10, avg=6.6 | |
| top prefixes: ot(3), ar(2), ch(2), tc(2), dc(1) | |
| contains: arodl(2), arodly(1), cheodl(1), chodl(1), dcheodl(1), dodl(1), | |
| kodl(1), ksheodl(1), odeeeeodl(1), okeodly(1), otasodlory(1), | |
| oteeodl(1), oteodl(1), tcheodl(1), tchodls(1), tsheodl(1), | |
| yfcheodly(1) | |
| odody(1): (word length: 5 / group items: 4) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ct(1), os(1), sh(1), ts(1) | |
| contains: ctheodody(1), oshodody(1), shodody(1), tshodody(1) | |
| odoiin(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: dt(1) | |
| contains: dteodoiin(1) | |
| odol(2): (word length: 4 / group items: 14) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: ch(3), sh(2), qo(2), ct(1), pc(1) | |
| contains: shodol(3), chodol(2), cthodol(2), pchodol(2), chodoldy(1), | |
| chokeeodol(1), cphodol(1), keeodol(1), lkodol(1), otodol(1), | |
| qodol(1), qokeodol(1), sheodol(1), tchodol(1) | |
| odor(8): (word length: 4 / group items: 13) | |
| length: min=5, max=10, avg=7.4 | |
| top prefixes: ot(3), qo(2), ch(1), cf(1), cp(1) | |
| contains: cheodor(2), qodor(2), cfhodoral(1), cpheodor(1), odory(1), | |
| okeodor(1), otchodor(1), otechodor(1), otodeeodor(1), | |
| qokeeodor(1), rsheodor(1), shodor(1), todor(1) | |
| odr(1): (word length: 3 / group items: 3) | |
| length: min=5, max=7, avg=6.3 | |
| top prefixes: ch(1), od(1), oe(1) | |
| contains: chodr(2), odreeey(1), oeeeodr(1) | |
| ods(1): (word length: 3 / group items: 14) | |
| length: min=5, max=10, avg=7.7 | |
| top prefixes: od(3), ko(2), ch(1), cp(1), da(1) | |
| contains: cheeods(1), cphorods(1), darodsf(1), kechodshey(1), | |
| kodshey(1), kodshol(1), odshchol(1), odshe(1), odsheo(1), | |
| okchodshy(1), oteodshey(1), podshedy(1), psheodshy(1), | |
| shodshey(1) | |
| odshe(1): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=8.0 | |
| top prefixes: ke(1), ko(1), od(1), ot(1), po(1) | |
| contains: kechodshey(1), kodshey(1), odsheo(1), oteodshey(1), | |
| podshedy(1), shodshey(1) | |
| ody(46): (word length: 3 / group items: 287) | |
| length: min=4, max=14, avg=7.3 | |
| top prefixes: ch(33), qo(30), sh(20), ok(13), ot(11) | |
| contains: chody(94), cheody(89), shody(55), sheody(50), oteody(39), | |
| okeody(37), qokeody(32), keody(22), cthody(18), qody(17), | |
| okeeody(16), okody(16), ykeody(16), otody(14), yteody(14), | |
| arody(13), qokeeody(13), cheeody(12), qoteody(12), ykeeody(12), | |
| oteeody(11), qotody(11), qokody(9), yteeody(9), ytody(9), | |
| keeody(8), tchody(8), teody(8), tody(8), dody(7), kody(7), | |
| olkeeody(7), pcheody(7), alody(6), ctheody(6), kchody(6), | |
| lkeeody(6), otchody(6), qoteeody(6), tcheody(6), chokeody(5), | |
| cholody(5), ckheody(5), kcheody(5), ksheody(5), pchody(5), | |
| psheody(5), sody(5), ytchody(5), ckhody(4), kshody(4), lkeody(4), | |
| octhody(4), teeody(4), ykchody(4), airody(3), chcthody(3), | |
| chekody(3), chokody(3), cpheody(3), dairody(3), lcheody(3), | |
| lchody(3), lody(3), lsheody(3), okalody(3), okcheody(3), | |
| okchody(3), opcheody(3), qoeeody(3), qokcheody(3), qotchody(3), | |
| sheeody(3), ycheody(3), chckheody(2), chetody(2), chokeeody(2), | |
| chtody(2), cphody(2), dcheeody(2), dcheody(2), dchody(2), | |
| dsheody(2), dshody(2), eody(2), fcheody(2), karody(2), ochody(2), | |
| ockhody(2), octheody(2), oekeody(2), olcheody(2), olkeody(2), | |
| olteody(2), opchody(2), otcheody(2), pcheeody(2), pody(2), | |
| qkeody(2), qokchody(2), qopcheody(2), rody(2), schody(2), | |
| shkeody(2), shoteeody(2), tsheody(2), ycheeody(2), ychody(2), | |
| ykody(2), ysheeody(2), acheody(1), adeeody(1), aiirody(1), | |
| archeody(1), cfheody(1), chckhody(1), chdody(1), cheeckhody(1), | |
| cheekeody(1), chekeody(1), chesokeeoteody(1), chetchody(1), | |
| chkchody(1), chkeeody(1), chkeody(1), chocthody(1), chodykchy(1), | |
| chodys(1), chofchody(1), choody(1), chorody(1), chotchody(1), | |
| choteody(1), chotody(1), chteody(1), chyteody(1), ckheeody(1), | |
| cpheeody(1), ctheodody(1), ctody(1), daiiody(1), daikeody(1), | |
| dalalody(1), dalody(1), darody(1), darshody(1), dcheeokeody(1), | |
| dcthody(1), deody(1), dodyd(1), dolody(1), dorody(1), dotody(1), | |
| dylchsody(1), eeeody(1), eeody(1), ekchody(1), epairody(1), | |
| etcheody(1), eteodys(1), fcheeody(1), fchoctheody(1), | |
| fchodycheol(1), folshody(1), fshody(1), kdchody(1), kechody(1), | |
| keeeody(1), keeshody(1), kotchody(1), kotody(1), lkeeeody(1), | |
| lkody(1), loralody(1), lshody(1), ltcheody(1), lteody(1), | |
| ochepchody(1), ockheody(1), ocpheody(1), odody(1), odyd(1), | |
| odys(1), oeeeody(1), oeeody(1), oeesody(1), oekaody(1), | |
| oeteody(1), ofchsody(1), okaiifchody(1), okairody(1), okedody(1), | |
| okeeeody(1), okeokeokeody(1), okoldody(1), okshody(1), olody(1), | |
| olsheody(1), opdairody(1), oporody(1), opshody(1), orairody(1), | |
| oshodody(1), otaiilody(1), otalody(1), otarody(1), oteeeody(1), | |
| oteoteeody(1), otsheody(1), paiinody(1), pairody(1), parody(1), | |
| pchdarody(1), pdsheody(1), pocheody(1), poldchody(1), poshody(1), | |
| possheody(1), pshody(1), qekeody(1), qeokeody(1), qkeeody(1), | |
| qockhody(1), qocphody(1), qoctheody(1), qocthody(1), qodykey(1), | |
| qoeedeody(1), qoekeeykeody(1), qoepsheody(1), qokeedody(1), | |
| qokiiiody(1), qolody(1), qoody(1), qopcheeody(1), qopchody(1), | |
| qoscheody(1), qotalody(1), qotokody(1), qotomody(1), qykeeody(1), | |
| rchody(1), scody(1), shckhody(1), shdytody(1), sheeolody(1), | |
| shekeeody(1), shekody(1), sheolshody(1), sheoody(1), shkchody(1), | |
| shocthody(1), shodody(1), shodypshey(1), shorody(1), | |
| shotokody(1), shteody(1), shykeody(1), skeeody(1), sockhody(1), | |
| socthody(1), talody(1), tchalody(1), teesody(1), teodarody(1), | |
| teodyteytar(1), theody(1), tochody(1), todydy(1), tshodody(1), | |
| tshokeody(1), yckheody(1), yckhody(1), yfody(1), ykcheody(1), | |
| ykechody(1), ykeeeody(1), ykeeochody(1), ykhody(1), ykolody(1), | |
| yokeody(1), ysheody(1), ytalody(1), ytarody(1), ytcheodytor(1), | |
| ytchodyy(1), yteeeody(1) | |
| odyd(1): (word length: 4 / group items: 2) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: do(1), to(1) | |
| contains: dodyd(1), todydy(1) | |
| odys(1): (word length: 4 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(1), et(1) | |
| contains: chodys(1), eteodys(1) | |
| oedaiin(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoedaiin(3) | |
| oedair(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: po(1) | |
| contains: poedair(1) | |
| oedal(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: do(1) | |
| contains: doedal(1) | |
| oedy(2): (word length: 4 / group items: 2) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: qo(1), lo(1) | |
| contains: qoedy(4), loedy(1) | |
| oeeaiin(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: po(1) | |
| contains: poeeaiin(1) | |
| oeear(3): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1), po(1) | |
| contains: qoeear(2), poeear(1) | |
| oeedaiin(2): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qoeedaiin(2) | |
| oeedey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: do(1) | |
| contains: doeedey(1) | |
| oeedy(7): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: qo(1), to(1), ol(1) | |
| contains: qoeedy(20), toeedy(2), oloeedy(1) | |
| oeeed(1): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: oe(2), qo(1), ol(1), so(1), to(1) | |
| contains: qoeeedy(3), oeeedain(1), oeeedy(1), oloeeedy(1), soeeedy(1), | |
| toeeedchy(1) | |
| oeeedy(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: qo(1), ol(1), so(1) | |
| contains: qoeeedy(3), oloeeedy(1), soeeedy(1) | |
| oeeees(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: do(1) | |
| contains: doeeeesm(1) | |
| oeeeo(1): (word length: 5 / group items: 5) | |
| length: min=6, max=10, avg=7.2 | |
| top prefixes: oe(4), qo(1) | |
| contains: oeeeos(2), oeeeodaiin(1), oeeeodr(1), oeeeody(1), qoeeeo(1) | |
| oeees(9): (word length: 5 / group items: 7) | |
| length: min=6, max=8, avg=6.9 | |
| top prefixes: oe(2), qo(1), lo(1), ch(1), so(1) | |
| contains: qoeees(3), loeees(2), choeees(1), oeeesary(1), oeeesoy(1), | |
| soeees(1), xaloeees(1) | |
| oeeey(4): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: qo(1), ok(1), ol(1) | |
| contains: qoeeey(7), okeoeeey(1), oloeeey(1) | |
| oeeo(3): (word length: 4 / group items: 22) | |
| length: min=5, max=10, avg=6.8 | |
| top prefixes: oe(10), qo(5), oq(2), ko(1), oo(1) | |
| contains: qoeeody(3), qoeeor(3), oeeor(2), oeeos(2), qoeeo(2), | |
| qoeeol(2), koeeorain(1), oeeockhy(1), oeeod(1), oeeodain(1), | |
| oeeody(1), oeeolchy(1), oeeoly(1), oeeoty(1), oeeoy(1), | |
| ooeeor(1), oqoeeol(1), oqoeeosain(1), poeeo(1), qoeeokaiin(1), | |
| soeeol(1), toeeodcthy(1) | |
| oeeod(1): (word length: 5 / group items: 4) | |
| length: min=6, max=10, avg=7.8 | |
| top prefixes: oe(2), qo(1), to(1) | |
| contains: qoeeody(3), oeeodain(1), oeeody(1), toeeodcthy(1) | |
| oeeody(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qoeeody(3) | |
| oeeor(2): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: qo(1), ko(1), oo(1) | |
| contains: qoeeor(3), koeeorain(1), ooeeor(1) | |
| oeeos(2): (word length: 5 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: oq(1) | |
| contains: oqoeeosain(1) | |
| oees(9): (word length: 4 / group items: 25) | |
| length: min=5, max=9, avg=6.4 | |
| top prefixes: oe(5), ch(3), ot(2), qo(2), to(1) | |
| contains: toees(3), aloees(2), cheoees(1), choees(1), choeesy(1), | |
| koees(1), loees(1), ockhoees(1), oeesa(1), oeesaiin(1), | |
| oeeseary(1), oeesody(1), oeesordy(1), okoeese(1), opoees(1), | |
| otoees(1), otoeeseor(1), qoees(1), qotoees(1), roees(1), | |
| sheoees(1), soees(1), ychoees(1), ykeoees(1), yoees(1) | |
| oeesa(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: oe(1) | |
| contains: oeesaiin(1) | |
| oeey(6): (word length: 4 / group items: 13) | |
| length: min=5, max=8, avg=6.2 | |
| top prefixes: qo(4), ok(2), lo(1), ch(1), ot(1) | |
| contains: qoeey(15), loeey(3), choeey(2), oteoeey(2), qotoeey(2), | |
| doeey(1), okoeey(1), okoroeey(1), opoeey(1), qokoeey(1), | |
| qopoeey(1), qyoeey(1), shoeey(1) | |
| oekaiin(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoekaiin(1) | |
| oekar(1): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ch(1), qo(1), sh(1) | |
| contains: cheoekar(1), qoekar(1), shoekar(1) | |
| oekeey(1): (word length: 6 / group items: 4) | |
| length: min=7, max=12, avg=9.0 | |
| top prefixes: ch(2), qo(2) | |
| contains: choekeey(2), qoekeey(2), cheoekeey(1), qoekeeykeody(1) | |
| oekeol(1): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: or(1), qo(1) | |
| contains: oraroekeol(1), qoekeol(1) | |
| oekey(3): (word length: 5 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: ch(3), sh(1) | |
| contains: cheeoekey(1), cheoekey(1), choekey(1), shoekey(1) | |
| oeky(1): (word length: 4 / group items: 7) | |
| length: min=5, max=8, avg=6.1 | |
| top prefixes: sh(3), ch(1), co(1), cs(1), qo(1) | |
| contains: sheoeky(2), choeky(1), coeky(1), csoeky(1), qoeky(1), | |
| sheeoeky(1), shoeky(1) | |
| oeo(1): (word length: 3 / group items: 19) | |
| length: min=4, max=10, avg=6.2 | |
| top prefixes: oe(6), so(4), qo(2), do(1), ok(1) | |
| contains: qoeol(5), oeor(2), qoeor(2), doeoeas(1), oeoar(1), oeoikhy(1), | |
| oeola(1), oeoldan(1), oeos(1), okoeos(1), oloeorain(1), | |
| poeokeey(1), shoeor(1), soeokeot(1), soeom(1), soeor(1), | |
| soeos(1), toeoky(1), ytoeopchey(1) | |
| oeor(2): (word length: 4 / group items: 4) | |
| length: min=5, max=9, avg=6.2 | |
| top prefixes: qo(1), ol(1), sh(1), so(1) | |
| contains: qoeor(2), oloeorain(1), shoeor(1), soeor(1) | |
| oeos(1): (word length: 4 / group items: 2) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: ok(1), so(1) | |
| contains: okoeos(1), soeos(1) | |
| oes(1): (word length: 3 / group items: 6) | |
| length: min=4, max=9, avg=6.7 | |
| top prefixes: oe(2), ol(1), qo(1), so(1), yk(1) | |
| contains: oesal(1), oesearees(1), oloesdr(1), qoesedy(1), soes(1), | |
| ykeoeshy(1) | |
| ofaiin(6): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: of(1), qo(1) | |
| contains: ofaiino(1), qofaiin(1) | |
| ofair(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qofair(2) | |
| ofal(3): (word length: 4 / group items: 6) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: of(4), ch(1), so(1) | |
| contains: chofaly(1), ofalaiin(1), ofalals(1), ofalar(1), ofaldo(1), | |
| sofal(1) | |
| ofar(4): (word length: 4 / group items: 8) | |
| length: min=6, max=9, avg=6.9 | |
| top prefixes: of(5), ch(1), pc(1), yk(1) | |
| contains: chofary(1), ofaral(1), ofaralar(1), ofaram(1), ofaramoty(1), | |
| ofaror(1), pchofar(1), ykofar(1) | |
| ofaral(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: of(1) | |
| contains: ofaralar(1) | |
| ofaram(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: of(1) | |
| contains: ofaramoty(1) | |
| ofchdy(5): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: qo(1), ch(1), of(1) | |
| contains: qofchdy(3), chofchdy(1), ofchdysd(1) | |
| ofchedy(7): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(1), oq(1) | |
| contains: qofchedy(8), oqofchedy(1) | |
| ofcheol(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qofcheol(3) | |
| ofchey(5): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qofchey(1) | |
| ofcho(1): (word length: 5 / group items: 9) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: of(4), qo(3), ch(2) | |
| contains: ofchor(2), qofchol(2), chofchody(1), chofchol(1), ofchol(1), | |
| ofchory(1), ofchoshy(1), qofcho(1), qofchor(1) | |
| ofchol(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), ch(1) | |
| contains: qofchol(2), chofchol(1) | |
| ofchor(2): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: of(1), qo(1) | |
| contains: ofchory(1), qofchor(1) | |
| ofchy(3): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(1), qo(1) | |
| contains: chofchy(2), qofchy(2) | |
| ofol(1): (word length: 4 / group items: 4) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: qo(1), ch(1), of(1), sh(1) | |
| contains: qofol(2), chofol(1), ofoly(1), shofol(1) | |
| ofor(2): (word length: 4 / group items: 4) | |
| length: min=5, max=7, avg=6.2 | |
| top prefixes: of(3), qo(1) | |
| contains: oforain(1), oforam(1), ofory(1), qoforom(1) | |
| ofshdy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qofshdy(1) | |
| ofy(2): (word length: 3 / group items: 10) | |
| length: min=4, max=9, avg=6.8 | |
| top prefixes: of(4), ch(2), cp(1), ot(1), pc(1) | |
| contains: chofy(1), chofydy(1), cphhofy(1), ofychey(1), ofydy(1), | |
| ofyl(1), ofyskydal(1), oteofy(1), pchofychy(1), qofydaiin(1) | |
| ofydy(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chofydy(1) | |
| ohor(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: lo(1) | |
| contains: lohor(1) | |
| oiiin(11): (word length: 5 / group items: 14) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: qo(3), so(2), do(1), lo(1), or(1) | |
| contains: soiiin(6), qoiiin(4), doiiin(3), loiiin(2), oroiiin(2), | |
| qokoiiin(2), aloiiin(1), oiiiny(1), okchoiiin(1), oqotoiiin(1), | |
| pchoiiin(1), qooiiin(1), sotoiiin(1), ytoiiin(1) | |
| oiin(34): (word length: 4 / group items: 59) | |
| length: min=5, max=10, avg=6.6 | |
| top prefixes: qo(7), ch(5), oi(4), ko(3), ol(3) | |
| contains: soiin(21), doiin(19), choiin(13), okoiin(9), qokoiin(6), | |
| shoiin(6), koiin(5), oloiin(5), loiin(4), roiin(4), ykoiin(4), | |
| ytoiin(4), otoiin(3), poiin(3), qoiin(3), qotoiin(3), aloiin(2), | |
| cthoiin(2), doroiin(2), kooiin(2), qotchoiin(2), toiin(2), | |
| yoiin(2), aroiin(1), chokoiin(1), choroiin(1), chtoiin(1), | |
| chytaroiin(1), ckhoiin(1), ctoiin(1), dteodoiin(1), fchoiin(1), | |
| koroiin(1), odoiin(1), oiinal(1), oiinar(1), oiinol(1), oiiny(1), | |
| olchoiin(1), oltoiin(1), ooiin(1), opcharoiin(1), opoiin(1), | |
| opoloiin(1), paroiin(1), pchdoiin(1), pchooiin(1), pdychoiin(1), | |
| qofoiin(1), qooiin(1), qopoiin(1), saloiin(1), salsoiin(1), | |
| sholoiin(1), soloiin(1), teoiin(1), tshoiin(1), xoiin(1), | |
| yshoiin(1) | |
| oiir(3): (word length: 4 / group items: 9) | |
| length: min=5, max=9, avg=6.3 | |
| top prefixes: do(2), qo(2), ol(1), op(1), or(1) | |
| contains: doiir(8), doiiram(1), oloiir(1), opaloiiry(1), oroiir(1), | |
| qokoiir(1), qotoiir(1), roiir(1), soiir(1) | |
| oikhy(2): (word length: 5 / group items: 8) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: sh(2), ch(1), da(1), do(1), oe(1) | |
| contains: shoikhy(4), choikhy(2), daraloikhy(1), doikhy(1), oeoikhy(1), | |
| olpoikhy(1), otoikhy(1), sheoikhy(1) | |
| oin(5): (word length: 3 / group items: 14) | |
| length: min=4, max=10, avg=5.9 | |
| top prefixes: oi(2), ot(2), qo(2), do(1), so(1) | |
| contains: doin(5), soin(4), loroin(1), oinaly(1), oinysarx(1), oloin(1), | |
| opoiisooin(1), oteoin(1), otoin(1), qaloin(1), qoin(1), | |
| qokoin(1), shoin(1), ykoloin(1) | |
| oir(2): (word length: 3 / group items: 11) | |
| length: min=4, max=7, avg=5.5 | |
| top prefixes: oi(2), do(1), ef(1), ol(1), or(1) | |
| contains: doiros(1), efaloir(1), oiral(1), oirsg(1), oloiram(1), | |
| oroiry(1), poir(1), qoirain(1), roiry(1), soir(1), ysoir(1) | |
| oithy(2): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.8 | |
| top prefixes: ch(1), cp(1), do(1), qo(1) | |
| contains: chtoithy(1), cphoithy(1), doithy(1), qochoithy(1) | |
| oka(1): (word length: 3 / group items: 185) | |
| length: min=4, max=12, avg=6.9 | |
| top prefixes: ok(78), qo(45), ch(18), sh(11), lo(4) | |
| contains: qokain(279), qokaiin(262), okaiin(212), qokal(191), | |
| qokar(152), okain(144), okal(138), okar(129), okam(26), | |
| qokam(25), okaly(24), okair(22), qokaly(18), chokaiin(17), | |
| qokair(17), chokain(11), okary(11), chokal(9), okaldy(9), | |
| qokaldy(9), qokan(8), chokar(7), okaiir(6), okalal(6), okalar(6), | |
| okan(5), okaral(5), cheokain(4), chokam(4), okaiiin(4), | |
| shokal(4), okalchy(3), okalody(3), okalol(3), okalor(3), | |
| okaram(3), qokaiir(3), qokairor(3), qokas(3), shokaiin(3), | |
| shokar(3), cheokaiin(2), cheokal(2), cheokam(2), chokaly(2), | |
| chokan(2), kokaiin(2), lokam(2), okady(2), okai(2), okairy(2), | |
| okalaiin(2), okalam(2), okalchedy(2), okaraiin(2), okardy(2), | |
| okarol(2), okas(2), okay(2), oqokain(2), qokaiiin(2), qokaim(2), | |
| qokalchdy(2), qokalor(2), qokaram(2), sheokaiin(2), tokain(2), | |
| tokar(2), aroka(1), chedyteokain(1), cheokaidy(1), cheokaiim(1), | |
| cheokaly(1), cheokar(1), chokair(1), chokaro(1), dokal(1), | |
| fcheokair(1), lokaiin(1), lokain(1), lokar(1), okachey(1), | |
| okad(1), okadaiin(1), okadar(1), okaeechey(1), okag(1), | |
| okaifhhy(1), okaifhy(1), okaiifchody(1), okaiikhal(1), okaiis(1), | |
| okaikaly(1), okail(1), okaildy(1), okaim(1), okainy(1), | |
| okairady(1), okaircham(1), okairo(1), okairody(1), okais(1), | |
| okaisy(1), okalain(1), okalair(1), okalchal(1), okalchdy(1), | |
| okalched(1), okalcheg(1), okald(1), okalda(1), okaldain(1), | |
| okaldal(1), okalo(1), okalsalchey(1), okalshdy(1), okalshey(1), | |
| okalys(1), okaor(1), okaos(1), okaralet(1), okaraly(1), | |
| okarar(1), okarchy(1), okasor(1), okasy(1), okeeokain(1), | |
| okeokain(1), olchokal(1), olokar(1), ookam(1), oqokar(1), | |
| osheokaiin(1), otokaiman(1), otokal(1), pokain(1), pokar(1), | |
| potchokar(1), qoeeokaiin(1), qokady(1), qokaekeeey(1), | |
| qokaiii(1), qokaiinos(1), qokail(1), qokairolchdy(1), qokaiy(1), | |
| qokalaiin(1), qokalam(1), qokalar(1), qokalchal(1), qokalchar(1), | |
| qokalcheol(1), qokalchey(1), qokaldar(1), qokalol(1), qokalom(1), | |
| qokaloro(1), qokalos(1), qokalsh(1), qokalshedy(1), qokamdy(1), | |
| qokaoy(1), qokarary(1), qokary(1), qokay(1), qokeeokain(1), | |
| rokaix(1), sheokain(1), sheokar(1), sheokay(1), sheqokam(1), | |
| shokaiir(1), shokain(1), shokalol(1), sokaiin(1), sokal(1), | |
| sokar(1), tokary(1), ykalokain(1), yokal(1), yokalod(1), | |
| yqokain(1), yqokaly(1), yteokar(1), ytokar(1) | |
| okad(1): (word length: 4 / group items: 4) | |
| length: min=5, max=8, avg=6.2 | |
| top prefixes: ok(3), qo(1) | |
| contains: okady(2), okadaiin(1), okadar(1), qokady(1) | |
| okady(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qokady(1) | |
| okai(2): (word length: 4 / group items: 64) | |
| length: min=5, max=12, avg=7.5 | |
| top prefixes: ok(24), qo(14), ch(8), sh(5), lo(2) | |
| contains: qokain(279), qokaiin(262), okaiin(212), okain(144), okair(22), | |
| chokaiin(17), qokair(17), chokain(11), okaiir(6), cheokain(4), | |
| okaiiin(4), qokaiir(3), qokairor(3), shokaiin(3), cheokaiin(2), | |
| kokaiin(2), okairy(2), oqokain(2), qokaiiin(2), qokaim(2), | |
| sheokaiin(2), tokain(2), chedyteokain(1), cheokaidy(1), | |
| cheokaiim(1), chokair(1), fcheokair(1), lokaiin(1), lokain(1), | |
| okaifhhy(1), okaifhy(1), okaiifchody(1), okaiikhal(1), okaiis(1), | |
| okaikaly(1), okail(1), okaildy(1), okaim(1), okainy(1), | |
| okairady(1), okaircham(1), okairo(1), okairody(1), okais(1), | |
| okaisy(1), okeeokain(1), okeokain(1), osheokaiin(1), | |
| otokaiman(1), pokain(1), qoeeokaiin(1), qokaiii(1), qokaiinos(1), | |
| qokail(1), qokairolchdy(1), qokaiy(1), qokeeokain(1), rokaix(1), | |
| sheokain(1), shokaiir(1), shokain(1), sokaiin(1), ykalokain(1), | |
| yqokain(1) | |
| okaiiin(4): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokaiiin(2) | |
| okaiin(212): (word length: 6 / group items: 11) | |
| length: min=7, max=10, avg=8.3 | |
| top prefixes: qo(3), ch(2), sh(2), ko(1), lo(1) | |
| contains: qokaiin(262), chokaiin(17), shokaiin(3), cheokaiin(2), | |
| kokaiin(2), sheokaiin(2), lokaiin(1), osheokaiin(1), | |
| qoeeokaiin(1), qokaiinos(1), sokaiin(1) | |
| okaiir(6): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), sh(1) | |
| contains: qokaiir(3), shokaiir(1) | |
| okail(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okaildy(1), qokail(1) | |
| okaim(1): (word length: 5 / group items: 2) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: qo(1), ot(1) | |
| contains: qokaim(2), otokaiman(1) | |
| okain(144): (word length: 5 / group items: 16) | |
| length: min=6, max=12, avg=7.6 | |
| top prefixes: ch(3), ok(3), qo(2), sh(2), oq(1) | |
| contains: qokain(279), chokain(11), cheokain(4), oqokain(2), tokain(2), | |
| chedyteokain(1), lokain(1), okainy(1), okeeokain(1), okeokain(1), | |
| pokain(1), qokeeokain(1), sheokain(1), shokain(1), ykalokain(1), | |
| yqokain(1) | |
| okair(22): (word length: 5 / group items: 10) | |
| length: min=6, max=12, avg=7.9 | |
| top prefixes: ok(5), qo(3), ch(1), fc(1) | |
| contains: qokair(17), qokairor(3), okairy(2), chokair(1), fcheokair(1), | |
| okairady(1), okaircham(1), okairo(1), okairody(1), | |
| qokairolchdy(1) | |
| okairo(1): (word length: 6 / group items: 3) | |
| length: min=8, max=12, avg=9.3 | |
| top prefixes: qo(2), ok(1) | |
| contains: qokairor(3), okairody(1), qokairolchdy(1) | |
| okais(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1) | |
| contains: okaisy(1) | |
| okal(138): (word length: 4 / group items: 58) | |
| length: min=5, max=11, avg=7.2 | |
| top prefixes: ok(26), qo(19), ch(4), sh(2), yo(2) | |
| contains: qokal(191), okaly(24), qokaly(18), chokal(9), okaldy(9), | |
| qokaldy(9), okalal(6), okalar(6), shokal(4), okalchy(3), | |
| okalody(3), okalol(3), okalor(3), cheokal(2), chokaly(2), | |
| okalaiin(2), okalam(2), okalchedy(2), qokalchdy(2), qokalor(2), | |
| cheokaly(1), dokal(1), okalain(1), okalair(1), okalchal(1), | |
| okalchdy(1), okalched(1), okalcheg(1), okald(1), okalda(1), | |
| okaldain(1), okaldal(1), okalo(1), okalsalchey(1), okalshdy(1), | |
| okalshey(1), okalys(1), olchokal(1), otokal(1), qokalaiin(1), | |
| qokalam(1), qokalar(1), qokalchal(1), qokalchar(1), | |
| qokalcheol(1), qokalchey(1), qokaldar(1), qokalol(1), qokalom(1), | |
| qokaloro(1), qokalos(1), qokalsh(1), qokalshedy(1), shokalol(1), | |
| sokal(1), yokal(1), yokalod(1), yqokaly(1) | |
| okalaiin(2): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokalaiin(1) | |
| okalam(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokalam(1) | |
| okalar(6): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokalar(1) | |
| okalchal(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokalchal(1) | |
| okalchdy(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokalchdy(2) | |
| okalched(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ok(1) | |
| contains: okalchedy(2) | |
| okald(1): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ok(4), qo(2) | |
| contains: okaldy(9), qokaldy(9), okalda(1), okaldain(1), okaldal(1), | |
| qokaldar(1) | |
| okalda(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: ok(2), qo(1) | |
| contains: okaldain(1), okaldal(1), qokaldar(1) | |
| okaldy(9): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokaldy(9) | |
| okalo(1): (word length: 5 / group items: 10) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: qo(5), ok(3), sh(1), yo(1) | |
| contains: okalody(3), okalol(3), okalor(3), qokalor(2), qokalol(1), | |
| qokalom(1), qokaloro(1), qokalos(1), shokalol(1), yokalod(1) | |
| okalol(3): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), sh(1) | |
| contains: qokalol(1), shokalol(1) | |
| okalor(3): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(2) | |
| contains: qokalor(2), qokaloro(1) | |
| okaly(24): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ch(2), qo(1), ok(1), yq(1) | |
| contains: qokaly(18), chokaly(2), cheokaly(1), okalys(1), yqokaly(1) | |
| okam(26): (word length: 4 / group items: 7) | |
| length: min=5, max=8, avg=6.1 | |
| top prefixes: qo(2), ch(2), lo(1), oo(1), sh(1) | |
| contains: qokam(25), chokam(4), cheokam(2), lokam(2), ookam(1), | |
| qokamdy(1), sheqokam(1) | |
| okan(5): (word length: 4 / group items: 2) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: qo(1), ch(1) | |
| contains: qokan(8), chokan(2) | |
| okar(129): (word length: 4 / group items: 29) | |
| length: min=5, max=9, avg=6.3 | |
| top prefixes: ok(10), qo(4), ch(3), sh(2), to(2) | |
| contains: qokar(152), okary(11), chokar(7), okaral(5), okaram(3), | |
| shokar(3), okaraiin(2), okardy(2), okarol(2), qokaram(2), | |
| tokar(2), cheokar(1), chokaro(1), lokar(1), okaralet(1), | |
| okaraly(1), okarar(1), okarchy(1), olokar(1), oqokar(1), | |
| pokar(1), potchokar(1), qokarary(1), qokary(1), sheokar(1), | |
| sokar(1), tokary(1), yteokar(1), ytokar(1) | |
| okaral(5): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ok(2) | |
| contains: okaralet(1), okaraly(1) | |
| okaram(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokaram(2) | |
| okarar(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokarary(1) | |
| okary(11): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1), to(1) | |
| contains: qokary(1), tokary(1) | |
| okas(2): (word length: 4 / group items: 3) | |
| length: min=5, max=6, avg=5.3 | |
| top prefixes: ok(2), qo(1) | |
| contains: qokas(3), okasor(1), okasy(1) | |
| okay(2): (word length: 4 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: qo(1), sh(1) | |
| contains: qokay(1), sheokay(1) | |
| okchaiin(2): (word length: 8 / group items: 2) | |
| length: min=9, max=10, avg=9.5 | |
| top prefixes: ch(1), qo(1) | |
| contains: chokchaiin(2), qokchaiin(2) | |
| okchain(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokchain(1) | |
| okchal(3): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okokchal(1), qokchal(1) | |
| okchar(4): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okcharaiin(1), qokchar(1) | |
| okchd(6): (word length: 5 / group items: 11) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ok(6), qo(5) | |
| contains: qokchdy(56), okchdy(21), qokchd(6), okchdar(3), okchdal(2), | |
| okchdam(1), okchdldlo(1), okchdpchy(1), qokchdain(1), | |
| qokchdar(1), qokchdyl(1) | |
| okchdar(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokchdar(1) | |
| okchdy(21): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(2) | |
| contains: qokchdy(56), qokchdyl(1) | |
| okche(1): (word length: 5 / group items: 42) | |
| length: min=6, max=12, avg=7.9 | |
| top prefixes: ok(19), qo(11), ch(7), sh(3), ot(1) | |
| contains: qokchedy(39), okchey(32), qokchey(30), okchedy(25), | |
| okcheey(7), chokchey(3), okcheody(3), qokcheo(3), qokcheody(3), | |
| chokchedy(2), okchedam(2), okcheo(2), okcheor(2), qokcheedy(2), | |
| qokcheey(2), qokcheor(2), cheokcheo(1), cheokchet(1), | |
| cheokchey(1), chokcheey(1), chokcheo(1), okchechy(1), | |
| okchedaiin(1), okchedyly(1), okcheefy(1), okcheeg(1), okcheeo(1), | |
| okcheochy(1), okcheod(1), okcheol(1), okches(1), okchesal(1), | |
| okchesy(1), otokchey(1), qokche(1), qokched(1), qokcheodaiin(1), | |
| qokcheol(1), shokche(1), shokcheey(1), shokchey(1), sokcheey(1) | |
| okchedy(25): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.7 | |
| top prefixes: qo(1), ch(1), ok(1) | |
| contains: qokchedy(39), chokchedy(2), okchedyly(1) | |
| okcheey(7): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(1), ch(1), sh(1), so(1) | |
| contains: qokcheey(2), chokcheey(1), shokcheey(1), sokcheey(1) | |
| okcheo(2): (word length: 6 / group items: 12) | |
| length: min=7, max=12, avg=8.2 | |
| top prefixes: ok(5), qo(5), ch(2) | |
| contains: okcheody(3), qokcheo(3), qokcheody(3), okcheor(2), | |
| qokcheor(2), cheokcheo(1), chokcheo(1), okcheochy(1), okcheod(1), | |
| okcheol(1), qokcheodaiin(1), qokcheol(1) | |
| okcheod(1): (word length: 7 / group items: 3) | |
| length: min=8, max=12, avg=9.7 | |
| top prefixes: qo(2), ok(1) | |
| contains: okcheody(3), qokcheody(3), qokcheodaiin(1) | |
| okcheody(3): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokcheody(3) | |
| okcheol(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokcheol(1) | |
| okcheor(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokcheor(2) | |
| okches(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ok(2) | |
| contains: okchesal(1), okchesy(1) | |
| okchey(32): (word length: 6 / group items: 5) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(2), qo(1), ot(1), sh(1) | |
| contains: qokchey(30), chokchey(3), cheokchey(1), otokchey(1), | |
| shokchey(1) | |
| okcho(9): (word length: 5 / group items: 38) | |
| length: min=6, max=12, avg=7.7 | |
| top prefixes: ok(20), qo(10), ch(4), so(2), cp(1) | |
| contains: okchor(20), qokchol(18), okchol(15), qokchor(11), qokcho(10), | |
| chokchol(4), qokchod(4), okchody(3), chokcho(2), okchod(2), | |
| okchoda(2), okchom(2), okchoy(2), qokchody(2), chokchodaiin(1), | |
| chokchor(1), cphokchol(1), okchoal(1), okchochor(1), | |
| okchocthy(1), okchodeey(1), okchodshy(1), okchoiiin(1), | |
| okchokol(1), okchokshy(1), okchop(1), okchos(1), okchosam(1), | |
| okchoteees(1), okokchodm(1), otokcho(1), qokchocthor(1), | |
| qokchodal(1), qokchon(1), qokchory(1), qokchos(1), sokchol(1), | |
| sokchor(1) | |
| okchod(2): (word length: 6 / group items: 9) | |
| length: min=7, max=12, avg=8.6 | |
| top prefixes: ok(5), qo(3), ch(1) | |
| contains: qokchod(4), okchody(3), okchoda(2), qokchody(2), | |
| chokchodaiin(1), okchodeey(1), okchodshy(1), okokchodm(1), | |
| qokchodal(1) | |
| okchoda(2): (word length: 7 / group items: 2) | |
| length: min=9, max=12, avg=10.5 | |
| top prefixes: ch(1), qo(1) | |
| contains: chokchodaiin(1), qokchodal(1) | |
| okchody(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokchody(2) | |
| okchol(15): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: qo(1), ch(1), cp(1), so(1) | |
| contains: qokchol(18), chokchol(4), cphokchol(1), sokchol(1) | |
| okchor(20): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(2), ch(1), so(1) | |
| contains: qokchor(11), chokchor(1), qokchory(1), sokchor(1) | |
| okchos(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okchosam(1), qokchos(1) | |
| okchshy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokchshy(1) | |
| okchy(39): (word length: 5 / group items: 12) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: qo(3), ch(3), sh(1), dc(1), kc(1) | |
| contains: qokchy(69), chokchy(16), shokchy(9), dchokchy(3), kchokchy(2), | |
| cheokchy(1), chotyokchy(1), dychokchy(1), okchyd(1), qokchyky(1), | |
| qokokchy(1), sokchy(1) | |
| okdy(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: qo(1) | |
| contains: qokdy(4) | |
| oke(1): (word length: 3 / group items: 349) | |
| length: min=4, max=14, avg=7.4 | |
| top prefixes: ok(156), qo(100), ch(37), sh(15), so(4) | |
| contains: qokeey(308), qokeedy(305), qokedy(272), okeey(177), | |
| okedy(118), qokey(107), okeedy(105), okeol(66), okey(64), | |
| qokeol(52), okeody(37), qokeody(32), okeeey(27), qokeeey(26), | |
| qokeeo(23), okeor(22), qokeor(21), okeeol(18), okeeody(16), | |
| okees(16), okeeo(15), qokeed(15), okeeor(14), okeo(14), | |
| okeos(14), qokechy(13), qokeeody(13), okeal(12), chokeey(11), | |
| qokeeol(11), qokeeor(10), okeeedy(9), qokedar(8), qokees(8), | |
| qokeod(8), chokey(7), okear(7), okedal(7), qoked(7), qokeo(7), | |
| okechy(6), okedar(6), okeeos(6), okeod(6), okeoly(6), okeom(6), | |
| qokear(6), qokeechy(6), qokeedar(6), cheokeey(5), chokeody(5), | |
| chokeol(5), qokeeedy(5), qokeos(5), shokey(5), okechdy(4), | |
| okechedy(4), okeear(4), qokeal(4), qokechedy(4), qokedain(4), | |
| qokeeos(4), sheokey(4), cheokey(3), chokedy(3), chokeedy(3), | |
| lokeedy(3), okedaiin(3), okedain(3), okedam(3), okedor(3), | |
| okeed(3), okeedal(3), okeeom(3), okeodal(3), okeodar(3), okes(3), | |
| okeshy(3), qokeain(3), qokechdy(3), qokedaiin(3), qokedal(3), | |
| qokeedain(3), qokeedal(3), qokeees(3), shokeey(3), sokeedy(3), | |
| cheokedy(2), cheokeeo(2), cheokeol(2), chokeeey(2), chokeeody(2), | |
| chokeo(2), lokeey(2), okeaiin(2), okeam(2), okechey(2), oked(2), | |
| okeeal(2), okeeam(2), okeedain(2), okeedaly(2), okeedar(2), | |
| okeeeo(2), okeeodaiin(2), okeeoly(2), okeeoy(2), okeeshy(2), | |
| okeodaiin(2), okeodaly(2), okeoldy(2), okeosar(2), okeoy(2), | |
| qokedam(2), qokeeaiin(2), qokeear(2), qokeeod(2), qokeochy(2), | |
| qokeodal(2), qokeoly(2), qokeom(2), sheokeey(2), sokeey(2), | |
| cheeokeey(1), cheokeain(1), cheokeeos(1), cheokeo(1), | |
| cheokeodal(1), cheokeos(1), chesokeeoteody(1), chokeal(1), | |
| choked(1), chokedair(1), chokeear(1), chokeed(1), chokeedam(1), | |
| chokeeo(1), chokeeodol(1), chokeeoky(1), chokeeor(1), chokees(1), | |
| chokeod(1), chokeor(1), chokeos(1), chokesey(1), chteokeeiin(1), | |
| ckheokey(1), dcheeokeody(1), dchokey(1), dokechy(1), dokedy(1), | |
| ekokeey(1), eokeeor(1), kecheokeo(1), keeokechy(1), ochokeey(1), | |
| okealy(1), okearcheol(1), okechdaral(1), okecheay(1), | |
| okecheey(1), okechly(1), okechod(1), okechoked(1), okechol(1), | |
| okecholy(1), okechoy(1), okechs(1), okedalor(1), okedals(1), | |
| okedes(1), okedody(1), okedyd(1), okedyted(1), okeea(1), | |
| okeeaiin(1), okeearam(1), okeeas(1), okeechor(1), okeechy(1), | |
| okeedaiin(1), okeedaim(1), okeedaky(1), okeedam(1), okeedaram(1), | |
| okeedchsy(1), okeeddl(1), okeedey(1), okeeees(1), okeeel(1), | |
| okeeeody(1), okeeeol(1), okeeeosaiin(1), okeees(1), okeeesey(1), | |
| okeeeykchy(1), okeeg(1), okeeoda(1), okeeodair(1), okeeodal(1), | |
| okeeodar(1), okeeokain(1), okeeolkcheey(1), okeeoraiin(1), | |
| okeer(1), okeesodar(1), okeesy(1), okeeylchedy(1), okeeyteedy(1), | |
| okehdy(1), okemy(1), okeoaiin(1), okeoaly(1), okeoam(1), | |
| okeoar(1), okeockhey(1), okeodain(1), okeodly(1), okeodof(1), | |
| okeodor(1), okeoeeey(1), okeoekol(1), okeohdar(1), okeokain(1), | |
| okeokear(1), okeokedr(1), okeokeokeody(1), okeoky(1), | |
| okeolaiin(1), okeolan(1), okeolar(1), okeolkey(1), okeoloky(1), | |
| okeolol(1), okeolor(1), okeols(1), okeolshey(1), okeoram(1), | |
| okeorl(1), okeory(1), okeoschso(1), okeoteey(1), okery(1), | |
| okesdy(1), okeserr(1), okeshedy(1), okeshey(1), okeshos(1), | |
| okesoe(1), okesy(1), okeyr(1), okeytam(1), okeyteey(1), | |
| okeyty(1), olkchokeedy(1), oqokeey(1), oqokeol(1), orokeeeey(1), | |
| oteokeey(1), otokeedar(1), otokeedy(1), otokeoar(1), | |
| pcheokeey(1), poeokeey(1), pokeey(1), qeokehy(1), qeokeody(1), | |
| qokeaiin(1), qokealdy(1), qokeas(1), qokechchy(1), qokechckhy(1), | |
| qokecheos(1), qokechey(1), qokecho(1), qokededy(1), qokedol(1), | |
| qokedydy(1), qokeeal(1), qokeeam(1), qokeeas(1), qokeeashdy(1), | |
| qokeechey(1), qokeechom(1), qokeedaiin(1), qokeedair(1), | |
| qokeedody(1), qokeee(1), qokeeen(1), qokeeeor(1), qokeeeos(1), | |
| qokeefcy(1), qokeeiin(1), qokeel(1), qokeeodaiin(1), | |
| qokeeodain(1), qokeeodor(1), qokeeokain(1), qokeeoky(1), | |
| qokeeolchey(1), qokeeshy(1), qokeg(1), qokehdy(1), qokeoda(1), | |
| qokeodair(1), qokeodol(1), qokeoefy(1), qokeog(1), qokeokedy(1), | |
| qokeolo(1), qokeory(1), qokeoy(1), qoker(1), qokes(1), qokesd(1), | |
| qokesdy(1), qokeshdy(1), qokeshe(1), qokeshedy(1), qokeshey(1), | |
| qokeshs(1), qokeshy(1), qokeyl(1), qoqokeey(1), rokeedy(1), | |
| schokey(1), sheoked(1), sheokeedy(1), sheokeol(1), sheokeor(1), | |
| shokeedar(1), shokeeey(1), shokeeol(1), shokeesy(1), | |
| shokeolls(1), shokeshy(1), shyokeey(1), soeokeot(1), sokedy(1), | |
| sqokeo(1), syokeedy(1), tchokedy(1), tolokeedy(1), tsheokeedy(1), | |
| tshokeody(1), ykchokeo(1), yokeeol(1), yokeey(1), yokeody(1) | |
| okeaiin(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokeaiin(1) | |
| okeal(12): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: qo(2), ch(1), ok(1) | |
| contains: qokeal(4), chokeal(1), okealy(1), qokealdy(1) | |
| okear(7): (word length: 5 / group items: 3) | |
| length: min=6, max=10, avg=8.0 | |
| top prefixes: ok(2), qo(1) | |
| contains: qokear(6), okearcheol(1), okeokear(1) | |
| okechdy(4): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokechdy(3) | |
| okechedy(4): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokechedy(4) | |
| okechey(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokechey(1) | |
| okechol(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okecholy(1) | |
| okechy(6): (word length: 6 / group items: 3) | |
| length: min=7, max=9, avg=7.7 | |
| top prefixes: qo(1), do(1), ke(1) | |
| contains: qokechy(13), dokechy(1), keeokechy(1) | |
| oked(2): (word length: 4 / group items: 34) | |
| length: min=5, max=9, avg=7.1 | |
| top prefixes: ok(15), qo(11), ch(4), do(1), sh(1) | |
| contains: qokedy(272), okedy(118), qokedar(8), okedal(7), qoked(7), | |
| okedar(6), qokedain(4), chokedy(3), okedaiin(3), okedain(3), | |
| okedam(3), okedor(3), qokedaiin(3), qokedal(3), cheokedy(2), | |
| qokedam(2), choked(1), chokedair(1), dokedy(1), okechoked(1), | |
| okedalor(1), okedals(1), okedes(1), okedody(1), okedyd(1), | |
| okedyted(1), okeokedr(1), qokededy(1), qokedol(1), qokedydy(1), | |
| qokeokedy(1), sheoked(1), sokedy(1), tchokedy(1) | |
| okedaiin(3): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokedaiin(3) | |
| okedain(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokedain(4) | |
| okedal(7): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ok(2), qo(1) | |
| contains: qokedal(3), okedalor(1), okedals(1) | |
| okedam(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokedam(2) | |
| okedar(6): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokedar(8) | |
| okedy(118): (word length: 5 / group items: 10) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: qo(3), ch(2), ok(2), do(1), so(1) | |
| contains: qokedy(272), chokedy(3), cheokedy(2), dokedy(1), okedyd(1), | |
| okedyted(1), qokedydy(1), qokeokedy(1), sokedy(1), tchokedy(1) | |
| okedyd(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokedydy(1) | |
| okeea(1): (word length: 5 / group items: 13) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: ok(6), qo(6), ch(1) | |
| contains: okeear(4), okeeal(2), okeeam(2), qokeeaiin(2), qokeear(2), | |
| chokeear(1), okeeaiin(1), okeearam(1), okeeas(1), qokeeal(1), | |
| qokeeam(1), qokeeas(1), qokeeashdy(1) | |
| okeeaiin(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokeeaiin(2) | |
| okeeal(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokeeal(1) | |
| okeeam(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokeeam(1) | |
| okeear(4): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: qo(1), ch(1), ok(1) | |
| contains: qokeear(2), chokeear(1), okeearam(1) | |
| okeeas(1): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: qo(2) | |
| contains: qokeeas(1), qokeeashdy(1) | |
| okeechy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokeechy(6) | |
| okeed(3): (word length: 5 / group items: 35) | |
| length: min=6, max=11, avg=8.1 | |
| top prefixes: ok(13), qo(8), ch(3), ot(2), sh(2) | |
| contains: qokeedy(305), okeedy(105), qokeed(15), qokeedar(6), | |
| chokeedy(3), lokeedy(3), okeedal(3), qokeedain(3), qokeedal(3), | |
| sokeedy(3), okeedain(2), okeedaly(2), okeedar(2), chokeed(1), | |
| chokeedam(1), okeedaiin(1), okeedaim(1), okeedaky(1), okeedam(1), | |
| okeedaram(1), okeedchsy(1), okeeddl(1), okeedey(1), | |
| olkchokeedy(1), otokeedar(1), otokeedy(1), qokeedaiin(1), | |
| qokeedair(1), qokeedody(1), rokeedy(1), sheokeedy(1), | |
| shokeedar(1), syokeedy(1), tolokeedy(1), tsheokeedy(1) | |
| okeedaiin(1): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: qo(1) | |
| contains: qokeedaiin(1) | |
| okeedain(2): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokeedain(3) | |
| okeedal(3): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1), ok(1) | |
| contains: qokeedal(3), okeedaly(2) | |
| okeedam(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chokeedam(1) | |
| okeedar(2): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.8 | |
| top prefixes: qo(1), ok(1), ot(1), sh(1) | |
| contains: qokeedar(6), okeedaram(1), otokeedar(1), shokeedar(1) | |
| okeedy(105): (word length: 6 / group items: 11) | |
| length: min=7, max=11, avg=8.3 | |
| top prefixes: qo(1), ch(1), lo(1), so(1), ol(1) | |
| contains: qokeedy(305), chokeedy(3), lokeedy(3), sokeedy(3), | |
| olkchokeedy(1), otokeedy(1), rokeedy(1), sheokeedy(1), | |
| syokeedy(1), tolokeedy(1), tsheokeedy(1) | |
| okeeedy(9): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokeeedy(5) | |
| okeeeo(2): (word length: 6 / group items: 5) | |
| length: min=7, max=11, avg=8.4 | |
| top prefixes: ok(3), qo(2) | |
| contains: okeeeody(1), okeeeol(1), okeeeosaiin(1), qokeeeor(1), | |
| qokeeeos(1) | |
| okeees(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), ok(1) | |
| contains: qokeees(3), okeeesey(1) | |
| okeeey(27): (word length: 6 / group items: 4) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: qo(1), ch(1), ok(1), sh(1) | |
| contains: qokeeey(26), chokeeey(2), okeeeykchy(1), shokeeey(1) | |
| okeeo(15): (word length: 5 / group items: 38) | |
| length: min=6, max=14, avg=8.3 | |
| top prefixes: ok(15), qo(12), ch(8), eo(1), sh(1) | |
| contains: qokeeo(23), okeeol(18), okeeody(16), okeeor(14), qokeeody(13), | |
| qokeeol(11), qokeeor(10), okeeos(6), qokeeos(4), okeeom(3), | |
| cheokeeo(2), chokeeody(2), okeeodaiin(2), okeeoly(2), okeeoy(2), | |
| qokeeod(2), cheokeeos(1), chesokeeoteody(1), chokeeo(1), | |
| chokeeodol(1), chokeeoky(1), chokeeor(1), eokeeor(1), okeeoda(1), | |
| okeeodair(1), okeeodal(1), okeeodar(1), okeeokain(1), | |
| okeeolkcheey(1), okeeoraiin(1), qokeeodaiin(1), qokeeodain(1), | |
| qokeeodor(1), qokeeokain(1), qokeeoky(1), qokeeolchey(1), | |
| shokeeol(1), yokeeol(1) | |
| okeeoda(1): (word length: 7 / group items: 6) | |
| length: min=8, max=11, avg=9.3 | |
| top prefixes: ok(4), qo(2) | |
| contains: okeeodaiin(2), okeeodair(1), okeeodal(1), okeeodar(1), | |
| qokeeodaiin(1), qokeeodain(1) | |
| okeeodaiin(2): (word length: 10 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: qo(1) | |
| contains: qokeeodaiin(1) | |
| okeeody(16): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(1), ch(1) | |
| contains: qokeeody(13), chokeeody(2) | |
| okeeokain(1): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: qo(1) | |
| contains: qokeeokain(1) | |
| okeeol(18): (word length: 6 / group items: 6) | |
| length: min=7, max=12, avg=8.7 | |
| top prefixes: qo(2), ok(2), sh(1), yo(1) | |
| contains: qokeeol(11), okeeoly(2), okeeolkcheey(1), qokeeolchey(1), | |
| shokeeol(1), yokeeol(1) | |
| okeeor(14): (word length: 6 / group items: 4) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: qo(1), ch(1), eo(1), ok(1) | |
| contains: qokeeor(10), chokeeor(1), eokeeor(1), okeeoraiin(1) | |
| okeeos(6): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: qo(1), ch(1) | |
| contains: qokeeos(4), cheokeeos(1) | |
| okees(16): (word length: 5 / group items: 7) | |
| length: min=6, max=9, avg=7.3 | |
| top prefixes: ok(3), qo(2), ch(1), sh(1) | |
| contains: qokees(8), okeeshy(2), chokees(1), okeesodar(1), okeesy(1), | |
| qokeeshy(1), shokeesy(1) | |
| okeeshy(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokeeshy(1) | |
| okeesy(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sh(1) | |
| contains: shokeesy(1) | |
| okeey(177): (word length: 5 / group items: 20) | |
| length: min=6, max=11, avg=7.7 | |
| top prefixes: ch(3), sh(3), qo(2), ok(2), po(2) | |
| contains: qokeey(308), chokeey(11), cheokeey(5), shokeey(3), lokeey(2), | |
| sheokeey(2), sokeey(2), cheeokeey(1), ekokeey(1), ochokeey(1), | |
| okeeylchedy(1), okeeyteedy(1), oqokeey(1), oteokeey(1), | |
| pcheokeey(1), poeokeey(1), pokeey(1), qoqokeey(1), shyokeey(1), | |
| yokeey(1) | |
| okehdy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokehdy(1) | |
| okeo(14): (word length: 4 / group items: 87) | |
| length: min=5, max=12, avg=7.3 | |
| top prefixes: ok(45), qo(19), ch(10), sh(3), dc(1) | |
| contains: okeol(66), qokeol(52), okeody(37), qokeody(32), okeor(22), | |
| qokeor(21), okeos(14), qokeod(8), qokeo(7), okeod(6), okeoly(6), | |
| okeom(6), chokeody(5), chokeol(5), qokeos(5), okeodal(3), | |
| okeodar(3), cheokeol(2), chokeo(2), okeodaiin(2), okeodaly(2), | |
| okeoldy(2), okeosar(2), okeoy(2), qokeochy(2), qokeodal(2), | |
| qokeoly(2), qokeom(2), cheokeo(1), cheokeodal(1), cheokeos(1), | |
| chokeod(1), chokeor(1), chokeos(1), dcheeokeody(1), kecheokeo(1), | |
| okeoaiin(1), okeoaly(1), okeoam(1), okeoar(1), okeockhey(1), | |
| okeodain(1), okeodly(1), okeodof(1), okeodor(1), okeoeeey(1), | |
| okeoekol(1), okeohdar(1), okeokain(1), okeokear(1), okeokedr(1), | |
| okeokeokeody(1), okeoky(1), okeolaiin(1), okeolan(1), okeolar(1), | |
| okeolkey(1), okeoloky(1), okeolol(1), okeolor(1), okeols(1), | |
| okeolshey(1), okeoram(1), okeorl(1), okeory(1), okeoschso(1), | |
| okeoteey(1), oqokeol(1), otokeoar(1), qeokeody(1), qokeoda(1), | |
| qokeodair(1), qokeodol(1), qokeoefy(1), qokeog(1), qokeokedy(1), | |
| qokeolo(1), qokeory(1), qokeoy(1), sheokeol(1), sheokeor(1), | |
| shokeolls(1), soeokeot(1), sqokeo(1), tshokeody(1), ykchokeo(1), | |
| yokeody(1) | |
| okeoar(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otokeoar(1) | |
| okeod(6): (word length: 5 / group items: 23) | |
| length: min=6, max=12, avg=8.0 | |
| top prefixes: ok(10), qo(6), ch(3), dc(1), qe(1) | |
| contains: okeody(37), qokeody(32), qokeod(8), chokeody(5), okeodal(3), | |
| okeodar(3), okeodaiin(2), okeodaly(2), qokeodal(2), | |
| cheokeodal(1), chokeod(1), dcheeokeody(1), okeodain(1), | |
| okeodly(1), okeodof(1), okeodor(1), okeokeokeody(1), qeokeody(1), | |
| qokeoda(1), qokeodair(1), qokeodol(1), tshokeody(1), yokeody(1) | |
| okeodal(3): (word length: 7 / group items: 3) | |
| length: min=8, max=10, avg=8.7 | |
| top prefixes: ok(1), qo(1), ch(1) | |
| contains: okeodaly(2), qokeodal(2), cheokeodal(1) | |
| okeody(37): (word length: 6 / group items: 7) | |
| length: min=7, max=12, avg=8.9 | |
| top prefixes: qo(1), ch(1), dc(1), ok(1), qe(1) | |
| contains: qokeody(32), chokeody(5), dcheeokeody(1), okeokeokeody(1), | |
| qeokeody(1), tshokeody(1), yokeody(1) | |
| okeol(66): (word length: 5 / group items: 19) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: ok(11), qo(3), ch(2), sh(2), oq(1) | |
| contains: qokeol(52), okeoly(6), chokeol(5), cheokeol(2), okeoldy(2), | |
| qokeoly(2), okeolaiin(1), okeolan(1), okeolar(1), okeolkey(1), | |
| okeoloky(1), okeolol(1), okeolor(1), okeols(1), okeolshey(1), | |
| oqokeol(1), qokeolo(1), sheokeol(1), shokeolls(1) | |
| okeols(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ok(1) | |
| contains: okeolshey(1) | |
| okeoly(6): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokeoly(2) | |
| okeom(6): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qokeom(2) | |
| okeor(22): (word length: 5 / group items: 7) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: ok(3), qo(2), ch(1), sh(1) | |
| contains: qokeor(21), chokeor(1), okeoram(1), okeorl(1), okeory(1), | |
| qokeory(1), sheokeor(1) | |
| okeory(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokeory(1) | |
| okeos(14): (word length: 5 / group items: 5) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: ok(2), ch(2), qo(1) | |
| contains: qokeos(5), okeosar(2), cheokeos(1), chokeos(1), okeoschso(1) | |
| okeoy(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qokeoy(1) | |
| okes(3): (word length: 4 / group items: 19) | |
| length: min=5, max=9, avg=6.9 | |
| top prefixes: qo(9), ok(8), ch(1), sh(1) | |
| contains: okeshy(3), chokesey(1), okesdy(1), okeserr(1), okeshedy(1), | |
| okeshey(1), okeshos(1), okesoe(1), okesy(1), qokes(1), qokesd(1), | |
| qokesdy(1), qokeshdy(1), qokeshe(1), qokeshedy(1), qokeshey(1), | |
| qokeshs(1), qokeshy(1), shokeshy(1) | |
| okesdy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokesdy(1) | |
| okeshedy(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokeshedy(1) | |
| okeshey(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokeshey(1) | |
| okeshy(3): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), sh(1) | |
| contains: qokeshy(1), shokeshy(1) | |
| okey(64): (word length: 4 / group items: 13) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: ok(4), qo(2), ch(2), sh(2), ck(1) | |
| contains: qokey(107), chokey(7), shokey(5), sheokey(4), cheokey(3), | |
| ckheokey(1), dchokey(1), okeyr(1), okeytam(1), okeyteey(1), | |
| okeyty(1), qokeyl(1), schokey(1) | |
| oko(8): (word length: 3 / group items: 130) | |
| length: min=4, max=11, avg=6.7 | |
| top prefixes: ok(60), qo(39), ch(14), sh(6), so(3) | |
| contains: qokol(105), okol(83), qokor(36), okor(34), okody(16), | |
| okoiin(9), qoko(9), qokody(9), okoldy(8), okos(8), okom(7), | |
| qokod(7), chokor(6), qokoiin(6), okoly(5), chokol(4), okoy(4), | |
| chokody(3), okod(3), okolchy(3), okolo(3), okolshy(3), okory(3), | |
| qokoldy(3), shokol(3), choko(2), okoaiin(2), okochey(2), | |
| okodaiin(2), okoey(2), okolaiin(2), okolar(2), okolchey(2), | |
| okolol(2), okolor(2), okols(2), okoraiin(2), qokoiiin(2), | |
| qokom(2), qokorar(2), qokoy(2), cheokor(1), cheokorchey(1), | |
| chokoaiin(1), chokoiin(1), chokoishe(1), chokokor(1), | |
| chokoldy(1), chokolg(1), chokoran(1), chokory(1), dchokol(1), | |
| dokor(1), eeeokor(1), okchokol(1), okoaly(1), okockhy(1), | |
| okodaly(1), okodar(1), okodas(1), okodchy(1), okodeey(1), | |
| okoeese(1), okoeey(1), okoeos(1), okokchal(1), okokchodm(1), | |
| okokom(1), okoksheo(1), okolair(1), okolaldy(1), okolarm(1), | |
| okoldaly(1), okoldam(1), okoldm(1), okoldody(1), okoleeolar(1), | |
| okolraiin(1), okolyd(1), okooky(1), okool(1), okorair(1), | |
| okoral(1), okoraldy(1), okoramog(1), okoroeey(1), okorory(1), | |
| okosd(1), okosy(1), otokol(1), qokoaiin(1), qokoaiis(1), | |
| qokochy(1), qokodaiin(1), qokodal(1), qokodar(1), qokoeey(1), | |
| qokoiir(1), qokoin(1), qokokchy(1), qokokil(1), qokolchedy(1), | |
| qokolchey(1), qokold(1), qokolkain(1), qokolkchdy(1), qokolky(1), | |
| qokololal(1), qokoly(1), qokomo(1), qokool(1), qokoor(1), | |
| qokopy(1), qokoral(1), qokoror(1), qokos(1), qooko(1), | |
| qotokody(1), seokol(1), shoko(1), shokocfhy(1), shokog(1), | |
| shokor(1), shotokody(1), sokod(1), sokol(1), sokoly(1), | |
| tcheoko(1), tokol(1), yokor(1) | |
| okoaiin(2): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ch(1), qo(1) | |
| contains: chokoaiin(1), qokoaiin(1) | |
| okod(3): (word length: 4 / group items: 16) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: ok(7), qo(6), ch(1), sh(1), so(1) | |
| contains: okody(16), qokody(9), qokod(7), chokody(3), okodaiin(2), | |
| okodaly(1), okodar(1), okodas(1), okodchy(1), okodeey(1), | |
| qokodaiin(1), qokodal(1), qokodar(1), qotokody(1), shotokody(1), | |
| sokod(1) | |
| okodaiin(2): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokodaiin(1) | |
| okodar(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokodar(1) | |
| okody(16): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: qo(2), ch(1), sh(1) | |
| contains: qokody(9), chokody(3), qotokody(1), shotokody(1) | |
| okoeey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokoeey(1) | |
| okoiin(9): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), ch(1) | |
| contains: qokoiin(6), chokoiin(1) | |
| okol(83): (word length: 4 / group items: 42) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: ok(22), qo(10), ch(3), so(2), sh(1) | |
| contains: qokol(105), okoldy(8), okoly(5), chokol(4), okolchy(3), | |
| okolo(3), okolshy(3), qokoldy(3), shokol(3), okolaiin(2), | |
| okolar(2), okolchey(2), okolol(2), okolor(2), okols(2), | |
| chokoldy(1), chokolg(1), dchokol(1), okchokol(1), okolair(1), | |
| okolaldy(1), okolarm(1), okoldaly(1), okoldam(1), okoldm(1), | |
| okoldody(1), okoleeolar(1), okolraiin(1), okolyd(1), otokol(1), | |
| qokolchedy(1), qokolchey(1), qokold(1), qokolkain(1), | |
| qokolkchdy(1), qokolky(1), qokololal(1), qokoly(1), seokol(1), | |
| sokol(1), sokoly(1), tokol(1) | |
| okolar(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okolarm(1) | |
| okolchey(2): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokolchey(1) | |
| okoldy(8): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), ch(1) | |
| contains: qokoldy(3), chokoldy(1) | |
| okolo(3): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: ok(2), qo(1) | |
| contains: okolol(2), okolor(2), qokololal(1) | |
| okolol(2): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokololal(1) | |
| okols(2): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1) | |
| contains: okolshy(3) | |
| okoly(5): (word length: 5 / group items: 3) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1), qo(1), so(1) | |
| contains: okolyd(1), qokoly(1), sokoly(1) | |
| okom(7): (word length: 4 / group items: 3) | |
| length: min=5, max=6, avg=5.7 | |
| top prefixes: qo(2), ok(1) | |
| contains: qokom(2), okokom(1), qokomo(1) | |
| okool(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qokool(1) | |
| okor(34): (word length: 4 / group items: 22) | |
| length: min=5, max=11, avg=7.0 | |
| top prefixes: ok(8), ch(6), qo(4), do(1), ee(1) | |
| contains: qokor(36), chokor(6), okory(3), okoraiin(2), qokorar(2), | |
| cheokor(1), cheokorchey(1), chokokor(1), chokoran(1), chokory(1), | |
| dokor(1), eeeokor(1), okorair(1), okoral(1), okoraldy(1), | |
| okoramog(1), okoroeey(1), okorory(1), qokoral(1), qokoror(1), | |
| shokor(1), yokor(1) | |
| okoral(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: okoraldy(1), qokoral(1) | |
| okory(3): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chokory(1) | |
| okos(8): (word length: 4 / group items: 3) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ok(2), qo(1) | |
| contains: okosd(1), okosy(1), qokos(1) | |
| okoy(4): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: qo(1) | |
| contains: qokoy(2) | |
| okseo(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: cheeokseo(1) | |
| okshd(2): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: qo(2), ok(1), sh(1) | |
| contains: qokshdy(4), qokshd(3), okshdy(1), shokshdy(1) | |
| okshdy(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), sh(1) | |
| contains: qokshdy(4), shokshdy(1) | |
| okshed(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), ok(1) | |
| contains: qokshedy(11), okshedy(3) | |
| okshedy(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokshedy(11) | |
| oksheo(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: qo(2), ok(1) | |
| contains: okoksheo(1), qoksheo(1), qoksheoy(1) | |
| okshey(9): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokshey(8) | |
| oksho(4): (word length: 5 / group items: 8) | |
| length: min=6, max=10, avg=7.8 | |
| top prefixes: ok(5), ch(1), qo(1), sh(1) | |
| contains: chokshor(2), okshor(2), okshodeeen(1), okshody(1), okshol(1), | |
| oksholshol(1), qokshol(1), shokshor(1) | |
| okshol(1): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: ok(1), qo(1) | |
| contains: oksholshol(1), qokshol(1) | |
| okshor(2): (word length: 6 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1), sh(1) | |
| contains: chokshor(2), shokshor(1) | |
| okshy(10): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: qo(1), ch(1), fc(1), ok(1) | |
| contains: qokshy(10), chokshy(1), fchokshy(1), okchokshy(1) | |
| oky(102): (word length: 3 / group items: 53) | |
| length: min=4, max=11, avg=6.1 | |
| top prefixes: ok(12), qo(9), ch(7), sh(4), ot(2) | |
| contains: qoky(147), choky(39), cheoky(10), shoky(8), sheoky(6), | |
| otoky(3), ycheoky(3), dcheoky(2), okyd(2), okydy(2), oloky(2), | |
| otchoky(2), qokydy(2), tchoky(2), toky(2), cheooky(1), | |
| chokeeoky(1), chokyt(1), choteoky(1), chsamoky(1), daloky(1), | |
| doky(1), eoky(1), fchoky(1), keoky(1), koky(1), okeoky(1), | |
| okeoloky(1), okooky(1), okydseog(1), okyeeshy(1), okyl(1), | |
| okyld(1), okylky(1), okylor(1), okytaiin(1), oqoky(1), | |
| psheoky(1), qokeeoky(1), qokychdy(1), qokyl(1), qokylddy(1), | |
| qokyr(1), qoteytyqoky(1), qotoky(1), rokyd(1), shokyd(1), | |
| shoqoky(1), tchokyd(1), toeoky(1), tshoky(1), yoky(1), ytchoky(1) | |
| okyd(2): (word length: 4 / group items: 6) | |
| length: min=5, max=8, avg=6.2 | |
| top prefixes: ok(2), qo(1), ro(1), sh(1), tc(1) | |
| contains: okydy(2), qokydy(2), okydseog(1), rokyd(1), shokyd(1), | |
| tchokyd(1) | |
| okydy(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qokydy(2) | |
| okyl(1): (word length: 4 / group items: 5) | |
| length: min=5, max=8, avg=6.0 | |
| top prefixes: ok(3), qo(2) | |
| contains: okyld(1), okylky(1), okylor(1), qokyl(1), qokylddy(1) | |
| okyld(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokylddy(1) | |
| ola(1): (word length: 3 / group items: 98) | |
| length: min=4, max=14, avg=7.0 | |
| top prefixes: ol(24), ch(10), ok(9), po(7), qo(7) | |
| contains: olaiin(52), olain(13), olar(11), polaiin(8), olal(7), olam(6), | |
| cholaiin(4), cholal(4), olaiir(3), olaly(3), qolaiin(3), | |
| qolain(3), cholairy(2), cholar(2), dolar(2), lolain(2), | |
| okolaiin(2), okolar(2), olaldy(2), olalor(2), otolam(2), | |
| polal(2), polar(2), polarar(2), qolal(2), qolar(2), solaiin(2), | |
| yfolaiin(2), chdolaiin(1), cheolaiin(1), chetolain(1), | |
| cholaiim(1), cholaly(1), cholam(1), darolaly(1), dcholal(1), | |
| dolaiin(1), dolaram(1), dolary(1), echkolal(1), fcheolain(1), | |
| folaiin(1), oeola(1), okeolaiin(1), okeolan(1), okeolar(1), | |
| okolair(1), okolaldy(1), okolarm(1), okoleeolar(1), olaen(1), | |
| olaiiin(1), olaiiny(1), olaiior(1), olaikhy(1), olainy(1), | |
| olair(1), olalaiin(1), olald(1), olals(1), olalsy(1), olan(1), | |
| olaraly(1), olaran(1), ololary(1), oolals(1), ooooooooolarsr(1), | |
| opcholalaiin(1), opolaiin(1), opsheolaiin(1), opsholal(1), | |
| orolaly(1), oteolain(1), oteolair(1), oteolar(1), otolaiin(1), | |
| otolaiino(1), otolarol(1), polairy(1), polalchdy(1), polanar(1), | |
| qokololal(1), qolair(1), qotolaiin(1), sholaiin(1), sholalam(1), | |
| sholar(1), solain(1), solair(1), solal(1), teeolain(1), | |
| tolain(1), tolair(1), ykeolal(1), ykolaiin(1), ykolairol(1), | |
| ytolaiin(1), ytolaiir(1) | |
| olaiin(52): (word length: 6 / group items: 20) | |
| length: min=7, max=11, avg=8.1 | |
| top prefixes: ch(3), qo(2), ok(2), op(2), ot(2) | |
| contains: polaiin(8), cholaiin(4), qolaiin(3), okolaiin(2), solaiin(2), | |
| yfolaiin(2), chdolaiin(1), cheolaiin(1), dolaiin(1), folaiin(1), | |
| okeolaiin(1), olaiiny(1), opolaiin(1), opsheolaiin(1), | |
| otolaiin(1), otolaiino(1), qotolaiin(1), sholaiin(1), | |
| ykolaiin(1), ytolaiin(1) | |
| olaiir(3): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yt(1) | |
| contains: ytolaiir(1) | |
| olain(13): (word length: 5 / group items: 9) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: qo(1), lo(1), ch(1), fc(1), ol(1) | |
| contains: qolain(3), lolain(2), chetolain(1), fcheolain(1), olainy(1), | |
| oteolain(1), solain(1), teeolain(1), tolain(1) | |
| olair(1): (word length: 5 / group items: 8) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: ch(1), ok(1), ot(1), po(1), qo(1) | |
| contains: cholairy(2), okolair(1), oteolair(1), polairy(1), qolair(1), | |
| solair(1), tolair(1), ykolairol(1) | |
| olal(7): (word length: 4 / group items: 24) | |
| length: min=5, max=12, avg=6.9 | |
| top prefixes: ol(7), ch(2), po(2), qo(2), op(2) | |
| contains: cholal(4), olaly(3), olaldy(2), olalor(2), polal(2), qolal(2), | |
| cholaly(1), darolaly(1), dcholal(1), echkolal(1), okolaldy(1), | |
| olalaiin(1), olald(1), olals(1), olalsy(1), oolals(1), | |
| opcholalaiin(1), opsholal(1), orolaly(1), polalchdy(1), | |
| qokololal(1), sholalam(1), solal(1), ykeolal(1) | |
| olalaiin(1): (word length: 8 / group items: 1) | |
| length: min=12, max=12, avg=12.0 | |
| top prefixes: op(1) | |
| contains: opcholalaiin(1) | |
| olald(1): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ol(1), ok(1) | |
| contains: olaldy(2), okolaldy(1) | |
| olaldy(2): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okolaldy(1) | |
| olals(1): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1), oo(1) | |
| contains: olalsy(1), oolals(1) | |
| olaly(3): (word length: 5 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ch(1), da(1), or(1) | |
| contains: cholaly(1), darolaly(1), orolaly(1) | |
| olam(6): (word length: 4 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1), ch(1) | |
| contains: otolam(2), cholam(1) | |
| olan(1): (word length: 4 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ok(1), po(1) | |
| contains: okeolan(1), polanar(1) | |
| olar(11): (word length: 4 / group items: 18) | |
| length: min=5, max=14, avg=7.0 | |
| top prefixes: ok(4), do(3), ol(3), po(2), ot(2) | |
| contains: cholar(2), dolar(2), okolar(2), polar(2), polarar(2), | |
| qolar(2), dolaram(1), dolary(1), okeolar(1), okolarm(1), | |
| okoleeolar(1), olaraly(1), olaran(1), ololary(1), | |
| ooooooooolarsr(1), oteolar(1), otolarol(1), sholar(1) | |
| olch(1): (word length: 4 / group items: 131) | |
| length: min=5, max=13, avg=7.8 | |
| top prefixes: ol(49), qo(15), po(10), ch(9), do(8) | |
| contains: olchedy(38), olchey(29), olcheey(13), qolchey(11), | |
| qolchedy(10), olchdy(8), olcheol(8), olchy(8), solchedy(8), | |
| polchedy(6), solchey(4), dolchedy(3), okolchy(3), olched(3), | |
| olcheedy(3), olcheor(3), olchor(3), cholchedy(2), cholchey(2), | |
| dolchey(2), okolchey(2), olchar(2), olchcthy(2), olchdaiin(2), | |
| olchear(2), olcheo(2), olcheody(2), otolchey(2), polchdy(2), | |
| polched(2), polchey(2), qolcheedy(2), qolcheol(2), qolchy(2), | |
| qotolcheo(2), rolchy(2), solcheol(2), cheolchal(1), | |
| cheolchcthy(1), cheolchdaiin(1), cheolchdy(1), cheolchey(1), | |
| cholchaiin(1), cholcham(1), dolchds(1), dolcheedy(1), | |
| dolcheey(1), dolchl(1), dolchoy(1), dolchsyckheol(1), | |
| folchear(1), folchey(1), folchol(1), folchor(1), kcholchdar(1), | |
| keolchey(1), kolchdy(1), kolchedy(1), kolcheey(1), kolches(1), | |
| kolchey(1), lolchor(1), oeeolchy(1), olcha(1), olchad(1), | |
| olchain(1), olchal(1), olcham(1), olchckhy(1), olchdar(1), | |
| olcheckhy(1), olchedaiin(1), olchedr(1), olchedyo(1), | |
| olcheear(1), olcheedar(1), olcheees(1), olcheeey(1), olcheem(1), | |
| olcheeo(1), olcheeol(1), olchees(1), olcheesey(1), olcheety(1), | |
| olchef(1), olcheky(1), olcheom(1), olcheos(1), olchesy(1), | |
| olcho(1), olchocfhy(1), olchod(1), olchoiin(1), olchokal(1), | |
| olchsy(1), ololchey(1), otcholcheaiin(1), otcholchy(1), | |
| oteeolchor(1), otolchcthy(1), otolchd(1), otolches(1), | |
| polchal(1), polchechy(1), polcheolkain(1), polchls(1), polchs(1), | |
| polchy(1), qokairolchdy(1), qokeeolchey(1), qokolchedy(1), | |
| qokolchey(1), qolchdy(1), qolcheey(1), qolcheor(1), qotolchd(1), | |
| qotolchy(1), rarolchl(1), rolchedy(1), rolchey(1), | |
| shopolchedy(1), solchd(1), solchkal(1), solchyd(1), tcheolchy(1), | |
| tolchd(1), tolchdaiin(1), tolchedy(1), tolchor(1), tolchory(1), | |
| ypolcheey(1) | |
| olcha(1): (word length: 5 / group items: 9) | |
| length: min=6, max=10, avg=7.2 | |
| top prefixes: ol(5), ch(3), po(1) | |
| contains: olchar(2), cheolchal(1), cholchaiin(1), cholcham(1), | |
| olchad(1), olchain(1), olchal(1), olcham(1), polchal(1) | |
| olchal(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(1), po(1) | |
| contains: cheolchal(1), polchal(1) | |
| olcham(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: cholcham(1) | |
| olchcthy(2): (word length: 8 / group items: 2) | |
| length: min=10, max=11, avg=10.5 | |
| top prefixes: ch(1), ot(1) | |
| contains: cheolchcthy(1), otolchcthy(1) | |
| olchdaiin(2): (word length: 9 / group items: 2) | |
| length: min=10, max=12, avg=11.0 | |
| top prefixes: ch(1), to(1) | |
| contains: cheolchdaiin(1), tolchdaiin(1) | |
| olchdar(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: kc(1) | |
| contains: kcholchdar(1) | |
| olchdy(8): (word length: 6 / group items: 5) | |
| length: min=7, max=12, avg=8.4 | |
| top prefixes: qo(2), po(1), ch(1), ko(1) | |
| contains: polchdy(2), cheolchdy(1), kolchdy(1), qokairolchdy(1), | |
| qolchdy(1) | |
| olchear(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: fo(1) | |
| contains: folchear(1) | |
| olched(3): (word length: 6 / group items: 15) | |
| length: min=7, max=11, avg=8.3 | |
| top prefixes: ol(4), qo(2), po(2), so(1), do(1) | |
| contains: olchedy(38), qolchedy(10), solchedy(8), polchedy(6), | |
| dolchedy(3), cholchedy(2), polched(2), kolchedy(1), | |
| olchedaiin(1), olchedr(1), olchedyo(1), qokolchedy(1), | |
| rolchedy(1), shopolchedy(1), tolchedy(1) | |
| olchedy(38): (word length: 7 / group items: 11) | |
| length: min=8, max=11, avg=8.5 | |
| top prefixes: qo(2), so(1), po(1), do(1), ch(1) | |
| contains: qolchedy(10), solchedy(8), polchedy(6), dolchedy(3), | |
| cholchedy(2), kolchedy(1), olchedyo(1), qokolchedy(1), | |
| rolchedy(1), shopolchedy(1), tolchedy(1) | |
| olcheedy(3): (word length: 8 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1), do(1) | |
| contains: qolcheedy(2), dolcheedy(1) | |
| olcheeo(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olcheeol(1) | |
| olchees(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ol(1) | |
| contains: olcheesey(1) | |
| olcheey(13): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.2 | |
| top prefixes: do(1), ko(1), qo(1), yp(1) | |
| contains: dolcheey(1), kolcheey(1), qolcheey(1), ypolcheey(1) | |
| olcheo(2): (word length: 6 / group items: 10) | |
| length: min=7, max=12, avg=8.1 | |
| top prefixes: ol(5), qo(3), so(1), po(1) | |
| contains: olcheol(8), olcheor(3), olcheody(2), qolcheol(2), | |
| qotolcheo(2), solcheol(2), olcheom(1), olcheos(1), | |
| polcheolkain(1), qolcheor(1) | |
| olcheol(8): (word length: 7 / group items: 3) | |
| length: min=8, max=12, avg=9.3 | |
| top prefixes: qo(1), so(1), po(1) | |
| contains: qolcheol(2), solcheol(2), polcheolkain(1) | |
| olcheor(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qolcheor(1) | |
| olchey(29): (word length: 6 / group items: 15) | |
| length: min=7, max=11, avg=7.9 | |
| top prefixes: qo(3), ch(2), so(1), do(1), ok(1) | |
| contains: qolchey(11), solchey(4), cholchey(2), dolchey(2), okolchey(2), | |
| otolchey(2), polchey(2), cheolchey(1), folchey(1), keolchey(1), | |
| kolchey(1), ololchey(1), qokeeolchey(1), qokolchey(1), rolchey(1) | |
| olcho(1): (word length: 5 / group items: 12) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: ol(5), fo(2), to(2), do(1), lo(1) | |
| contains: olchor(3), dolchoy(1), folchol(1), folchor(1), lolchor(1), | |
| olchocfhy(1), olchod(1), olchoiin(1), olchokal(1), oteeolchor(1), | |
| tolchor(1), tolchory(1) | |
| olchor(3): (word length: 6 / group items: 5) | |
| length: min=7, max=10, avg=7.8 | |
| top prefixes: to(2), fo(1), lo(1), ot(1) | |
| contains: folchor(1), lolchor(1), oteeolchor(1), tolchor(1), tolchory(1) | |
| olchsy(1): (word length: 6 / group items: 1) | |
| length: min=13, max=13, avg=13.0 | |
| top prefixes: do(1) | |
| contains: dolchsyckheol(1) | |
| olchy(8): (word length: 5 / group items: 9) | |
| length: min=6, max=9, avg=7.3 | |
| top prefixes: qo(2), ok(1), ro(1), oe(1), ot(1) | |
| contains: okolchy(3), qolchy(2), rolchy(2), oeeolchy(1), otcholchy(1), | |
| polchy(1), qotolchy(1), solchyd(1), tcheolchy(1) | |
| old(3): (word length: 3 / group items: 115) | |
| length: min=4, max=10, avg=6.8 | |
| top prefixes: ol(13), ch(13), qo(7), ok(6), ko(6) | |
| contains: oldy(28), otoldy(11), choldy(10), oldaiin(9), okoldy(8), | |
| sholdy(8), koldy(7), oldam(6), oldar(6), cheoldy(5), ytoldy(5), | |
| oldal(3), qokoldy(3), chkoldy(2), cpholdy(2), dold(2), | |
| doldaiin(2), doldy(2), fcholdy(2), koldal(2), loldy(2), | |
| okeoldy(2), oldain(2), oldor(2), ololdy(2), oteoldy(2), poldy(2), | |
| psheoldy(2), sheoldy(2), toldy(2), alold(1), aloldy(1), | |
| cheeoldair(1), cheeoldy(1), cheoldain(1), chodoldy(1), | |
| chokoldy(1), choldaiin(1), choldal(1), choldar(1), choldchy(1), | |
| choldshy(1), ckholdy(1), cthold(1), ctholdar(1), ctholdg(1), | |
| ctholdy(1), daisoldy(1), dcheoldy(1), dcholdy(1), doldam(1), | |
| doldom(1), dolds(1), dsholdy(1), fold(1), foldaiin(1), | |
| koldaky(1), koldarod(1), koltoldy(1), kosholda(1), lkeoldy(1), | |
| ocholdy(1), oeoldan(1), ofsholdy(1), okoldaly(1), okoldam(1), | |
| okoldm(1), okoldody(1), oldaim(1), oldckhy(1), oldeey(1), | |
| olkeeoldy(1), ololdal(1), opcholdg(1), opcholdy(1), orold(1), | |
| orsheoldy(1), otgoldl(1), otoldos(1), otoldyl(1), pcheoldom(1), | |
| poldaiin(1), poldaky(1), poldchody(1), poldshedy(1), qekeoldy(1), | |
| qkholdy(1), qkoldy(1), qokold(1), qoldar(1), qoldy(1), qooldy(1), | |
| qoteold(1), qotoldy(1), rcheold(1), saroldal(1), schold(1), | |
| sheeoldy(1), sheoldam(1), sholdaiin(1), sold(1), soldy(1), | |
| tcholdchy(1), told(1), toldal(1), toldshy(1), tsholdy(1), | |
| yfoldy(1), ykeoldy(1), ykoldam(1), ykoldy(1), ypcholdy(1), | |
| yteeoldy(1), yteold(1), yteoldy(1) | |
| oldaiin(9): (word length: 7 / group items: 5) | |
| length: min=8, max=9, avg=8.4 | |
| top prefixes: do(1), ch(1), fo(1), po(1), sh(1) | |
| contains: doldaiin(2), choldaiin(1), foldaiin(1), poldaiin(1), | |
| sholdaiin(1) | |
| oldain(2): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: cheoldain(1) | |
| oldal(3): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ko(1), ch(1), ok(1), ol(1), sa(1) | |
| contains: koldal(2), choldal(1), okoldaly(1), ololdal(1), saroldal(1), | |
| toldal(1) | |
| oldam(6): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: do(1), ok(1), sh(1), yk(1) | |
| contains: doldam(1), okoldam(1), sheoldam(1), ykoldam(1) | |
| oldar(6): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: ch(1), ct(1), ko(1), qo(1) | |
| contains: choldar(1), ctholdar(1), koldarod(1), qoldar(1) | |
| oldy(28): (word length: 4 / group items: 53) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: ch(6), qo(4), ot(3), sh(3), yt(3) | |
| contains: otoldy(11), choldy(10), okoldy(8), sholdy(8), koldy(7), | |
| cheoldy(5), ytoldy(5), qokoldy(3), chkoldy(2), cpholdy(2), | |
| doldy(2), fcholdy(2), loldy(2), okeoldy(2), ololdy(2), | |
| oteoldy(2), poldy(2), psheoldy(2), sheoldy(2), toldy(2), | |
| aloldy(1), cheeoldy(1), chodoldy(1), chokoldy(1), ckholdy(1), | |
| ctholdy(1), daisoldy(1), dcheoldy(1), dcholdy(1), dsholdy(1), | |
| koltoldy(1), lkeoldy(1), ocholdy(1), ofsholdy(1), olkeeoldy(1), | |
| opcholdy(1), orsheoldy(1), otoldyl(1), qekeoldy(1), qkholdy(1), | |
| qkoldy(1), qoldy(1), qooldy(1), qotoldy(1), sheeoldy(1), | |
| soldy(1), tsholdy(1), yfoldy(1), ykeoldy(1), ykoldy(1), | |
| ypcholdy(1), yteeoldy(1), yteoldy(1) | |
| oleed(1): (word length: 5 / group items: 4) | |
| length: min=6, max=10, avg=7.2 | |
| top prefixes: ol(2), do(1), po(1) | |
| contains: oleedy(3), doleed(1), oleedar(1), poleedaran(1) | |
| oleedar(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: po(1) | |
| contains: poleedaran(1) | |
| oleeed(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ol(1) | |
| contains: oleeedy(2) | |
| oleeey(3): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: do(1), yr(1) | |
| contains: doleeey(1), yroleeey(1) | |
| oleeo(1): (word length: 5 / group items: 3) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: ol(1), ok(1), po(1) | |
| contains: oleeol(2), okoleeolar(1), poleeol(1) | |
| oleeol(2): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: ok(1), po(1) | |
| contains: okoleeolar(1), poleeol(1) | |
| oleey(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(1) | |
| contains: sholeey(1) | |
| olfaiin(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: sholfaiin(1) | |
| olfchedy(4): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: do(1) | |
| contains: dolfchedy(1) | |
| olfchor(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: sholfchor(1) | |
| olfor(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: cholfor(1) | |
| olfy(1): (word length: 4 / group items: 2) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ch(1), op(1) | |
| contains: cholfy(1), opcheolfy(1) | |
| olk(1): (word length: 3 / group items: 197) | |
| length: min=4, max=12, avg=7.6 | |
| top prefixes: ol(74), ch(24), qo(21), sh(12), so(10) | |
| contains: olkeedy(42), olkeey(40), olkain(33), olkaiin(31), olkedy(27), | |
| olky(22), olkar(19), olkey(12), olkal(11), olkam(9), olkeeey(9), | |
| olkeeody(7), olkeol(7), qolkeedy(7), olkchedy(6), qolkeey(6), | |
| olkol(5), qolkain(5), solkeedy(5), cholkaiin(4), cholky(4), | |
| olkair(4), olkchdy(4), olkchey(4), olkchy(4), olkeeo(4), | |
| olkor(4), qolky(4), solkeey(4), cholkal(3), cholkar(3), | |
| cholkeedy(3), olkeechy(3), olkeeedy(3), olkees(3), solkaiin(3), | |
| solkain(3), solkedy(3), cheolkeedy(2), cholkain(2), cholkeeey(2), | |
| lolkaiin(2), olkechy(2), olkedaiin(2), olkeear(2), olkeeor(2), | |
| olkeody(2), pcholky(2), qolkaiin(2), sholkeedy(2), tolkain(2), | |
| arolkeey(1), arolky(1), chalolky(1), cheolkain(1), cheolkary(1), | |
| cheolkedy(1), cheolkeepchy(1), cheolkeey(1), cheolky(1), | |
| cholkched(1), cholkcheol(1), cholkchy(1), cholkeeedy(1), | |
| cholkeey(1), cholkeod(1), cholkshedy(1), choolkeey(1), | |
| chorolk(1), cpholkaiin(1), daiiiolkaiin(1), dolkain(1), | |
| dolkchy(1), dolkedy(1), dolkeedy(1), kaolkar(1), kolkar(1), | |
| kolkedy(1), kolky(1), lcholkaiin(1), lolkair(1), lolkedy(1), | |
| lolkeol(1), okeeolkcheey(1), okeolkey(1), olkady(1), olkaiir(1), | |
| olkaim(1), olkais(1), olkalaiin(1), olkalol(1), olkaly(1), | |
| olkao(1), olkardam(1), olkchdal(1), olkcho(1), olkchokeedy(1), | |
| olkchs(1), olkeal(1), olked(1), olkee(1), olkeeal(1), | |
| olkeechdy(1), olkeechey(1), olkeed(1), olkeedain(1), olkeedal(1), | |
| olkeeeary(1), olkeeed(1), olkeees(1), olkeeodal(1), olkeeol(1), | |
| olkeeoldy(1), olkeeoly(1), olkeeos(1), olkeeshy(1), | |
| olkeeycthy(1), olkeeyr(1), olkeor(1), olkeoy(1), olkeshar(1), | |
| olkeshey(1), olkiir(1), olkl(1), olko(1), olkory(1), olkshdy(1), | |
| olkshed(1), olkshedy(1), olkshey(1), opolkeor(1), opolkod(1), | |
| orolkain(1), oteeolkeey(1), otolkshy(1), otolky(1), pcheolkal(1), | |
| pcholkal(1), pcholkchdy(1), pcholkeedy(1), polcheolkain(1), | |
| polkchy(1), polkeedal(1), polkeeey(1), polkeeo(1), polkeey(1), | |
| polkiin(1), polky(1), qokolkain(1), qokolkchdy(1), qokolky(1), | |
| qolkary(1), qolkchy(1), qolkedy(1), qolkeeey(1), qolkeshdy(1), | |
| qolkey(1), qolkshey(1), qoolkaiin(1), qoolkal(1), qoolkeedy(1), | |
| qoolkeey(1), qopolkain(1), qotlolkal(1), qsolkeedy(1), rolkam(1), | |
| rolkeedy(1), rolkeey(1), sheolkain(1), sheolkchy(1), | |
| sheolkeal(1), sheolkedy(1), sheolkeedy(1), sheolkeey(1), | |
| sholkair(1), sholkal(1), sholkar(1), sholkeechy(1), sholkshy(1), | |
| solkchedy(1), solkchy(1), solkes(1), solkey(1), solky(1), | |
| tcholkaiin(1), teolkechey(1), teolkedain(1), tolkal(1), | |
| tolkchdy(1), tolkeeedy(1), tolkeol(1), tolkey(1), tolkshey(1), | |
| ycheolk(1), ykairolky(1), yolkol(1), ytolkal(1) | |
| olkaiin(31): (word length: 7 / group items: 9) | |
| length: min=8, max=12, avg=9.3 | |
| top prefixes: qo(2), ch(1), so(1), lo(1), cp(1) | |
| contains: cholkaiin(4), solkaiin(3), lolkaiin(2), qolkaiin(2), | |
| cpholkaiin(1), daiiiolkaiin(1), lcholkaiin(1), qoolkaiin(1), | |
| tcholkaiin(1) | |
| olkain(33): (word length: 6 / group items: 11) | |
| length: min=7, max=12, avg=8.4 | |
| top prefixes: qo(3), ch(2), so(1), to(1), do(1) | |
| contains: qolkain(5), solkain(3), cholkain(2), tolkain(2), cheolkain(1), | |
| dolkain(1), orolkain(1), polcheolkain(1), qokolkain(1), | |
| qopolkain(1), sheolkain(1) | |
| olkair(4): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: lo(1), sh(1) | |
| contains: lolkair(1), sholkair(1) | |
| olkal(11): (word length: 5 / group items: 11) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ol(3), pc(2), qo(2), ch(1), sh(1) | |
| contains: cholkal(3), olkalaiin(1), olkalol(1), olkaly(1), pcheolkal(1), | |
| pcholkal(1), qoolkal(1), qotlolkal(1), sholkal(1), tolkal(1), | |
| ytolkal(1) | |
| olkam(9): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ro(1) | |
| contains: rolkam(1) | |
| olkar(19): (word length: 5 / group items: 7) | |
| length: min=6, max=9, avg=7.3 | |
| top prefixes: ch(2), ka(1), ko(1), ol(1), qo(1) | |
| contains: cholkar(3), cheolkary(1), kaolkar(1), kolkar(1), olkardam(1), | |
| qolkary(1), sholkar(1) | |
| olkchdy(4): (word length: 7 / group items: 3) | |
| length: min=8, max=10, avg=9.3 | |
| top prefixes: pc(1), qo(1), to(1) | |
| contains: pcholkchdy(1), qokolkchdy(1), tolkchdy(1) | |
| olkchedy(6): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: so(1) | |
| contains: solkchedy(1) | |
| olkcho(1): (word length: 6 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ol(1) | |
| contains: olkchokeedy(1) | |
| olkchy(4): (word length: 6 / group items: 6) | |
| length: min=7, max=9, avg=7.5 | |
| top prefixes: ch(1), do(1), po(1), qo(1), sh(1) | |
| contains: cholkchy(1), dolkchy(1), polkchy(1), qolkchy(1), sheolkchy(1), | |
| solkchy(1) | |
| olkeal(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: sheolkeal(1) | |
| olked(1): (word length: 5 / group items: 10) | |
| length: min=6, max=10, avg=7.8 | |
| top prefixes: ol(2), so(1), ch(1), do(1), ko(1) | |
| contains: olkedy(27), solkedy(3), olkedaiin(2), cheolkedy(1), | |
| dolkedy(1), kolkedy(1), lolkedy(1), qolkedy(1), sheolkedy(1), | |
| teolkedain(1) | |
| olkedy(27): (word length: 6 / group items: 7) | |
| length: min=7, max=9, avg=7.6 | |
| top prefixes: so(1), ch(1), do(1), ko(1), lo(1) | |
| contains: solkedy(3), cheolkedy(1), dolkedy(1), kolkedy(1), lolkedy(1), | |
| qolkedy(1), sheolkedy(1) | |
| olkee(1): (word length: 5 / group items: 58) | |
| length: min=6, max=12, avg=8.2 | |
| top prefixes: ol(27), ch(8), qo(5), sh(4), po(4) | |
| contains: olkeedy(42), olkeey(40), olkeeey(9), olkeeody(7), qolkeedy(7), | |
| qolkeey(6), solkeedy(5), olkeeo(4), solkeey(4), cholkeedy(3), | |
| olkeechy(3), olkeeedy(3), olkees(3), cheolkeedy(2), cholkeeey(2), | |
| olkeear(2), olkeeor(2), sholkeedy(2), arolkeey(1), | |
| cheolkeepchy(1), cheolkeey(1), cholkeeedy(1), cholkeey(1), | |
| choolkeey(1), dolkeedy(1), olkeeal(1), olkeechdy(1), | |
| olkeechey(1), olkeed(1), olkeedain(1), olkeedal(1), olkeeeary(1), | |
| olkeeed(1), olkeees(1), olkeeodal(1), olkeeol(1), olkeeoldy(1), | |
| olkeeoly(1), olkeeos(1), olkeeshy(1), olkeeycthy(1), olkeeyr(1), | |
| oteeolkeey(1), pcholkeedy(1), polkeedal(1), polkeeey(1), | |
| polkeeo(1), polkeey(1), qolkeeey(1), qoolkeedy(1), qoolkeey(1), | |
| qsolkeedy(1), rolkeedy(1), rolkeey(1), sheolkeedy(1), | |
| sheolkeey(1), sholkeechy(1), tolkeeedy(1) | |
| olkeechy(3): (word length: 8 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: sh(1) | |
| contains: sholkeechy(1) | |
| olkeed(1): (word length: 6 / group items: 15) | |
| length: min=7, max=10, avg=8.7 | |
| top prefixes: ol(3), qo(2), ch(2), sh(2), so(1) | |
| contains: olkeedy(42), qolkeedy(7), solkeedy(5), cholkeedy(3), | |
| cheolkeedy(2), sholkeedy(2), dolkeedy(1), olkeedain(1), | |
| olkeedal(1), pcholkeedy(1), polkeedal(1), qoolkeedy(1), | |
| qsolkeedy(1), rolkeedy(1), sheolkeedy(1) | |
| olkeedal(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: po(1) | |
| contains: polkeedal(1) | |
| olkeedy(42): (word length: 7 / group items: 11) | |
| length: min=8, max=10, avg=8.9 | |
| top prefixes: qo(2), ch(2), sh(2), so(1), do(1) | |
| contains: qolkeedy(7), solkeedy(5), cholkeedy(3), cheolkeedy(2), | |
| sholkeedy(2), dolkeedy(1), pcholkeedy(1), qoolkeedy(1), | |
| qsolkeedy(1), rolkeedy(1), sheolkeedy(1) | |
| olkeeed(1): (word length: 7 / group items: 3) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: ol(1), ch(1), to(1) | |
| contains: olkeeedy(3), cholkeeedy(1), tolkeeedy(1) | |
| olkeeedy(3): (word length: 8 / group items: 2) | |
| length: min=9, max=10, avg=9.5 | |
| top prefixes: ch(1), to(1) | |
| contains: cholkeeedy(1), tolkeeedy(1) | |
| olkeeey(9): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: ch(1), po(1), qo(1) | |
| contains: cholkeeey(2), polkeeey(1), qolkeeey(1) | |
| olkeeo(4): (word length: 6 / group items: 8) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: ol(7), po(1) | |
| contains: olkeeody(7), olkeeor(2), olkeeodal(1), olkeeol(1), | |
| olkeeoldy(1), olkeeoly(1), olkeeos(1), polkeeo(1) | |
| olkeeol(1): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ol(2) | |
| contains: olkeeoldy(1), olkeeoly(1) | |
| olkees(3): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olkeeshy(1) | |
| olkeey(40): (word length: 6 / group items: 13) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: ch(3), qo(2), ol(2), so(1), ar(1) | |
| contains: qolkeey(6), solkeey(4), arolkeey(1), cheolkeey(1), | |
| cholkeey(1), choolkeey(1), olkeeycthy(1), olkeeyr(1), | |
| oteeolkeey(1), polkeey(1), qoolkeey(1), rolkeey(1), sheolkeey(1) | |
| olkeol(7): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: lo(1), to(1) | |
| contains: lolkeol(1), tolkeol(1) | |
| olkeor(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(1) | |
| contains: opolkeor(1) | |
| olkey(12): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=6.5 | |
| top prefixes: ok(1), qo(1), so(1), to(1) | |
| contains: okeolkey(1), qolkey(1), solkey(1), tolkey(1) | |
| olko(1): (word length: 4 / group items: 5) | |
| length: min=5, max=7, avg=5.8 | |
| top prefixes: ol(3), op(1), yo(1) | |
| contains: olkol(5), olkor(4), olkory(1), opolkod(1), yolkol(1) | |
| olkol(5): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: yo(1) | |
| contains: yolkol(1) | |
| olkor(4): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1) | |
| contains: olkory(1) | |
| olkshed(1): (word length: 7 / group items: 2) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: ch(1), ol(1) | |
| contains: cholkshedy(1), olkshedy(1) | |
| olkshedy(1): (word length: 8 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: cholkshedy(1) | |
| olkshey(1): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1), to(1) | |
| contains: qolkshey(1), tolkshey(1) | |
| olky(22): (word length: 4 / group items: 12) | |
| length: min=5, max=9, avg=6.3 | |
| top prefixes: ch(3), qo(2), pc(1), ar(1), ko(1) | |
| contains: cholky(4), qolky(4), pcholky(2), arolky(1), chalolky(1), | |
| cheolky(1), kolky(1), otolky(1), polky(1), qokolky(1), solky(1), | |
| ykairolky(1) | |
| oll(3): (word length: 3 / group items: 4) | |
| length: min=5, max=9, avg=6.5 | |
| top prefixes: ol(3), sh(1) | |
| contains: ollchy(2), ollain(1), olldy(1), shokeolls(1) | |
| olo(5): (word length: 3 / group items: 110) | |
| length: min=4, max=12, avg=6.6 | |
| top prefixes: ol(31), ot(12), ch(9), sh(8), ok(6) | |
| contains: olor(31), olol(18), cholody(5), cholor(5), oloiin(5), | |
| cholo(3), okolo(3), olom(3), cheolor(2), cholol(2), cholols(2), | |
| dolor(2), okolol(2), okolor(2), oloky(2), ololdy(2), olols(2), | |
| olos(2), oloy(2), opcholor(2), otolor(2), polor(2), sheolol(2), | |
| tcholol(2), alolor(1), arolor(1), chololer(1), chololy(1), | |
| choloro(1), ctholo(1), dolo(1), dolody(1), dolol(1), eeeoloy(1), | |
| ekeolol(1), folor(1), folorarom(1), fsholom(1), keolor(1), | |
| kolor(1), kolotam(1), ksholochey(1), lolol(1), lolom(1), | |
| lolor(1), okeoloky(1), okeolol(1), okeolor(1), oloaiin(1), | |
| olockhy(1), olody(1), oloeedy(1), oloeeedy(1), oloeeey(1), | |
| oloeorain(1), oloesdr(1), olohy(1), oloiir(1), oloin(1), | |
| oloiram(1), olokar(1), ololary(1), ololchey(1), ololdal(1), | |
| ololy(1), oloraiin(1), olord(1), oloro(1), olorol(1), | |
| olotchedy(1), opoloiin(1), orolodain(1), otcheolom(1), | |
| otcholocthol(1), otoloaiin(1), otoloaram(1), otolodal(1), | |
| otolol(1), otololees(1), otolom(1), otolopaiin(1), otolosheey(1), | |
| otoloty(1), pcholor(1), qokeolo(1), qokololal(1), qolody(1), | |
| qolol(1), qotolo(1), qotolol(1), roloty(1), sheeolody(1), | |
| sheolo(1), sheolor(1), sholo(1), sholoiin(1), sholol(1), | |
| sholor(1), soloiin(1), solol(1), solor(1), tolokeedy(1), | |
| tolol(1), tolor(1), tolos(1), tsholol(1), ykolody(1), ykoloin(1), | |
| ykolor(1), ypolol(1) | |
| oloaiin(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ot(1) | |
| contains: otoloaiin(1) | |
| olody(1): (word length: 5 / group items: 5) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: ch(1), do(1), qo(1), sh(1), yk(1) | |
| contains: cholody(5), dolody(1), qolody(1), sheeolody(1), ykolody(1) | |
| oloiin(5): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: op(1), sh(1), so(1) | |
| contains: opoloiin(1), sholoiin(1), soloiin(1) | |
| oloin(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yk(1) | |
| contains: ykoloin(1) | |
| oloky(2): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okeoloky(1) | |
| olol(18): (word length: 4 / group items: 27) | |
| length: min=5, max=9, avg=6.5 | |
| top prefixes: ol(6), ch(4), qo(3), ok(2), sh(2) | |
| contains: cholol(2), cholols(2), okolol(2), ololdy(2), olols(2), | |
| sheolol(2), tcholol(2), chololer(1), chololy(1), dolol(1), | |
| ekeolol(1), lolol(1), okeolol(1), ololary(1), ololchey(1), | |
| ololdal(1), ololy(1), otolol(1), otololees(1), qokololal(1), | |
| qolol(1), qotolol(1), sholol(1), solol(1), tolol(1), tsholol(1), | |
| ypolol(1) | |
| olols(2): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: cholols(2) | |
| ololy(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chololy(1) | |
| olom(3): (word length: 4 / group items: 4) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: ot(2), fs(1), lo(1) | |
| contains: fsholom(1), lolom(1), otcheolom(1), otolom(1) | |
| olor(31): (word length: 4 / group items: 26) | |
| length: min=5, max=9, avg=6.1 | |
| top prefixes: ol(4), ch(3), ok(2), fo(2), sh(2) | |
| contains: cholor(5), cheolor(2), dolor(2), okolor(2), opcholor(2), | |
| otolor(2), polor(2), alolor(1), arolor(1), choloro(1), folor(1), | |
| folorarom(1), keolor(1), kolor(1), lolor(1), okeolor(1), | |
| oloraiin(1), olord(1), oloro(1), olorol(1), pcholor(1), | |
| sheolor(1), sholor(1), solor(1), tolor(1), ykolor(1) | |
| oloro(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(1), ol(1) | |
| contains: choloro(1), olorol(1) | |
| olos(2): (word length: 4 / group items: 2) | |
| length: min=5, max=10, avg=7.5 | |
| top prefixes: ot(1), to(1) | |
| contains: otolosheey(1), tolos(1) | |
| oloy(2): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ee(1) | |
| contains: eeeoloy(1) | |
| olqo(1): (word length: 4 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: yk(1) | |
| contains: ykcholqod(1) | |
| olr(6): (word length: 3 / group items: 8) | |
| length: min=4, max=9, avg=6.5 | |
| top prefixes: ol(2), ch(1), cp(1), do(1), fo(1) | |
| contains: cholraly(1), cpholrory(1), dolr(1), folr(1), okolraiin(1), | |
| olraiin(1), olrodar(1), qolr(1) | |
| olraiin(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ok(1) | |
| contains: okolraiin(1) | |
| ols(18): (word length: 3 / group items: 114) | |
| length: min=4, max=11, avg=7.0 | |
| top prefixes: ol(26), ch(8), qo(8), po(7), to(7) | |
| contains: olshedy(23), olshey(11), olsheey(7), olshdy(4), olsheol(4), | |
| cheols(3), chols(3), chotols(3), okolshy(3), olsho(3), olshy(3), | |
| polshy(3), sheols(3), sols(3), solshedy(3), alols(2), cholols(2), | |
| cthols(2), dolshedy(2), okols(2), olols(2), olsaiin(2), olsar(2), | |
| olshed(2), olsheor(2), olsy(2), qolshedy(2), qolsheedy(2), | |
| qolshey(2), qolshy(2), tchols(2), ykeols(2), airols(1), | |
| alolshedy(1), arolsas(1), cheolshy(1), cholsho(1), | |
| chorcholsal(1), chtols(1), ckholsy(1), dalols(1), darolsy(1), | |
| dolsain(1), dolshed(1), dolshy(1), folshody(1), keeolshey(1), | |
| kolschees(1), kolshd(1), kolshes(1), kolsho(1), korols(1), | |
| lcheolshedy(1), lols(1), lolsaiiin(1), ocholshod(1), okeols(1), | |
| okeolshey(1), oksholshol(1), olsain(1), olsaly(1), olseeg(1), | |
| olsey(1), olshalsy(1), olsheed(1), olsheedy(1), olsheeosol(1), | |
| olshees(1), olsheod(1), olsheody(1), olshly(1), olshty(1), | |
| oolsal(1), opolsy(1), oshepols(1), oteeols(1), otolsar(1), | |
| otolsheeos(1), polsaisy(1), polshdal(1), polshdy(1), polshol(1), | |
| polshor(1), porshols(1), qolsa(1), qolshdy(1), qolsheey(1), | |
| qolsor(1), rolsheedy(1), rolshey(1), rolsy(1), salols(1), | |
| sarols(1), sheolshody(1), shols(1), sholschey(1), sholshdy(1), | |
| solshed(1), solshey(1), sorols(1), tcholshol(1), teols(1), | |
| teolshy(1), tolsasy(1), tolsheo(1), tolsheol(1), tolshey(1), | |
| tolshosor(1), tolshy(1), torolshsdy(1), ykeeols(1), yols(1), | |
| yolsheey(1), ysholshy(1) | |
| olsain(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: do(1) | |
| contains: dolsain(1) | |
| olsar(2): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otolsar(1) | |
| olshdy(4): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: po(1), qo(1), sh(1) | |
| contains: polshdy(1), qolshdy(1), sholshdy(1) | |
| olshed(2): (word length: 6 / group items: 8) | |
| length: min=7, max=11, avg=8.1 | |
| top prefixes: so(2), do(2), ol(1), qo(1), al(1) | |
| contains: olshedy(23), solshedy(3), dolshedy(2), qolshedy(2), | |
| alolshedy(1), dolshed(1), lcheolshedy(1), solshed(1) | |
| olshedy(23): (word length: 7 / group items: 5) | |
| length: min=8, max=11, avg=8.8 | |
| top prefixes: so(1), do(1), qo(1), al(1), lc(1) | |
| contains: solshedy(3), dolshedy(2), qolshedy(2), alolshedy(1), | |
| lcheolshedy(1) | |
| olsheed(1): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.7 | |
| top prefixes: qo(1), ol(1), ro(1) | |
| contains: qolsheedy(2), olsheedy(1), rolsheedy(1) | |
| olsheedy(1): (word length: 8 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1), ro(1) | |
| contains: qolsheedy(2), rolsheedy(1) | |
| olsheey(7): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1), yo(1) | |
| contains: qolsheey(1), yolsheey(1) | |
| olsheod(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olsheody(1) | |
| olsheol(4): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: to(1) | |
| contains: tolsheol(1) | |
| olshey(11): (word length: 6 / group items: 6) | |
| length: min=7, max=9, avg=7.7 | |
| top prefixes: qo(1), ke(1), ok(1), ro(1), so(1) | |
| contains: qolshey(2), keeolshey(1), okeolshey(1), rolshey(1), | |
| solshey(1), tolshey(1) | |
| olsho(3): (word length: 5 / group items: 10) | |
| length: min=6, max=10, avg=8.2 | |
| top prefixes: po(2), ch(1), fo(1), ko(1), oc(1) | |
| contains: cholsho(1), folshody(1), kolsho(1), ocholshod(1), | |
| oksholshol(1), polshol(1), polshor(1), sheolshody(1), | |
| tcholshol(1), tolshosor(1) | |
| olshy(3): (word length: 5 / group items: 8) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ok(1), po(1), qo(1), ch(1), do(1) | |
| contains: okolshy(3), polshy(3), qolshy(2), cheolshy(1), dolshy(1), | |
| teolshy(1), tolshy(1), ysholshy(1) | |
| olsy(2): (word length: 4 / group items: 4) | |
| length: min=5, max=7, avg=6.2 | |
| top prefixes: ck(1), da(1), op(1), ro(1) | |
| contains: ckholsy(1), darolsy(1), opolsy(1), rolsy(1) | |
| oltaiin(2): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: choltaiin(1) | |
| oltain(2): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: cheoltain(1) | |
| oltal(2): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(2) | |
| contains: choltal(1), choltaly(1) | |
| oltam(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: choltam(1) | |
| oltar(3): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(2) | |
| contains: cheoltar(1), choltar(1) | |
| oltedy(5): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qoltedy(1) | |
| olteedy(3): (word length: 7 / group items: 4) | |
| length: min=8, max=10, avg=8.5 | |
| top prefixes: qo(1), so(1), te(1), to(1) | |
| contains: qolteedy(1), solteedy(1), teeolteedy(1), tolteedy(1) | |
| olteeedy(1): (word length: 8 / group items: 1) | |
| length: min=13, max=13, avg=13.0 | |
| top prefixes: ch(1) | |
| contains: cheopolteeedy(1) | |
| oltey(1): (word length: 5 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sh(1), ch(1) | |
| contains: sheoltey(2), cheoltey(1) | |
| olty(1): (word length: 4 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1), ch(1) | |
| contains: oltydy(2), cholty(1) | |
| oly(57): (word length: 3 / group items: 77) | |
| length: min=4, max=10, avg=6.1 | |
| top prefixes: ch(8), qo(7), ok(5), sh(5), ot(4) | |
| contains: choly(15), otoly(11), loly(7), qoly(7), okeoly(6), cheoly(5), | |
| okoly(5), ctholy(4), sholy(4), aloly(3), doly(3), koly(3), | |
| oroly(3), roly(3), soly(3), okeeoly(2), opoly(2), oteoly(2), | |
| pcholy(2), poly(2), qokeoly(2), toly(2), ykoly(2), aiioly(1), | |
| chaloly(1), chdoly(1), chefoly(1), chkchykoly(1), chololy(1), | |
| choteoly(1), ckholy(1), ctheoly(1), daoly(1), dcholy(1), | |
| dsholy(1), dsholyd(1), dytoly(1), eeeoly(1), ereoly(1), | |
| fcholy(1), kcheoly(1), kcholy(1), keeoly(1), keoly(1), kolyky(1), | |
| ltsholy(1), ocholy(1), oeeoly(1), ofoly(1), okecholy(1), | |
| okolyd(1), olcfholy(1), olkeeoly(1), ololy(1), olytol(1), | |
| oraloly(1), otcheoly(1), oteeoly(1), pcheoly(1), polyshy(1), | |
| qoctholy(1), qokoly(1), qopcholy(1), qoteoly(1), qotoly(1), | |
| sheeoly(1), sheoly(1), sheoteoly(1), shotoly(1), sokoly(1), | |
| tcholy(1), ydoly(1), ykcholy(1), ykeeoly(1), ypcholy(1), | |
| ypsholy(1), yroly(1) | |
| omam(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: cheomam(1) | |
| ooiin(1): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: ko(1), pc(1), qo(1) | |
| contains: kooiin(2), pchooiin(1), qooiin(1) | |
| oor(3): (word length: 3 / group items: 16) | |
| length: min=4, max=8, avg=5.9 | |
| top prefixes: qo(4), sh(3), ch(2), ck(1), ct(1) | |
| contains: qoor(8), choor(2), cheoor(1), ckhoor(1), cthoor(1), ooror(1), | |
| oqoor(1), pcheoor(1), qokoor(1), qoorar(1), qoteoor(1), | |
| shcphoor(1), sheoor(1), shoor(1), tairoor(1), yteoor(1) | |
| opa(1): (word length: 3 / group items: 55) | |
| length: min=4, max=10, avg=6.6 | |
| top prefixes: op(40), qo(9), ch(2), ot(2), sh(1) | |
| contains: opaiin(13), opar(10), opal(9), qopaiin(6), qopar(5), opair(4), | |
| opam(4), opary(3), opain(2), opalal(2), opalkaiin(2), opalor(2), | |
| qopal(2), cheopaiin(1), chopar(1), opaichy(1), opaiim(1), | |
| opaiinar(1), opaiir(1), opaiiral(1), opaiis(1), opail(1), | |
| opailo(1), opaim(1), opairaly(1), opairam(1), opakam(1), | |
| opalam(1), opalar(1), opalchdy(1), opaldaiin(1), opaldy(1), | |
| opalefom(1), opalg(1), opalkam(1), opalkar(1), opalke(1), | |
| opaloiiry(1), opals(1), opalshedy(1), opaly(1), oparairdly(1), | |
| oparal(1), oparam(1), opasy(1), otolopaiin(1), otoltopar(1), | |
| qopaiim(1), qopairam(1), qopalor(1), qopam(1), qoparaiin(1), | |
| qopary(1), shsopam(1), topaiin(1) | |
| opaiim(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qopaiim(1) | |
| opaiin(13): (word length: 6 / group items: 5) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: qo(1), ch(1), op(1), ot(1), to(1) | |
| contains: qopaiin(6), cheopaiin(1), opaiinar(1), otolopaiin(1), | |
| topaiin(1) | |
| opaiir(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(1) | |
| contains: opaiiral(1) | |
| opail(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: op(1) | |
| contains: opailo(1) | |
| opair(4): (word length: 5 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: op(2), qo(1) | |
| contains: opairaly(1), opairam(1), qopairam(1) | |
| opairam(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qopairam(1) | |
| opal(9): (word length: 4 / group items: 19) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: op(17), qo(2) | |
| contains: opalal(2), opalkaiin(2), opalor(2), qopal(2), opalam(1), | |
| opalar(1), opalchdy(1), opaldaiin(1), opaldy(1), opalefom(1), | |
| opalg(1), opalkam(1), opalkar(1), opalke(1), opaloiiry(1), | |
| opals(1), opalshedy(1), opaly(1), qopalor(1) | |
| opalor(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qopalor(1) | |
| opals(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: op(1) | |
| contains: opalshedy(1) | |
| opam(4): (word length: 4 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: qo(1), sh(1) | |
| contains: qopam(1), shsopam(1) | |
| opar(10): (word length: 4 / group items: 9) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: op(4), qo(3), ch(1), ot(1) | |
| contains: qopar(5), opary(3), chopar(1), oparairdly(1), oparal(1), | |
| oparam(1), otoltopar(1), qoparaiin(1), qopary(1) | |
| opary(3): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qopary(1) | |
| opch(1): (word length: 4 / group items: 109) | |
| length: min=5, max=12, avg=7.8 | |
| top prefixes: op(59), qo(34), ch(10), sh(4), yq(1) | |
| contains: opchedy(50), qopchedy(32), opchey(29), opchdy(19), opchy(15), | |
| qopchdy(15), qopchy(11), qopchey(10), opcheol(8), opchol(6), | |
| opchor(6), qopchol(6), chopchy(5), opcheey(5), opchedaiin(4), | |
| qopcheey(4), opchal(3), opcheedy(3), opcheody(3), qopchor(3), | |
| chopchedy(2), chopchey(2), opchar(2), opchear(2), opched(2), | |
| opcheor(2), opches(2), opchody(2), opcholor(2), opchsd(2), | |
| qopchar(2), qopcheedy(2), qopcheody(2), qopcheos(2), shopchey(2), | |
| shopcho(2), shopchy(2), cheopcheod(1), chopchal(1), chopchdy(1), | |
| chopcheey(1), chopcheopchy(1), chopcho(1), chopchol(1), | |
| opchaiin(1), opchaikhy(1), opchaldy(1), opchaly(1), | |
| opcharoiin(1), opchdain(1), opchdal(1), opchdar(1), opchdard(1), | |
| opcheaiin(1), opchealol(1), opcheas(1), opchedal(1), opcheddl(1), | |
| opcheear(1), opcheed(1), opcheedoy(1), opcheeky(1), opcheeo(1), | |
| opcheeol(1), opchees(1), opchekaiin(1), opchekan(1), opcheo(1), | |
| opcheocf(1), opcheodair(1), opcheodal(1), opcheolfy(1), | |
| opchepy(1), opchety(1), opcho(1), opchod(1), opcholalaiin(1), | |
| opcholdg(1), opcholdy(1), opchordy(1), opchosam(1), opchsey(1), | |
| opchytcy(1), qopchaiin(1), qopchais(1), qopcham(1), qopchcfhy(1), | |
| qopchchs(1), qopchd(1), qopchear(1), qopchedaiin(1), | |
| qopchedal(1), qopcheddy(1), qopchedyd(1), qopcheeody(1), | |
| qopcheoain(1), qopcheol(1), qopcher(1), qopches(1), qopchesy(1), | |
| qopchety(1), qopchody(1), qopcholy(1), qopchsd(1), qopchypcho(1), | |
| qopchyr(1), sheopchy(1), yqopchy(1), ytoeopchey(1) | |
| opchaiin(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qopchaiin(1) | |
| opchal(3): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: op(2), ch(1) | |
| contains: chopchal(1), opchaldy(1), opchaly(1) | |
| opchar(2): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: qo(1), op(1) | |
| contains: qopchar(2), opcharoiin(1) | |
| opchdar(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(1) | |
| contains: opchdard(1) | |
| opchdy(19): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), ch(1) | |
| contains: qopchdy(15), chopchdy(1) | |
| opchear(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qopchear(1) | |
| opched(2): (word length: 6 / group items: 10) | |
| length: min=7, max=11, avg=8.8 | |
| top prefixes: qo(5), op(4), ch(1) | |
| contains: opchedy(50), qopchedy(32), opchedaiin(4), chopchedy(2), | |
| opchedal(1), opcheddl(1), qopchedaiin(1), qopchedal(1), | |
| qopcheddy(1), qopchedyd(1) | |
| opchedaiin(4): (word length: 10 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: qo(1) | |
| contains: qopchedaiin(1) | |
| opchedal(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qopchedal(1) | |
| opchedy(50): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.7 | |
| top prefixes: qo(2), ch(1) | |
| contains: qopchedy(32), chopchedy(2), qopchedyd(1) | |
| opcheed(1): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.7 | |
| top prefixes: op(2), qo(1) | |
| contains: opcheedy(3), qopcheedy(2), opcheedoy(1) | |
| opcheedy(3): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qopcheedy(2) | |
| opcheeo(1): (word length: 7 / group items: 2) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: op(1), qo(1) | |
| contains: opcheeol(1), qopcheeody(1) | |
| opcheey(5): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(1), ch(1) | |
| contains: qopcheey(4), chopcheey(1) | |
| opcheo(1): (word length: 6 / group items: 13) | |
| length: min=7, max=12, avg=8.8 | |
| top prefixes: op(7), qo(4), ch(2) | |
| contains: opcheol(8), opcheody(3), opcheor(2), qopcheody(2), | |
| qopcheos(2), cheopcheod(1), chopcheopchy(1), opcheocf(1), | |
| opcheodair(1), opcheodal(1), opcheolfy(1), qopcheoain(1), | |
| qopcheol(1) | |
| opcheody(3): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qopcheody(2) | |
| opcheol(8): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: op(1), qo(1) | |
| contains: opcheolfy(1), qopcheol(1) | |
| opches(2): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(2) | |
| contains: qopches(1), qopchesy(1) | |
| opchety(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qopchety(1) | |
| opchey(29): (word length: 6 / group items: 4) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: qo(1), ch(1), sh(1), yt(1) | |
| contains: qopchey(10), chopchey(2), shopchey(2), ytoeopchey(1) | |
| opcho(1): (word length: 5 / group items: 17) | |
| length: min=6, max=12, avg=7.6 | |
| top prefixes: op(10), qo(4), ch(2), sh(1) | |
| contains: opchol(6), opchor(6), qopchol(6), qopchor(3), opchody(2), | |
| opcholor(2), shopcho(2), chopcho(1), chopchol(1), opchod(1), | |
| opcholalaiin(1), opcholdg(1), opcholdy(1), opchordy(1), | |
| opchosam(1), qopchody(1), qopcholy(1) | |
| opchod(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: op(1), qo(1) | |
| contains: opchody(2), qopchody(1) | |
| opchody(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qopchody(1) | |
| opchol(6): (word length: 6 / group items: 7) | |
| length: min=7, max=12, avg=8.4 | |
| top prefixes: op(4), qo(2), ch(1) | |
| contains: qopchol(6), opcholor(2), chopchol(1), opcholalaiin(1), | |
| opcholdg(1), opcholdy(1), qopcholy(1) | |
| opchor(6): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), op(1) | |
| contains: qopchor(3), opchordy(1) | |
| opchsd(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qopchsd(1) | |
| opchy(15): (word length: 5 / group items: 9) | |
| length: min=6, max=12, avg=8.0 | |
| top prefixes: qo(3), ch(2), sh(2), op(1), yq(1) | |
| contains: qopchy(11), chopchy(5), shopchy(2), chopcheopchy(1), | |
| opchytcy(1), qopchypcho(1), qopchyr(1), sheopchy(1), yqopchy(1) | |
| opdaiin(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qopdaiin(1) | |
| opod(1): (word length: 4 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(2) | |
| contains: opodaiin(1), opodchol(1) | |
| opoeey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qopoeey(1) | |
| opoiin(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qopoiin(1) | |
| opol(4): (word length: 4 / group items: 12) | |
| length: min=5, max=13, avg=7.8 | |
| top prefixes: op(6), qo(2), ch(2), lk(1), sh(1) | |
| contains: qopol(6), opoly(2), cheopolteeedy(1), chopol(1), lkeopol(1), | |
| opolaiin(1), opolkeor(1), opolkod(1), opoloiin(1), opolsy(1), | |
| qopolkain(1), shopolchedy(1) | |
| opom(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: op(1) | |
| contains: opomdy(1) | |
| opor(8): (word length: 4 / group items: 7) | |
| length: min=5, max=9, avg=7.1 | |
| top prefixes: op(3), qo(1), ch(1), eo(1), yc(1) | |
| contains: qopor(4), oporaiin(2), cheopor(1), eoporchy(1), oporar(1), | |
| oporody(1), ychopordg(1) | |
| opshed(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: op(2), qo(1) | |
| contains: qopshedy(4), opshedy(2), opshedal(1) | |
| opshedy(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qopshedy(4) | |
| opshey(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: op(1) | |
| contains: opsheytey(1) | |
| opsho(1): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: op(3) | |
| contains: opshody(1), opshol(1), opsholal(1) | |
| opshol(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(1) | |
| contains: opsholal(1) | |
| opy(7): (word length: 3 / group items: 12) | |
| length: min=4, max=9, avg=6.0 | |
| top prefixes: op(6), qo(3), ch(2), yc(1) | |
| contains: qopy(6), chopy(3), opydaiin(3), opydy(2), cheopy(1), | |
| opyaiin(1), opydg(1), opykey(1), opys(1), qokopy(1), | |
| qopydaiin(1), ychoopy(1) | |
| opydaiin(3): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qopydaiin(1) | |
| oqo(1): (word length: 3 / group items: 17) | |
| length: min=4, max=10, avg=7.0 | |
| top prefixes: oq(15), qo(1), sh(1) | |
| contains: oqokain(2), oqol(2), oqockhy(1), oqoeeol(1), oqoeeosain(1), | |
| oqofchedy(1), oqokar(1), oqokeey(1), oqokeol(1), oqoky(1), | |
| oqoor(1), oqotaiin(1), oqotaly(1), oqotar(1), oqotoiiin(1), | |
| qoqokeey(1), shoqoky(1) | |
| oqokeey(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoqokeey(1) | |
| oqoky(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(1) | |
| contains: shoqoky(1) | |
| orai(1): (word length: 4 / group items: 46) | |
| length: min=5, max=11, avg=7.5 | |
| top prefixes: or(7), po(5), so(3), ch(3), qo(3) | |
| contains: oraiin(38), orain(27), soraiin(7), choraiin(5), orair(5), | |
| oraiiin(4), qorain(4), poraiin(3), chorain(2), koraiin(2), | |
| korain(2), okoraiin(2), oporaiin(2), porain(2), sorain(2), | |
| aporair(1), chforaiin(1), dalorain(1), doraiin(1), dorain(1), | |
| koeeorain(1), kshoraiin(1), loraiin(1), lsoraiin(1), | |
| ocphoraiin(1), oforain(1), okeeoraiin(1), okorair(1), | |
| oloeorain(1), oloraiin(1), oraiino(1), oraiiny(1), orairody(1), | |
| otoraiin(1), otorain(1), pchoraiin(1), poraiiindy(1), porair(1), | |
| pororaiin(1), qoraiin(1), qotchoraiin(1), rorain(1), soraiis(1), | |
| torain(1), ycheoraiin(1), yorain(1) | |
| oraiiin(4): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: po(1) | |
| contains: poraiiindy(1) | |
| oraiin(38): (word length: 6 / group items: 22) | |
| length: min=7, max=11, avg=8.2 | |
| top prefixes: ch(2), po(2), ok(2), or(2), qo(2) | |
| contains: soraiin(7), choraiin(5), poraiin(3), koraiin(2), okoraiin(2), | |
| oporaiin(2), chforaiin(1), doraiin(1), kshoraiin(1), loraiin(1), | |
| lsoraiin(1), ocphoraiin(1), okeeoraiin(1), oloraiin(1), | |
| oraiino(1), oraiiny(1), otoraiin(1), pchoraiin(1), pororaiin(1), | |
| qoraiin(1), qotchoraiin(1), ycheoraiin(1) | |
| orain(27): (word length: 5 / group items: 14) | |
| length: min=6, max=9, avg=6.8 | |
| top prefixes: ko(2), qo(1), ch(1), po(1), so(1) | |
| contains: qorain(4), chorain(2), korain(2), porain(2), sorain(2), | |
| dalorain(1), dorain(1), koeeorain(1), oforain(1), oloeorain(1), | |
| otorain(1), rorain(1), torain(1), yorain(1) | |
| orair(5): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ap(1), ok(1), or(1), po(1) | |
| contains: aporair(1), okorair(1), orairody(1), porair(1) | |
| oral(10): (word length: 4 / group items: 26) | |
| length: min=5, max=10, avg=6.7 | |
| top prefixes: or(6), so(4), ch(2), lo(2), ok(2) | |
| contains: soral(3), oraly(2), cfhodoral(1), cheoral(1), choraly(1), | |
| cthoral(1), doral(1), loral(1), loralody(1), okoral(1), | |
| okoraldy(1), olfsheoral(1), oralady(1), oralar(1), oralaror(1), | |
| orald(1), oraloly(1), otoralchy(1), poral(1), qokoral(1), | |
| roral(1), shoral(1), soraloaly(1), soraly(1), sosoral(1), | |
| yoraly(1) | |
| oralar(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: or(1) | |
| contains: oralaror(1) | |
| orald(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okoraldy(1) | |
| oraly(2): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: ch(1), so(1), yo(1) | |
| contains: choraly(1), soraly(1), yoraly(1) | |
| oram(10): (word length: 4 / group items: 5) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ok(2), ch(1), of(1), ot(1) | |
| contains: cheoram(1), oforam(1), okeoram(1), okoramog(1), otoram(1) | |
| oran(2): (word length: 4 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ch(1), or(1) | |
| contains: chokoran(1), oranol(1) | |
| orar(10): (word length: 4 / group items: 23) | |
| length: min=5, max=10, avg=6.4 | |
| top prefixes: or(7), qo(3), fo(2), ko(2), ot(2) | |
| contains: dorar(2), orary(2), qokorar(2), chorar(1), folorarom(1), | |
| forar(1), korare(1), korary(1), oaorar(1), oporar(1), orara(1), | |
| oraro(1), oraroekeol(1), orarol(1), orarorchy(1), oraryteop(1), | |
| oteorar(1), otorar(1), porar(1), porarchy(1), qoorar(1), | |
| qorar(1), sorary(1) | |
| oraro(1): (word length: 5 / group items: 4) | |
| length: min=6, max=10, avg=8.5 | |
| top prefixes: or(3), fo(1) | |
| contains: folorarom(1), oraroekeol(1), orarol(1), orarorchy(1) | |
| orary(2): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: ko(1), or(1), so(1) | |
| contains: korary(1), oraryteop(1), sorary(1) | |
| orchedy(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qorchedy(1) | |
| orcheey(2): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ro(1), so(1) | |
| contains: rorcheey(1), sorcheey(1) | |
| orcheo(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: or(3) | |
| contains: orcheol(1), orcheory(1), orcheos(1) | |
| orchey(6): (word length: 6 / group items: 4) | |
| length: min=7, max=11, avg=8.2 | |
| top prefixes: ch(1), po(1), sh(1), to(1) | |
| contains: cheokorchey(1), porchey(1), shorchey(1), torchey(1) | |
| orcho(1): (word length: 5 / group items: 6) | |
| length: min=6, max=11, avg=8.2 | |
| top prefixes: ch(2), or(2), do(1), kc(1) | |
| contains: chorcholsal(1), chorchor(1), dorchory(1), kchorchor(1), | |
| orchoer(1), orchor(1) | |
| orchor(1): (word length: 6 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: ch(1), do(1), kc(1) | |
| contains: chorchor(1), dorchory(1), kchorchor(1) | |
| ordaiin(2): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: da(1) | |
| contains: darordaiin(1) | |
| ordy(1): (word length: 4 / group items: 6) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: ot(2), ch(1), oe(1), op(1), sh(1) | |
| contains: chordy(2), oeesordy(1), opchordy(1), otchordy(1), otdordy(1), | |
| shordy(1) | |
| ore(1): (word length: 3 / group items: 8) | |
| length: min=4, max=8, avg=6.0 | |
| top prefixes: or(5), do(1), ot(1), po(1) | |
| contains: oreeey(3), dorean(1), oreeem(1), oreey(1), oreso(1), orey(1), | |
| otoreees(1), porechol(1) | |
| org(1): (word length: 3 / group items: 1) | |
| length: min=4, max=4, avg=4.0 | |
| top prefixes: do(1) | |
| contains: dorg(1) | |
| orky(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: qo(1) | |
| contains: qorky(1) | |
| oro(5): (word length: 3 / group items: 69) | |
| length: min=4, max=10, avg=6.6 | |
| top prefixes: or(16), ch(12), po(4), so(4), do(3) | |
| contains: orol(15), orom(5), oror(5), chorol(3), choror(3), oroly(3), | |
| rorol(3), cheorol(2), doroiin(2), oroiiin(2), toror(2), | |
| arorochees(1), cfhdorol(1), choloro(1), choro(1), chorochy(1), | |
| chorody(1), choroiin(1), chorolk(1), chorom(1), choross(1), | |
| chtorol(1), cphorods(1), dchorol(1), dorody(1), doror(1), | |
| kchoror(1), koroiin(1), korol(1), korols(1), larorol(1), | |
| loroin(1), loror(1), okoroeey(1), okorory(1), oloro(1), | |
| olorol(1), ooror(1), oporody(1), orockhey(1), orodam(1), | |
| oroiir(1), oroiry(1), orokeeeey(1), orolaly(1), orold(1), | |
| orolgy(1), orolkain(1), orolodain(1), orory(1), oteorom(1), | |
| pchoror(1), porol(1), poror(1), pororaiin(1), porory(1), | |
| pshorol(1), qoforom(1), qokaloro(1), qokoror(1), shefshoro(1), | |
| shorodo(1), shorody(1), sorol(1), sorols(1), sororl(1), | |
| sorory(1), torolshsdy(1), ytorory(1) | |
| orol(15): (word length: 4 / group items: 22) | |
| length: min=5, max=10, avg=6.5 | |
| top prefixes: or(6), ch(4), ko(2), so(2), ro(1) | |
| contains: chorol(3), oroly(3), rorol(3), cheorol(2), cfhdorol(1), | |
| chorolk(1), chtorol(1), dchorol(1), korol(1), korols(1), | |
| larorol(1), olorol(1), orolaly(1), orold(1), orolgy(1), | |
| orolkain(1), orolodain(1), porol(1), pshorol(1), sorol(1), | |
| sorols(1), torolshsdy(1) | |
| orom(5): (word length: 4 / group items: 3) | |
| length: min=6, max=7, avg=6.7 | |
| top prefixes: ch(1), ot(1), qo(1) | |
| contains: chorom(1), oteorom(1), qoforom(1) | |
| oror(5): (word length: 4 / group items: 16) | |
| length: min=5, max=9, avg=6.1 | |
| top prefixes: po(3), so(2), ch(1), to(1), do(1) | |
| contains: choror(3), toror(2), doror(1), kchoror(1), loror(1), | |
| okorory(1), ooror(1), orory(1), pchoror(1), poror(1), | |
| pororaiin(1), porory(1), qokoror(1), sororl(1), sorory(1), | |
| ytorory(1) | |
| orory(1): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ok(1), po(1), so(1), yt(1) | |
| contains: okorory(1), porory(1), sorory(1), ytorory(1) | |
| ors(1): (word length: 3 / group items: 17) | |
| length: min=5, max=11, avg=7.9 | |
| top prefixes: or(6), do(2), ot(2), tc(2), to(1) | |
| contains: torshor(2), arorsheey(1), dorshefy(1), dorsheoy(1), | |
| orsheckhy(1), orsheedy(1), orsheeen(1), orsheoldy(1), orshos(1), | |
| orshy(1), otorsheey(1), otorsheod(1), porshols(1), qorshy(1), | |
| sorshy(1), tcheorsho(1), tchoarorshy(1) | |
| orshy(1): (word length: 5 / group items: 3) | |
| length: min=6, max=11, avg=7.7 | |
| top prefixes: qo(1), so(1), tc(1) | |
| contains: qorshy(1), sorshy(1), tchoarorshy(1) | |
| ory(17): (word length: 3 / group items: 49) | |
| length: min=4, max=10, avg=6.0 | |
| top prefixes: ch(5), ot(3), ok(3), yt(3), sh(2) | |
| contains: chory(12), shory(6), sory(5), dory(4), otory(4), cheory(3), | |
| okory(3), cthory(2), lory(2), rory(2), alory(1), chkchory(1), | |
| chokory(1), chosory(1), ckhory(1), cpholrory(1), dalory(1), | |
| darory(1), dorchory(1), dytory(1), kory(1), llory(1), ochory(1), | |
| odory(1), ofchory(1), ofory(1), okeory(1), okorory(1), olkory(1), | |
| orcheory(1), orory(1), otasodlory(1), oteory(1), porory(1), | |
| pychory(1), qkory(1), qokchory(1), qokeory(1), shorydar(1), | |
| sorory(1), tchory(1), tolchory(1), tory(1), ykeeory(1), ykory(1), | |
| ypory(1), ytorory(1), ytory(1), ytoryd(1) | |
| osaiin(8): (word length: 6 / group items: 13) | |
| length: min=7, max=15, avg=9.2 | |
| top prefixes: ch(3), sh(2), ot(2), qo(1), eo(1) | |
| contains: shosaiin(5), chosaiin(4), qosaiin(2), cheosaiin(1), | |
| cheteeeosaiin(1), eosaiin(1), fchosaiin(1), losaiin(1), | |
| okeeeosaiin(1), oteosaiin(1), otosaiin(1), sheosaiin(1), | |
| ypchocpheosaiin(1) | |
| osain(3): (word length: 5 / group items: 2) | |
| length: min=6, max=10, avg=8.0 | |
| top prefixes: oq(1), qo(1) | |
| contains: oqoeeosain(1), qosain(1) | |
| osal(4): (word length: 4 / group items: 4) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ch(1), os(1), ot(1), po(1) | |
| contains: chosals(1), osalal(1), oteosal(1), posalshy(1) | |
| osar(2): (word length: 4 / group items: 8) | |
| length: min=5, max=11, avg=6.4 | |
| top prefixes: ch(2), os(2), ok(1), so(1), ko(1) | |
| contains: chosar(2), okeosar(2), sosar(2), chosaroshol(1), kosar(1), | |
| osaro(1), osary(1), ychosar(1) | |
| osaro(1): (word length: 5 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ch(1) | |
| contains: chosaroshol(1) | |
| oscho(1): (word length: 5 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: os(1), qo(1) | |
| contains: oschotshl(1), qoschodam(1) | |
| oschy(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: choschy(1) | |
| osh(1): (word length: 3 / group items: 59) | |
| length: min=4, max=12, avg=7.0 | |
| top prefixes: os(22), ot(5), qo(5), to(4), po(4) | |
| contains: oshey(7), choshy(3), oshedy(3), koshey(2), osheey(2), | |
| oshor(2), otchoshy(2), shoshy(2), soshy(2), tosheo(2), | |
| alosheey(1), aroshy(1), chosaroshol(1), choshydy(1), | |
| ctheockhosho(1), cthoshol(1), dalteoshy(1), koshet(1), | |
| kosholda(1), ofchoshy(1), oshaiin(1), oshchey(1), oshctho(1), | |
| oshdy(1), osheedy(1), osheeky(1), osheeo(1), osheo(1), | |
| osheokaiin(1), osheol(1), oshepols(1), oshesy(1), osho(1), | |
| oshodody(1), oshol(1), oshox(1), oshsodaiin(1), oshyteed(1), | |
| oteoshaly(1), oteoshey(1), otolosheey(1), otoshol(1), posheor(1), | |
| posheos(1), poshody(1), poshol(1), qosheckhhy(1), qoshedy(1), | |
| qosheo(1), qoshocphy(1), qoshy(1), raroshy(1), schoshe(1), | |
| soshckhy(1), soshe(1), tosh(1), toshey(1), toshy(1), ykeoshe(1) | |
| oshedy(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qoshedy(1) | |
| osheey(2): (word length: 6 / group items: 2) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: al(1), ot(1) | |
| contains: alosheey(1), otolosheey(1) | |
| osheo(1): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.0 | |
| top prefixes: os(2), po(2), to(1), qo(1) | |
| contains: tosheo(2), osheokaiin(1), osheol(1), posheor(1), posheos(1), | |
| qosheo(1) | |
| oshey(7): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: ko(1), ot(1), to(1) | |
| contains: koshey(2), oteoshey(1), toshey(1) | |
| osho(1): (word length: 4 / group items: 12) | |
| length: min=5, max=12, avg=7.6 | |
| top prefixes: os(4), ct(2), po(2), ch(1), ko(1) | |
| contains: oshor(2), chosaroshol(1), ctheockhosho(1), cthoshol(1), | |
| kosholda(1), oshodody(1), oshol(1), oshox(1), otoshol(1), | |
| poshody(1), poshol(1), qoshocphy(1) | |
| oshol(1): (word length: 5 / group items: 5) | |
| length: min=6, max=11, avg=8.0 | |
| top prefixes: ch(1), ct(1), ko(1), ot(1), po(1) | |
| contains: chosaroshol(1), cthoshol(1), kosholda(1), otoshol(1), | |
| poshol(1) | |
| oso(1): (word length: 3 / group items: 9) | |
| length: min=4, max=10, avg=7.4 | |
| top prefixes: os(2), ch(1), ol(1), ot(1), pc(1) | |
| contains: chosory(1), olsheeosol(1), osocthor(1), osos(1), oteeosol(1), | |
| pchosos(1), sosoral(1), tchosos(1), tolshosor(1) | |
| osos(1): (word length: 4 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: pc(1), tc(1) | |
| contains: pchosos(1), tchosos(1) | |
| osy(1): (word length: 3 / group items: 8) | |
| length: min=4, max=8, avg=5.9 | |
| top prefixes: ot(2), ch(2), ct(1), ok(1), po(1) | |
| contains: oteeosy(2), chcthosy(1), chosy(1), cthosy(1), okosy(1), | |
| otosy(1), poalosy(1), rosy(1) | |
| ota(2): (word length: 3 / group items: 140) | |
| length: min=4, max=10, avg=6.5 | |
| top prefixes: ot(87), qo(24), ch(13), sh(4), oq(3) | |
| contains: otaiin(154), otal(143), otar(141), otain(96), qotaiin(79), | |
| qotain(64), qotar(63), qotal(59), otam(47), otair(21), otaly(19), | |
| qotam(12), chotar(11), chotaiin(9), chotal(9), otaldy(7), | |
| qotair(6), chotam(5), otan(5), otarar(5), otary(5), qotaly(5), | |
| chotain(4), otaiir(4), otais(4), otalor(4), otaram(4), otas(4), | |
| otairor(3), otalaiin(3), otalal(3), otalam(3), otalar(3), | |
| otalshedy(3), otaral(3), otaim(2), otaky(2), otald(2), | |
| otaldal(2), otalsy(2), otaraldy(2), otardy(2), otariin(2), | |
| qotaiiin(2), qotan(2), qotas(2), shotaiin(2), cheeotaiin(1), | |
| cheotaiin(1), cheotain(1), cheotam(1), cheotar(1), chotair(1), | |
| chotais(1), chotals(1), eotar(1), kolotam(1), kotaly(1), | |
| lotal(1), lotar(1), ootady(1), oqotaiin(1), oqotaly(1), | |
| oqotar(1), otad(1), otadar(1), otaiiin(1), otaiikam(1), | |
| otaiilody(1), otail(1), otaily(1), otainos(1), otainy(1), | |
| otaipchy(1), otaiphy(1), otairar(1), otairin(1), otakar(1), | |
| otakeol(1), otala(1), otalain(1), otalair(1), otalalg(1), | |
| otalaly(1), otalchal(1), otalchy(1), otaldiin(1), otalef(1), | |
| otaleky(1), otalkain(1), otalkchy(1), otalky(1), otalod(1), | |
| otalody(1), otalom(1), otalr(1), otals(1), otalsar(1), | |
| otalshdy(1), otalshy(1), otamy(1), otaraiin(1), otarain(1), | |
| otaramy(1), otararain(1), otaras(1), otaray(1), otarcho(1), | |
| otarchol(1), otard(1), otardaly(1), otardam(1), otariir(1), | |
| otaro(1), otarody(1), otaryly(1), otasam(1), otasodlory(1), | |
| otota(1), ototar(1), qotad(1), qotaiior(1), qotail(1), | |
| qotaily(1), qotais(1), qotalal(1), qotalchedy(1), qotaldy(1), | |
| qotalody(1), qotalom(1), qotals(1), qotalshy(1), qotardy(1), | |
| qotary(1), rotaiin(1), sheotain(1), sheotal(1), sheotam(1), | |
| sotaiin(1), yotaiin(1) | |
| otad(1): (word length: 4 / group items: 3) | |
| length: min=5, max=6, avg=5.7 | |
| top prefixes: oo(1), ot(1), qo(1) | |
| contains: ootady(1), otadar(1), qotad(1) | |
| otaiiin(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotaiiin(2) | |
| otaiin(154): (word length: 6 / group items: 9) | |
| length: min=7, max=10, avg=7.9 | |
| top prefixes: ch(3), qo(1), sh(1), oq(1), ro(1) | |
| contains: qotaiin(79), chotaiin(9), shotaiin(2), cheeotaiin(1), | |
| cheotaiin(1), oqotaiin(1), rotaiin(1), sotaiin(1), yotaiin(1) | |
| otail(1): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: qo(2), ot(1) | |
| contains: otaily(1), qotail(1), qotaily(1) | |
| otaily(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotaily(1) | |
| otain(96): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ch(2), ot(2), qo(1), sh(1) | |
| contains: qotain(64), chotain(4), cheotain(1), otainos(1), otainy(1), | |
| sheotain(1) | |
| otair(21): (word length: 5 / group items: 5) | |
| length: min=6, max=7, avg=6.8 | |
| top prefixes: ot(3), qo(1), ch(1) | |
| contains: qotair(6), otairor(3), chotair(1), otairar(1), otairin(1) | |
| otais(4): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(1), qo(1) | |
| contains: chotais(1), qotais(1) | |
| otal(143): (word length: 4 / group items: 47) | |
| length: min=5, max=10, avg=6.7 | |
| top prefixes: ot(32), qo(9), ch(2), ko(1), lo(1) | |
| contains: qotal(59), otaly(19), chotal(9), otaldy(7), qotaly(5), | |
| otalor(4), otalaiin(3), otalal(3), otalam(3), otalar(3), | |
| otalshedy(3), otald(2), otaldal(2), otalsy(2), chotals(1), | |
| kotaly(1), lotal(1), oqotaly(1), otala(1), otalain(1), | |
| otalair(1), otalalg(1), otalaly(1), otalchal(1), otalchy(1), | |
| otaldiin(1), otalef(1), otaleky(1), otalkain(1), otalkchy(1), | |
| otalky(1), otalod(1), otalody(1), otalom(1), otalr(1), otals(1), | |
| otalsar(1), otalshdy(1), otalshy(1), qotalal(1), qotalchedy(1), | |
| qotaldy(1), qotalody(1), qotalom(1), qotals(1), qotalshy(1), | |
| sheotal(1) | |
| otala(1): (word length: 5 / group items: 9) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ot(8), qo(1) | |
| contains: otalaiin(3), otalal(3), otalam(3), otalar(3), otalain(1), | |
| otalair(1), otalalg(1), otalaly(1), qotalal(1) | |
| otalal(3): (word length: 6 / group items: 3) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(2), qo(1) | |
| contains: otalalg(1), otalaly(1), qotalal(1) | |
| otald(2): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ot(3), qo(1) | |
| contains: otaldy(7), otaldal(2), otaldiin(1), qotaldy(1) | |
| otaldy(7): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotaldy(1) | |
| otalod(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ot(1), qo(1) | |
| contains: otalody(1), qotalody(1) | |
| otalody(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotalody(1) | |
| otalom(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotalom(1) | |
| otals(1): (word length: 5 / group items: 8) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: ot(5), qo(2), ch(1) | |
| contains: otalshedy(3), otalsy(2), chotals(1), otalsar(1), otalshdy(1), | |
| otalshy(1), qotals(1), qotalshy(1) | |
| otalshy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotalshy(1) | |
| otaly(19): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: qo(1), ko(1), oq(1) | |
| contains: qotaly(5), kotaly(1), oqotaly(1) | |
| otam(47): (word length: 4 / group items: 6) | |
| length: min=5, max=7, avg=6.2 | |
| top prefixes: ch(2), qo(1), ko(1), ot(1), sh(1) | |
| contains: qotam(12), chotam(5), cheotam(1), kolotam(1), otamy(1), | |
| sheotam(1) | |
| otan(5): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: qo(1) | |
| contains: qotan(2) | |
| otar(141): (word length: 4 / group items: 31) | |
| length: min=5, max=9, avg=6.5 | |
| top prefixes: ot(23), qo(3), ch(2), eo(1), lo(1) | |
| contains: qotar(63), chotar(11), otarar(5), otary(5), otaram(4), | |
| otaral(3), otaraldy(2), otardy(2), otariin(2), cheotar(1), | |
| eotar(1), lotar(1), oqotar(1), otaraiin(1), otarain(1), | |
| otaramy(1), otararain(1), otaras(1), otaray(1), otarcho(1), | |
| otarchol(1), otard(1), otardaly(1), otardam(1), otariir(1), | |
| otaro(1), otarody(1), otaryly(1), ototar(1), qotardy(1), | |
| qotary(1) | |
| otaral(3): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otaraldy(2) | |
| otaram(4): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otaramy(1) | |
| otarar(5): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ot(1) | |
| contains: otararain(1) | |
| otarcho(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otarchol(1) | |
| otard(1): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ot(3), qo(1) | |
| contains: otardy(2), otardaly(1), otardam(1), qotardy(1) | |
| otardy(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotardy(1) | |
| otaro(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otarody(1) | |
| otary(5): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ot(1), qo(1) | |
| contains: otaryly(1), qotary(1) | |
| otas(4): (word length: 4 / group items: 3) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: ot(2), qo(1) | |
| contains: qotas(2), otasam(1), otasodlory(1) | |
| otch(2): (word length: 4 / group items: 133) | |
| length: min=5, max=13, avg=7.8 | |
| top prefixes: ot(63), qo(35), ch(14), sh(6), so(4) | |
| contains: qotchy(63), otchy(48), otchedy(34), otchey(31), otchdy(30), | |
| otchol(28), qotchedy(24), qotchdy(23), qotchey(19), otchor(18), | |
| qotchor(14), qotchol(13), chotchy(12), otcho(11), qotcho(11), | |
| otcham(6), otchar(6), otchody(6), qotched(5), otchal(4), | |
| otcheor(4), otchos(4), qotchd(4), qotcheedy(4), qotcheo(4), | |
| chotchey(3), otchdal(3), otcheey(3), otches(3), otchod(3), | |
| qotchar(3), qotcheol(3), qotchody(3), shotchy(3), chotchdy(2), | |
| otchaiin(2), otcheody(2), otchodar(2), otchoky(2), otchoshy(2), | |
| otchs(2), qotchaiin(2), qotcheaiin(2), qotchedar(2), qotchod(2), | |
| qotchoiin(2), cheotchar(1), cheotchey(1), cheotchy(1), | |
| chotchedy(1), chotcheey(1), chotcheol(1), chotcheytchol(1), | |
| chotcho(1), chotchody(1), chotchol(1), chotchs(1), kotchody(1), | |
| kotchy(1), olotchedy(1), otchald(1), otchd(1), otchdain(1), | |
| otchdo(1), otchechy(1), otchedain(1), otchedair(1), otchedar(1), | |
| otchedey(1), otcheed(1), otcheedaiin(1), otcheedy(1), otcheeo(1), | |
| otcheo(1), otcheochy(1), otcheodaiin(1), otcheodar(1), | |
| otcheol(1), otcheolom(1), otcheoly(1), otcheos(1), otchetchar(1), | |
| otcheypchedy(1), otchl(1), otchm(1), otchodal(1), otchodals(1), | |
| otchodor(1), otcholcheaiin(1), otcholchy(1), otcholocthol(1), | |
| otchom(1), otchordy(1), otchotor(1), otchoty(1), otchoy(1), | |
| otchr(1), otchsdy(1), otchsy(1), otchyky(1), pchotchy(1), | |
| potchokar(1), qotchain(1), qotcham(1), qotchdain(1), qotchdal(1), | |
| qotchdar(1), qotcheea(1), qotcheeaiin(1), qotches(1), | |
| qotcholm(1), qotchoraiin(1), qotchos(1), qotchotchy(1), | |
| qotchs(1), qotchsdy(1), qotchytor(1), qoteeotchy(1), rotcho(1), | |
| sheotchedy(1), shotchdy(1), shotchey(1), shotcho(1), shotchot(1), | |
| sotchaiin(1), sotchdaiin(1), sotchdy(1), sotchy(1), tchotchey(1), | |
| tchotchol(1), tchotchor(1), totchy(1), ykchotchy(1) | |
| otchaiin(2): (word length: 8 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1), so(1) | |
| contains: qotchaiin(2), sotchaiin(1) | |
| otchal(4): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otchald(1) | |
| otcham(6): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotcham(1) | |
| otchar(6): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: qo(1), ch(1) | |
| contains: qotchar(3), cheotchar(1) | |
| otchd(1): (word length: 5 / group items: 13) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: qo(5), ot(4), so(2), ch(1), sh(1) | |
| contains: otchdy(30), qotchdy(23), qotchd(4), otchdal(3), chotchdy(2), | |
| otchdain(1), otchdo(1), qotchdain(1), qotchdal(1), qotchdar(1), | |
| shotchdy(1), sotchdaiin(1), sotchdy(1) | |
| otchdain(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qotchdain(1) | |
| otchdal(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotchdal(1) | |
| otchdy(30): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), ch(1), sh(1), so(1) | |
| contains: qotchdy(23), chotchdy(2), shotchdy(1), sotchdy(1) | |
| otchedar(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qotchedar(2) | |
| otchedy(34): (word length: 7 / group items: 4) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: qo(1), ch(1), ol(1), sh(1) | |
| contains: qotchedy(24), chotchedy(1), olotchedy(1), sheotchedy(1) | |
| otcheed(1): (word length: 7 / group items: 3) | |
| length: min=8, max=11, avg=9.3 | |
| top prefixes: ot(2), qo(1) | |
| contains: qotcheedy(4), otcheedaiin(1), otcheedy(1) | |
| otcheedy(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qotcheedy(4) | |
| otcheey(3): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chotcheey(1) | |
| otcheo(1): (word length: 6 / group items: 12) | |
| length: min=7, max=11, avg=8.2 | |
| top prefixes: ot(9), qo(2), ch(1) | |
| contains: otcheor(4), qotcheo(4), qotcheol(3), otcheody(2), | |
| chotcheol(1), otcheochy(1), otcheodaiin(1), otcheodar(1), | |
| otcheol(1), otcheolom(1), otcheoly(1), otcheos(1) | |
| otcheol(1): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ot(2), qo(1), ch(1) | |
| contains: qotcheol(3), chotcheol(1), otcheolom(1), otcheoly(1) | |
| otches(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotches(1) | |
| otchey(31): (word length: 6 / group items: 7) | |
| length: min=7, max=13, avg=9.4 | |
| top prefixes: ch(3), qo(1), ot(1), sh(1), tc(1) | |
| contains: qotchey(19), chotchey(3), cheotchey(1), chotcheytchol(1), | |
| otcheypchedy(1), shotchey(1), tchotchey(1) | |
| otcho(11): (word length: 5 / group items: 39) | |
| length: min=6, max=13, avg=7.9 | |
| top prefixes: ot(19), qo(10), ch(3), sh(2), tc(2) | |
| contains: otchol(28), otchor(18), qotchor(14), qotchol(13), qotcho(11), | |
| otchody(6), otchos(4), otchod(3), qotchody(3), otchodar(2), | |
| otchoky(2), otchoshy(2), qotchod(2), qotchoiin(2), chotcho(1), | |
| chotchody(1), chotchol(1), kotchody(1), otchodal(1), | |
| otchodals(1), otchodor(1), otcholcheaiin(1), otcholchy(1), | |
| otcholocthol(1), otchom(1), otchordy(1), otchotor(1), otchoty(1), | |
| otchoy(1), potchokar(1), qotcholm(1), qotchoraiin(1), qotchos(1), | |
| qotchotchy(1), rotcho(1), shotcho(1), shotchot(1), tchotchol(1), | |
| tchotchor(1) | |
| otchod(3): (word length: 6 / group items: 9) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ot(5), qo(2), ch(1), ko(1) | |
| contains: otchody(6), qotchody(3), otchodar(2), qotchod(2), | |
| chotchody(1), kotchody(1), otchodal(1), otchodals(1), otchodor(1) | |
| otchodal(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ot(1) | |
| contains: otchodals(1) | |
| otchody(6): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: qo(1), ch(1), ko(1) | |
| contains: qotchody(3), chotchody(1), kotchody(1) | |
| otchol(28): (word length: 6 / group items: 7) | |
| length: min=7, max=13, avg=9.4 | |
| top prefixes: ot(3), qo(2), ch(1), tc(1) | |
| contains: qotchol(13), chotchol(1), otcholcheaiin(1), otcholchy(1), | |
| otcholocthol(1), qotcholm(1), tchotchol(1) | |
| otchor(18): (word length: 6 / group items: 4) | |
| length: min=7, max=11, avg=8.8 | |
| top prefixes: qo(2), ot(1), tc(1) | |
| contains: qotchor(14), otchordy(1), qotchoraiin(1), tchotchor(1) | |
| otchos(4): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ot(1), qo(1) | |
| contains: otchoshy(2), qotchos(1) | |
| otchs(2): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ot(2), qo(2), ch(1) | |
| contains: chotchs(1), otchsdy(1), otchsy(1), qotchs(1), qotchsdy(1) | |
| otchsdy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotchsdy(1) | |
| otchy(48): (word length: 5 / group items: 13) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: qo(4), ch(2), sh(1), ko(1), ot(1) | |
| contains: qotchy(63), chotchy(12), shotchy(3), cheotchy(1), kotchy(1), | |
| otchyky(1), pchotchy(1), qotchotchy(1), qotchytor(1), | |
| qoteeotchy(1), sotchy(1), totchy(1), ykchotchy(1) | |
| ote(1): (word length: 3 / group items: 254) | |
| length: min=4, max=14, avg=7.1 | |
| top prefixes: ot(155), qo(57), ch(18), sh(6), so(3) | |
| contains: otedy(155), oteey(140), oteedy(100), qotedy(91), qoteedy(74), | |
| otey(57), oteol(42), qoteey(42), oteody(39), oteos(29), | |
| qotey(24), oteo(13), oteeo(12), oteor(12), qoteody(12), | |
| qoteol(12), otedar(11), oteeody(11), oteeos(10), otees(10), | |
| chotey(9), oteeol(9), oteed(8), oteeey(8), oteodaiin(8), | |
| choteey(7), oteodar(7), oteal(6), oteodal(6), qoteeody(6), | |
| otechdy(5), otes(5), qoteeol(5), qoteo(5), qoteor(5), otear(4), | |
| otechy(4), otedal(4), oteeor(4), oteotey(4), qoted(4), | |
| qoteeey(4), qotees(4), choteol(3), otedaiin(3), otedam(3), | |
| otedol(3), oteedar(3), oteeedy(3), oteees(3), oteod(3), | |
| qotedaiin(3), qotedal(3), qotedar(3), qoteed(3), qoteedar(3), | |
| qoteeedy(3), qoteeo(3), qoteeos(3), cheotey(2), chotedy(2), | |
| oteaiin(2), oteas(2), otedain(2), oteeal(2), oteeam(2), | |
| oteedain(2), oteedal(2), oteeoaly(2), oteeosy(2), oteeys(2), | |
| oteoeey(2), oteoldy(2), oteoly(2), oteom(2), qoteal(2), | |
| qotear(2), qotechy(2), qotedor(2), qoteees(2), qoteesy(2), | |
| qotes(2), shoteeody(2), sotey(2), aroteey(1), arotey(1), | |
| cheoteeo(1), cheoteeodal(1), cheoteey(1), chesokeeoteody(1), | |
| chotear(1), choteedy(1), choteeen(1), choteeey(1), chotehy(1), | |
| choteody(1), choteoky(1), choteoly(1), choteos(1), dcheoteos(1), | |
| dotedy(1), doteey(1), doteoda(1), dsheeoteey(1), etoteear(1), | |
| lotedaiin(1), lsheotey(1), okchoteees(1), okeoteey(1), opotey(1), | |
| oteain(1), otealchedy(1), oteatey(1), otech(1), otechar(1), | |
| otechd(1), otechedy(1), otecheedy(1), otecheo(1), otechg(1), | |
| otechodor(1), otechol(1), otechs(1), otechshy(1), otechys(1), | |
| oted(1), otedair(1), otedalol(1), otedas(1), otedchor(1), | |
| otedeey(1), otedo(1), otedor(1), otedos(1), otedyl(1), otedyo(1), | |
| oteeaiin(1), oteeary(1), oteechy(1), oteedan(1), oteedchey(1), | |
| oteedyg(1), oteedyl(1), oteee(1), oteeedchey(1), oteeen(1), | |
| oteeeo(1), oteeeodar(1), oteeeody(1), oteeeor(1), oteeeos(1), | |
| oteeg(1), oteem(1), oteeod(1), oteeodaiin(1), oteeodail(1), | |
| oteeodalsy(1), oteeodam(1), oteeodar(1), oteeodl(1), | |
| oteeolchor(1), oteeolkeey(1), oteeols(1), oteeoly(1), | |
| oteeosol(1), oteer(1), oteesaey(1), oteesal(1), oteeshs(1), | |
| oteesod(1), oteesy(1), oteeykeey(1), oteeykey(1), oteeykshy(1), | |
| otek(1), oteoal(1), oteoaldy(1), oteoarar(1), oteoc(1), | |
| oteochedy(1), oteochey(1), oteochor(1), oteodain(1), oteodair(1), | |
| oteodas(1), oteodched(1), oteodchy(1), oteodl(1), oteodo(1), | |
| oteodshey(1), oteoefol(1), oteofy(1), oteoin(1), oteokeey(1), | |
| oteolain(1), oteolair(1), oteolar(1), oteool(1), oteoos(1), | |
| oteorar(1), oteorom(1), oteory(1), oteosaiin(1), oteosal(1), | |
| oteosdal(1), oteoshaly(1), oteoshey(1), oteoteeody(1), | |
| oteoteotsho(1), oteotor(1), oteoy(1), oteoys(1), otesalod(1), | |
| oteshy(1), oteydy(1), oteys(1), qotea(1), qotecheor(1), | |
| qotechoep(1), qotedain(1), qotedais(1), qotedary(1), qotedl(1), | |
| qotedol(1), qotedshedy(1), qoteeal(1), qoteedaiin(1), | |
| qoteeddy(1), qoteedo(1), qoteeeo(1), qoteeod(1), qoteeotchy(1), | |
| qoteeoy(1), qoteodaiin(1), qoteode(1), qoteold(1), qoteoly(1), | |
| qoteoor(1), qoteos(1), qoteosam(1), qoteotor(1), qoteshy(1), | |
| qotesy(1), qoteytyqoky(1), qototeeey(1), sheoteoly(1), | |
| shotedy(1), shoteo(1), shoteol(1), shotey(1), soteees(1), | |
| soteol(1), teoteey(1), yotedy(1) | |
| oteal(6): (word length: 5 / group items: 2) | |
| length: min=6, max=10, avg=8.0 | |
| top prefixes: qo(1), ot(1) | |
| contains: qoteal(2), otealchedy(1) | |
| otear(4): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: qo(1), ch(1) | |
| contains: qotear(2), chotear(1) | |
| otech(1): (word length: 5 / group items: 16) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: ot(13), qo(3) | |
| contains: otechdy(5), otechy(4), qotechy(2), otechar(1), otechd(1), | |
| otechedy(1), otecheedy(1), otecheo(1), otechg(1), otechodor(1), | |
| otechol(1), otechs(1), otechshy(1), otechys(1), qotecheor(1), | |
| qotechoep(1) | |
| otechd(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otechdy(5) | |
| otecheo(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qotecheor(1) | |
| otechs(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otechshy(1) | |
| otechy(4): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1), ot(1) | |
| contains: qotechy(2), otechys(1) | |
| oted(1): (word length: 4 / group items: 34) | |
| length: min=5, max=10, avg=6.8 | |
| top prefixes: ot(17), qo(12), ch(1), do(1), lo(1) | |
| contains: otedy(155), qotedy(91), otedar(11), otedal(4), qoted(4), | |
| otedaiin(3), otedam(3), otedol(3), qotedaiin(3), qotedal(3), | |
| qotedar(3), chotedy(2), otedain(2), qotedor(2), dotedy(1), | |
| lotedaiin(1), otedair(1), otedalol(1), otedas(1), otedchor(1), | |
| otedeey(1), otedo(1), otedor(1), otedos(1), otedyl(1), otedyo(1), | |
| qotedain(1), qotedais(1), qotedary(1), qotedl(1), qotedol(1), | |
| qotedshedy(1), shotedy(1), yotedy(1) | |
| otedaiin(3): (word length: 8 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1), lo(1) | |
| contains: qotedaiin(3), lotedaiin(1) | |
| otedain(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotedain(1) | |
| otedal(4): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), ot(1) | |
| contains: qotedal(3), otedalol(1) | |
| otedar(11): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(2) | |
| contains: qotedar(3), qotedary(1) | |
| otedo(1): (word length: 5 / group items: 5) | |
| length: min=6, max=7, avg=6.4 | |
| top prefixes: ot(3), qo(2) | |
| contains: otedol(3), qotedor(2), otedor(1), otedos(1), qotedol(1) | |
| otedol(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotedol(1) | |
| otedor(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotedor(2) | |
| otedy(155): (word length: 5 / group items: 7) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: ot(2), qo(1), ch(1), do(1), sh(1) | |
| contains: qotedy(91), chotedy(2), dotedy(1), otedyl(1), otedyo(1), | |
| shotedy(1), yotedy(1) | |
| oteeal(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qoteeal(1) | |
| oteed(8): (word length: 5 / group items: 15) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: ot(8), qo(6), ch(1) | |
| contains: oteedy(100), qoteedy(74), oteedar(3), qoteed(3), qoteedar(3), | |
| oteedain(2), oteedal(2), choteedy(1), oteedan(1), oteedchey(1), | |
| oteedyg(1), oteedyl(1), qoteedaiin(1), qoteeddy(1), qoteedo(1) | |
| oteedar(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoteedar(3) | |
| oteedy(100): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.2 | |
| top prefixes: ot(2), qo(1), ch(1) | |
| contains: qoteedy(74), choteedy(1), oteedyg(1), oteedyl(1) | |
| oteee(1): (word length: 5 / group items: 19) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: ot(10), qo(5), ch(2), ok(1), so(1) | |
| contains: oteeey(8), qoteeey(4), oteeedy(3), oteees(3), qoteeedy(3), | |
| qoteees(2), choteeen(1), choteeey(1), okchoteees(1), | |
| oteeedchey(1), oteeen(1), oteeeo(1), oteeeodar(1), oteeeody(1), | |
| oteeeor(1), oteeeos(1), qoteeeo(1), qototeeey(1), soteees(1) | |
| oteeedy(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoteeedy(3) | |
| oteeen(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: choteeen(1) | |
| oteeeo(1): (word length: 6 / group items: 5) | |
| length: min=7, max=9, avg=7.6 | |
| top prefixes: ot(4), qo(1) | |
| contains: oteeeodar(1), oteeeody(1), oteeeor(1), oteeeos(1), qoteeeo(1) | |
| oteees(3): (word length: 6 / group items: 3) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: qo(1), ok(1), so(1) | |
| contains: qoteees(2), okchoteees(1), soteees(1) | |
| oteeey(8): (word length: 6 / group items: 3) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: qo(2), ch(1) | |
| contains: qoteeey(4), choteeey(1), qototeeey(1) | |
| oteeo(12): (word length: 5 / group items: 29) | |
| length: min=6, max=11, avg=7.9 | |
| top prefixes: ot(19), qo(7), ch(2), sh(1) | |
| contains: oteeody(11), oteeos(10), oteeol(9), qoteeody(6), qoteeol(5), | |
| oteeor(4), qoteeo(3), qoteeos(3), oteeoaly(2), oteeosy(2), | |
| shoteeody(2), cheoteeo(1), cheoteeodal(1), oteeod(1), | |
| oteeodaiin(1), oteeodail(1), oteeodalsy(1), oteeodam(1), | |
| oteeodar(1), oteeodl(1), oteeolchor(1), oteeolkeey(1), | |
| oteeols(1), oteeoly(1), oteeosol(1), oteoteeody(1), qoteeod(1), | |
| qoteeotchy(1), qoteeoy(1) | |
| oteeod(1): (word length: 6 / group items: 12) | |
| length: min=7, max=11, avg=8.7 | |
| top prefixes: ot(8), qo(2), sh(1), ch(1) | |
| contains: oteeody(11), qoteeody(6), shoteeody(2), cheoteeodal(1), | |
| oteeodaiin(1), oteeodail(1), oteeodalsy(1), oteeodam(1), | |
| oteeodar(1), oteeodl(1), oteoteeody(1), qoteeod(1) | |
| oteeody(11): (word length: 7 / group items: 3) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: qo(1), sh(1), ot(1) | |
| contains: qoteeody(6), shoteeody(2), oteoteeody(1) | |
| oteeol(9): (word length: 6 / group items: 5) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: ot(4), qo(1) | |
| contains: qoteeol(5), oteeolchor(1), oteeolkeey(1), oteeols(1), | |
| oteeoly(1) | |
| oteeos(10): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ot(2), qo(1) | |
| contains: qoteeos(3), oteeosy(2), oteeosol(1) | |
| otees(10): (word length: 5 / group items: 7) | |
| length: min=6, max=8, avg=6.9 | |
| top prefixes: ot(5), qo(2) | |
| contains: qotees(4), qoteesy(2), oteesaey(1), oteesal(1), oteeshs(1), | |
| oteesod(1), oteesy(1) | |
| oteesy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qoteesy(2) | |
| oteey(140): (word length: 5 / group items: 12) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: ot(4), ch(2), qo(1), ar(1), do(1) | |
| contains: qoteey(42), choteey(7), oteeys(2), aroteey(1), cheoteey(1), | |
| doteey(1), dsheeoteey(1), okeoteey(1), oteeykeey(1), oteeykey(1), | |
| oteeykshy(1), teoteey(1) | |
| oteo(13): (word length: 4 / group items: 74) | |
| length: min=5, max=14, avg=7.3 | |
| top prefixes: ot(50), qo(12), ch(6), sh(3), dc(1) | |
| contains: oteol(42), oteody(39), oteos(29), oteor(12), qoteody(12), | |
| qoteol(12), oteodaiin(8), oteodar(7), oteodal(6), qoteo(5), | |
| qoteor(5), oteotey(4), choteol(3), oteod(3), oteoeey(2), | |
| oteoldy(2), oteoly(2), oteom(2), chesokeeoteody(1), choteody(1), | |
| choteoky(1), choteoly(1), choteos(1), dcheoteos(1), doteoda(1), | |
| oteoal(1), oteoaldy(1), oteoarar(1), oteoc(1), oteochedy(1), | |
| oteochey(1), oteochor(1), oteodain(1), oteodair(1), oteodas(1), | |
| oteodched(1), oteodchy(1), oteodl(1), oteodo(1), oteodshey(1), | |
| oteoefol(1), oteofy(1), oteoin(1), oteokeey(1), oteolain(1), | |
| oteolair(1), oteolar(1), oteool(1), oteoos(1), oteorar(1), | |
| oteorom(1), oteory(1), oteosaiin(1), oteosal(1), oteosdal(1), | |
| oteoshaly(1), oteoshey(1), oteoteeody(1), oteoteotsho(1), | |
| oteotor(1), oteoy(1), oteoys(1), qoteodaiin(1), qoteode(1), | |
| qoteold(1), qoteoly(1), qoteoor(1), qoteos(1), qoteosam(1), | |
| qoteotor(1), sheoteoly(1), shoteo(1), shoteol(1), soteol(1) | |
| oteoal(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: oteoaldy(1) | |
| oteoc(1): (word length: 5 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: ot(3) | |
| contains: oteochedy(1), oteochey(1), oteochor(1) | |
| oteod(3): (word length: 5 / group items: 18) | |
| length: min=6, max=14, avg=7.9 | |
| top prefixes: ot(12), qo(3), ch(2), do(1) | |
| contains: oteody(39), qoteody(12), oteodaiin(8), oteodar(7), oteodal(6), | |
| chesokeeoteody(1), choteody(1), doteoda(1), oteodain(1), | |
| oteodair(1), oteodas(1), oteodched(1), oteodchy(1), oteodl(1), | |
| oteodo(1), oteodshey(1), qoteodaiin(1), qoteode(1) | |
| oteodaiin(8): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: qo(1) | |
| contains: qoteodaiin(1) | |
| oteody(39): (word length: 6 / group items: 3) | |
| length: min=7, max=14, avg=9.7 | |
| top prefixes: ch(2), qo(1) | |
| contains: qoteody(12), chesokeeoteody(1), choteody(1) | |
| oteol(42): (word length: 5 / group items: 13) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: ot(5), qo(3), ch(2), sh(2), so(1) | |
| contains: qoteol(12), choteol(3), oteoldy(2), oteoly(2), choteoly(1), | |
| oteolain(1), oteolair(1), oteolar(1), qoteold(1), qoteoly(1), | |
| sheoteoly(1), shoteol(1), soteol(1) | |
| oteoly(2): (word length: 6 / group items: 3) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ch(1), qo(1), sh(1) | |
| contains: choteoly(1), qoteoly(1), sheoteoly(1) | |
| oteor(12): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ot(3), qo(1) | |
| contains: qoteor(5), oteorar(1), oteorom(1), oteory(1) | |
| oteos(29): (word length: 5 / group items: 9) | |
| length: min=6, max=9, avg=7.9 | |
| top prefixes: ot(5), qo(2), ch(1), dc(1) | |
| contains: choteos(1), dcheoteos(1), oteosaiin(1), oteosal(1), | |
| oteosdal(1), oteoshaly(1), oteoshey(1), qoteos(1), qoteosam(1) | |
| oteotor(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoteotor(1) | |
| oteoy(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1) | |
| contains: oteoys(1) | |
| otes(5): (word length: 4 / group items: 5) | |
| length: min=5, max=8, avg=6.4 | |
| top prefixes: qo(3), ot(2) | |
| contains: qotes(2), otesalod(1), oteshy(1), qoteshy(1), qotesy(1) | |
| oteshy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qoteshy(1) | |
| otey(57): (word length: 4 / group items: 12) | |
| length: min=5, max=11, avg=6.5 | |
| top prefixes: ot(3), qo(2), ch(2), so(1), ar(1) | |
| contains: qotey(24), chotey(9), oteotey(4), cheotey(2), sotey(2), | |
| arotey(1), lsheotey(1), opotey(1), oteydy(1), oteys(1), | |
| qoteytyqoky(1), shotey(1) | |
| otl(1): (word length: 3 / group items: 7) | |
| length: min=4, max=9, avg=6.3 | |
| top prefixes: ot(5), qo(2) | |
| contains: qotl(2), otlaiin(1), otlchdain(1), otleey(1), otlol(1), | |
| otly(1), qotlolkal(1) | |
| otlol(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qotlolkal(1) | |
| oto(10): (word length: 3 / group items: 143) | |
| length: min=4, max=10, avg=6.9 | |
| top prefixes: ot(86), qo(32), ch(7), sh(4), ct(2) | |
| contains: otol(86), qotol(47), otor(46), qotor(29), otody(14), | |
| otoldy(11), otoly(11), qotody(11), chotol(7), otodaiin(5), | |
| chotor(4), otory(4), otos(4), choto(3), chotols(3), otoar(3), | |
| otodar(3), otoiin(3), otoky(3), otoy(3), qoto(3), qotoiin(3), | |
| shotol(3), cheotol(2), chotom(2), otoaiin(2), otochedy(2), | |
| otodal(2), otolam(2), otolchey(2), otolor(2), qotod(2), | |
| qotoeey(2), qotolcheo(2), qotoy(2), totol(2), chotody(1), | |
| cthdaoto(1), ctheotol(1), dotody(1), kotody(1), kshotol(1), | |
| lotos(1), oqotoiiin(1), otchotor(1), oteotor(1), otochor(1), | |
| otockey(1), otocs(1), otod(1), otodarod(1), otodchy(1), | |
| otodeeeo(1), otodeeodor(1), otodol(1), otoees(1), otoeeseor(1), | |
| otoiis(1), otoikhy(1), otoin(1), otokaiman(1), otokal(1), | |
| otokchey(1), otokcho(1), otokeedar(1), otokeedy(1), otokeoar(1), | |
| otokol(1), otolaiin(1), otolaiino(1), otolarol(1), otolchcthy(1), | |
| otolchd(1), otolches(1), otoldos(1), otoldyl(1), otolfcho(1), | |
| otolkshy(1), otolky(1), otoloaiin(1), otoloaram(1), otolodal(1), | |
| otolol(1), otololees(1), otolom(1), otolopaiin(1), otolosheey(1), | |
| otoloty(1), otolsar(1), otolsheeos(1), otoltopar(1), otom(1), | |
| otoraiin(1), otorain(1), otoralchy(1), otoram(1), otorar(1), | |
| otorchety(1), otorchy(1), otoreees(1), otork(1), otorkeol(1), | |
| otorsheey(1), otorsheod(1), otosaiin(1), otosey(1), otoshol(1), | |
| otosy(1), otota(1), ototar(1), otoydy(1), potol(1), potoy(1), | |
| qooto(1), qoteotor(1), qotocthey(1), qotodaiin(1), qotodain(1), | |
| qotoear(1), qotoees(1), qotoeetchy(1), qotohy(1), qotoiir(1), | |
| qotokody(1), qotoky(1), qotolaiin(1), qotolchd(1), qotolchy(1), | |
| qotoldy(1), qotolo(1), qotolol(1), qotoly(1), qotom(1), | |
| qotomody(1), qotos(1), qototeeey(1), shoto(1), shotokody(1), | |
| shotoly(1), sotodan(1), sotoiiin(1), ycheoto(1), yotoam(1) | |
| otod(1): (word length: 4 / group items: 17) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: ot(9), qo(4), ch(1), do(1), ko(1) | |
| contains: otody(14), qotody(11), otodaiin(5), otodar(3), otodal(2), | |
| qotod(2), chotody(1), dotody(1), kotody(1), otodarod(1), | |
| otodchy(1), otodeeeo(1), otodeeodor(1), otodol(1), qotodaiin(1), | |
| qotodain(1), sotodan(1) | |
| otodaiin(5): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qotodaiin(1) | |
| otodar(3): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otodarod(1) | |
| otody(14): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.2 | |
| top prefixes: qo(1), ch(1), do(1), ko(1) | |
| contains: qotody(11), chotody(1), dotody(1), kotody(1) | |
| otoees(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ot(1), qo(1) | |
| contains: otoeeseor(1), qotoees(1) | |
| otoiin(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotoiin(3) | |
| otoky(3): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qotoky(1) | |
| otol(86): (word length: 4 / group items: 46) | |
| length: min=5, max=10, avg=7.4 | |
| top prefixes: ot(28), qo(9), ch(3), sh(2), to(1) | |
| contains: qotol(47), otoldy(11), otoly(11), chotol(7), chotols(3), | |
| shotol(3), cheotol(2), otolam(2), otolchey(2), otolor(2), | |
| qotolcheo(2), totol(2), ctheotol(1), kshotol(1), otolaiin(1), | |
| otolaiino(1), otolarol(1), otolchcthy(1), otolchd(1), | |
| otolches(1), otoldos(1), otoldyl(1), otolfcho(1), otolkshy(1), | |
| otolky(1), otoloaiin(1), otoloaram(1), otolodal(1), otolol(1), | |
| otololees(1), otolom(1), otolopaiin(1), otolosheey(1), | |
| otoloty(1), otolsar(1), otolsheeos(1), otoltopar(1), potol(1), | |
| qotolaiin(1), qotolchd(1), qotolchy(1), qotoldy(1), qotolo(1), | |
| qotolol(1), qotoly(1), shotoly(1) | |
| otolaiin(1): (word length: 8 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ot(1), qo(1) | |
| contains: otolaiino(1), qotolaiin(1) | |
| otolchd(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotolchd(1) | |
| otoldy(11): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1), qo(1) | |
| contains: otoldyl(1), qotoldy(1) | |
| otolol(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ot(1), qo(1) | |
| contains: otololees(1), qotolol(1) | |
| otoly(11): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: qo(1), sh(1) | |
| contains: qotoly(1), shotoly(1) | |
| otom(1): (word length: 4 / group items: 3) | |
| length: min=5, max=8, avg=6.3 | |
| top prefixes: qo(2), ch(1) | |
| contains: chotom(2), qotom(1), qotomody(1) | |
| otor(46): (word length: 4 / group items: 18) | |
| length: min=5, max=9, avg=7.2 | |
| top prefixes: ot(15), qo(2), ch(1) | |
| contains: qotor(29), chotor(4), otory(4), otchotor(1), oteotor(1), | |
| otoraiin(1), otorain(1), otoralchy(1), otoram(1), otorar(1), | |
| otorchety(1), otorchy(1), otoreees(1), otork(1), otorkeol(1), | |
| otorsheey(1), otorsheod(1), qoteotor(1) | |
| otork(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otorkeol(1) | |
| otos(4): (word length: 4 / group items: 6) | |
| length: min=5, max=8, avg=6.0 | |
| top prefixes: ot(4), lo(1), qo(1) | |
| contains: lotos(1), otosaiin(1), otosey(1), otoshol(1), otosy(1), | |
| qotos(1) | |
| otota(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1) | |
| contains: ototar(1) | |
| otoy(3): (word length: 4 / group items: 3) | |
| length: min=5, max=6, avg=5.3 | |
| top prefixes: qo(1), ot(1), po(1) | |
| contains: qotoy(2), otoydy(1), potoy(1) | |
| otsh(1): (word length: 4 / group items: 32) | |
| length: min=5, max=11, avg=7.1 | |
| top prefixes: ot(19), qo(7), ch(3), os(1), sh(1) | |
| contains: otshedy(13), otshey(7), qotshy(5), otshy(4), otshdy(3), | |
| qotshdy(3), qotshedy(3), qotshey(3), chotshol(2), otsho(2), | |
| otshol(2), qotsheod(2), chotshe(1), chotshy(1), oschotshl(1), | |
| oteoteotsho(1), otshaiin(1), otshal(1), otshchor(1), | |
| otshealkar(1), otsheey(1), otsheo(1), otsheody(1), otshes(1), | |
| otshor(1), otshs(1), otshsaiin(1), otshshdy(1), qotsh(1), | |
| qotshol(1), shotshy(1), tchotshey(1) | |
| otshdy(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotshdy(3) | |
| otshedy(13): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotshedy(3) | |
| otsheo(1): (word length: 6 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1), ot(1) | |
| contains: qotsheod(2), otsheody(1) | |
| otshey(7): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: qo(1), tc(1) | |
| contains: qotshey(3), tchotshey(1) | |
| otsho(2): (word length: 5 / group items: 5) | |
| length: min=6, max=11, avg=7.6 | |
| top prefixes: ot(3), ch(1), qo(1) | |
| contains: chotshol(2), otshol(2), oteoteotsho(1), otshor(1), qotshol(1) | |
| otshol(2): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(1), qo(1) | |
| contains: chotshol(2), qotshol(1) | |
| otshs(1): (word length: 5 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ot(2) | |
| contains: otshsaiin(1), otshshdy(1) | |
| otshy(4): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.7 | |
| top prefixes: qo(1), ch(1), sh(1) | |
| contains: qotshy(5), chotshy(1), shotshy(1) | |
| oty(115): (word length: 3 / group items: 51) | |
| length: min=4, max=11, avg=6.3 | |
| top prefixes: ot(25), ch(7), qo(6), sh(2), dc(2) | |
| contains: qoty(87), choty(37), shoty(8), cheoty(5), loty(4), otydy(3), | |
| otytam(2), qotyshey(2), chchoty(1), cheotydy(1), chotyokchy(1), | |
| chotyr(1), chshoty(1), dcheoty(1), dchoty(1), doty(1), | |
| dyotyds(1), kchoty(1), oeeoty(1), ofaramoty(1), otchoty(1), | |
| otoloty(1), otychdy(1), otycheedy(1), otychey(1), otycoyl(1), | |
| otyd(1), otyda(1), otydal(1), otydary(1), otydm(1), otykchs(1), | |
| otykeey(1), otykol(1), otyky(1), otyl(1), otylal(1), otyly(1), | |
| otys(1), otyshy(1), otytchol(1), otytchy(1), otyteeodain(1), | |
| qocheoty(1), qotyd(1), qotydy(1), qotyl(1), roloty(1), rotydy(1), | |
| sheoty(1), soty(1) | |
| otyd(1): (word length: 4 / group items: 10) | |
| length: min=5, max=8, avg=6.0 | |
| top prefixes: ot(5), qo(2), ch(1), dy(1), ro(1) | |
| contains: otydy(3), cheotydy(1), dyotyds(1), otyda(1), otydal(1), | |
| otydary(1), otydm(1), qotyd(1), qotydy(1), rotydy(1) | |
| otyda(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ot(2) | |
| contains: otydal(1), otydary(1) | |
| otydy(3): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: ch(1), qo(1), ro(1) | |
| contains: cheotydy(1), qotydy(1), rotydy(1) | |
| otyl(1): (word length: 4 / group items: 3) | |
| length: min=5, max=6, avg=5.3 | |
| top prefixes: ot(2), qo(1) | |
| contains: otylal(1), otyly(1), qotyl(1) | |
| otys(1): (word length: 4 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: qo(1), ot(1) | |
| contains: qotyshey(2), otyshy(1) | |
| oyd(1): (word length: 3 / group items: 5) | |
| length: min=5, max=6, avg=5.6 | |
| top prefixes: oy(3), ot(1), so(1) | |
| contains: otoydy(1), oydar(1), oydchy(1), oytoyd(1), soydy(1) | |
| oykeey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qoykeey(1) | |
| oys(1): (word length: 3 / group items: 3) | |
| length: min=5, max=6, avg=5.7 | |
| top prefixes: oy(2), ot(1) | |
| contains: oteoys(1), oyshey(1), oyshy(1) | |
| oyty(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: sh(1) | |
| contains: shoyty(1) | |
| padar(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chpadar(1) | |
| paichy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: op(1) | |
| contains: opaichy(1) | |
| paiin(8): (word length: 5 / group items: 16) | |
| length: min=6, max=11, avg=7.6 | |
| top prefixes: ch(5), op(2), qo(1), yp(1), ep(1) | |
| contains: opaiin(13), qopaiin(6), ypaiin(3), epaiin(2), chcpaiin(1), | |
| cheepaiin(1), cheopaiin(1), chepaiin(1), chpaiin(1), | |
| fchedypaiin(1), lpaiin(1), opaiinar(1), otolopaiin(1), | |
| paiinody(1), spaiin(1), topaiin(1) | |
| paiir(2): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: op(2) | |
| contains: opaiir(1), opaiiral(1) | |
| pair(2): (word length: 4 / group items: 10) | |
| length: min=5, max=8, avg=6.7 | |
| top prefixes: op(3), pa(3), yp(1), ep(1), ol(1) | |
| contains: opair(4), ypair(3), pairar(2), epairody(1), olpair(1), | |
| opairaly(1), opairam(1), pairain(1), pairody(1), qopairam(1) | |
| pairody(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ep(1) | |
| contains: epairody(1) | |
| pal(2): (word length: 3 / group items: 31) | |
| length: min=4, max=10, avg=6.6 | |
| top prefixes: op(18), pa(5), ch(3), qo(2), yp(1) | |
| contains: opal(9), chpal(2), opalal(2), opalkaiin(2), opalor(2), | |
| qopal(2), ypal(2), chpaly(1), chypaldy(1), epal(1), | |
| ochepalain(1), opalam(1), opalar(1), opalchdy(1), opaldaiin(1), | |
| opaldy(1), opalefom(1), opalg(1), opalkam(1), opalkar(1), | |
| opalke(1), opaloiiry(1), opals(1), opalshedy(1), opaly(1), | |
| palar(1), palchar(1), palchd(1), palkeedy(1), palshsar(1), | |
| qopalor(1) | |
| palar(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: op(1) | |
| contains: opalar(1) | |
| palchd(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(1) | |
| contains: opalchdy(1) | |
| par(5): (word length: 3 / group items: 24) | |
| length: min=4, max=10, avg=6.0 | |
| top prefixes: pa(7), op(5), ch(4), qo(3), yp(1) | |
| contains: opar(10), qopar(5), chepar(4), ypar(4), opary(3), chopar(1), | |
| chpar(1), chparam(1), cpar(1), lpar(1), oparairdly(1), oparal(1), | |
| oparam(1), otoltopar(1), paradam(1), parair(1), parar(1), | |
| parchdy(1), pardy(1), parody(1), paroiin(1), qoparaiin(1), | |
| qopary(1), taipar(1) | |
| parair(1): (word length: 6 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: op(1) | |
| contains: oparairdly(1) | |
| pchaiin(1): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.3 | |
| top prefixes: op(1), qo(1), yp(1) | |
| contains: opchaiin(1), qopchaiin(1), ypchaiin(1) | |
| pchal(3): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: op(3), ch(1), pc(1), yp(1) | |
| contains: opchal(3), chopchal(1), opchaldy(1), opchaly(1), | |
| pchallarar(1), ypchal(1) | |
| pchar(3): (word length: 5 / group items: 8) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: op(2), ch(2), pc(2), qo(1), yp(1) | |
| contains: opchar(2), qopchar(2), chepchar(1), chpchar(1), opcharoiin(1), | |
| pcharalor(1), pcharasy(1), ypchar(1) | |
| pchd(1): (word length: 4 / group items: 36) | |
| length: min=5, max=9, avg=7.2 | |
| top prefixes: pc(12), op(5), yp(5), ch(4), qo(2) | |
| contains: opchdy(19), qopchdy(15), pchdy(11), ypchdy(6), pchdar(5), | |
| pchdair(4), pchdaiin(3), lpchdy(2), pchdam(2), pchdol(2), | |
| alpchdar(1), alpchdy(1), cheepchdy(1), chepchdy(1), cholpchd(1), | |
| chopchdy(1), lchpchdy(1), lpchdain(1), olpchdy(1), opchdain(1), | |
| opchdal(1), opchdar(1), opchdard(1), pchdairor(1), pchdal(1), | |
| pchdarody(1), pchdeedy(1), pchdlar(1), pchdoiin(1), qopchd(1), | |
| shepchdy(1), solpchd(1), ypchd(1), ypchdaiin(1), ypchdair(1), | |
| ypchdar(1) | |
| pchdaiin(3): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: yp(1) | |
| contains: ypchdaiin(1) | |
| pchdair(4): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: pc(1), yp(1) | |
| contains: pchdairor(1), ypchdair(1) | |
| pchdal(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: op(1) | |
| contains: opchdal(1) | |
| pchdar(5): (word length: 6 / group items: 5) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: op(2), al(1), pc(1), yp(1) | |
| contains: alpchdar(1), opchdar(1), opchdard(1), pchdarody(1), ypchdar(1) | |
| pchdy(11): (word length: 5 / group items: 11) | |
| length: min=6, max=9, avg=7.3 | |
| top prefixes: ch(3), op(1), qo(1), yp(1), lp(1) | |
| contains: opchdy(19), qopchdy(15), ypchdy(6), lpchdy(2), alpchdy(1), | |
| cheepchdy(1), chepchdy(1), chopchdy(1), lchpchdy(1), olpchdy(1), | |
| shepchdy(1) | |
| pchear(2): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: op(1), qo(1) | |
| contains: opchear(2), qopchear(1) | |
| pched(1): (word length: 5 / group items: 36) | |
| length: min=6, max=13, avg=8.3 | |
| top prefixes: pc(10), op(5), qo(5), ch(4), yp(3) | |
| contains: opchedy(50), pchedy(34), qopchedy(32), ypchedy(12), | |
| pchedar(11), lpchedy(6), pchedal(5), olpchedy(4), opchedaiin(4), | |
| pchedaiin(4), chepchedy(2), chopchedy(2), opched(2), pchedain(2), | |
| chepched(1), chpchedy(1), dpchedy(1), opchedal(1), opcheddl(1), | |
| otcheypchedy(1), pchedairs(1), pchedas(1), pchedchdy(1), | |
| pchedeey(1), pchedey(1), qepchedy(1), qopchedaiin(1), | |
| qopchedal(1), qopcheddy(1), qopchedyd(1), qpchedy(1), | |
| shapchedyfeey(1), shepchedy(1), shypchedy(1), ypcheddy(1), | |
| ypchedpy(1) | |
| pchedaiin(4): (word length: 9 / group items: 2) | |
| length: min=10, max=11, avg=10.5 | |
| top prefixes: op(1), qo(1) | |
| contains: opchedaiin(4), qopchedaiin(1) | |
| pchedal(5): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: op(1), qo(1) | |
| contains: opchedal(1), qopchedal(1) | |
| pchedy(34): (word length: 6 / group items: 16) | |
| length: min=7, max=13, avg=8.6 | |
| top prefixes: ch(3), sh(3), qo(2), op(1), yp(1) | |
| contains: opchedy(50), qopchedy(32), ypchedy(12), lpchedy(6), | |
| olpchedy(4), chepchedy(2), chopchedy(2), chpchedy(1), dpchedy(1), | |
| otcheypchedy(1), qepchedy(1), qopchedyd(1), qpchedy(1), | |
| shapchedyfeey(1), shepchedy(1), shypchedy(1) | |
| pcheed(1): (word length: 6 / group items: 7) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: op(3), pc(1), qo(1), lp(1), yp(1) | |
| contains: opcheedy(3), pcheedy(2), qopcheedy(2), lpcheedy(1), | |
| opcheed(1), opcheedoy(1), ypcheedy(1) | |
| pcheedy(2): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.2 | |
| top prefixes: op(1), qo(1), lp(1), yp(1) | |
| contains: opcheedy(3), qopcheedy(2), lpcheedy(1), ypcheedy(1) | |
| pcheeody(2): (word length: 8 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: qo(1) | |
| contains: qopcheeody(1) | |
| pcheey(4): (word length: 6 / group items: 5) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: op(1), qo(1), ch(1), ol(1), yp(1) | |
| contains: opcheey(5), qopcheey(4), chopcheey(1), olpcheey(1), ypcheey(1) | |
| pcheo(3): (word length: 5 / group items: 37) | |
| length: min=6, max=12, avg=8.2 | |
| top prefixes: pc(18), op(8), ch(6), qo(4), lp(1) | |
| contains: pcheol(11), opcheol(8), pcheody(7), pcheor(5), opcheody(3), | |
| pcheodar(3), opcheor(2), pcheos(2), qopcheody(2), qopcheos(2), | |
| cheopcheod(1), chepcheol(1), chopcheopchy(1), chpcheod(1), | |
| chpcheor(1), chpcheos(1), lpcheo(1), opcheo(1), opcheocf(1), | |
| opcheodair(1), opcheodal(1), opcheolfy(1), pcheockhy(1), | |
| pcheocphy(1), pcheodaiin(1), pcheodain(1), pcheodal(1), | |
| pcheodchy(1), pcheoepchy(1), pcheokeey(1), pcheoldom(1), | |
| pcheolkal(1), pcheoly(1), pcheoor(1), pcheoy(1), qopcheoain(1), | |
| qopcheol(1) | |
| pcheodal(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: op(1) | |
| contains: opcheodal(1) | |
| pcheody(7): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: op(1), qo(1) | |
| contains: opcheody(3), qopcheody(2) | |
| pcheol(11): (word length: 6 / group items: 7) | |
| length: min=7, max=9, avg=8.3 | |
| top prefixes: pc(3), op(2), ch(1), qo(1) | |
| contains: opcheol(8), chepcheol(1), opcheolfy(1), pcheoldom(1), | |
| pcheolkal(1), pcheoly(1), qopcheol(1) | |
| pcheor(5): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: op(1), ch(1) | |
| contains: opcheor(2), chpcheor(1) | |
| pcheos(2): (word length: 6 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1), ch(1) | |
| contains: qopcheos(2), chpcheos(1) | |
| pchey(12): (word length: 5 / group items: 16) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: ch(4), op(1), qo(1), yp(1), ol(1) | |
| contains: opchey(29), qopchey(10), ypchey(5), chepchey(2), chopchey(2), | |
| olpchey(2), shopchey(2), chpchey(1), chypchey(1), epchey(1), | |
| lpchey(1), qepchey(1), rpchey(1), tcheepchey(1), typchey(1), | |
| ytoeopchey(1) | |
| pcho(2): (word length: 4 / group items: 61) | |
| length: min=5, max=15, avg=7.6 | |
| top prefixes: pc(30), op(11), qo(6), yp(6), sh(3) | |
| contains: pchor(12), pchol(8), opchol(6), opchor(6), qopchol(6), | |
| pchodaiin(5), pchody(5), pchocthy(3), pchodain(3), qopchor(3), | |
| ypchol(3), oepchol(2), opchody(2), opcholor(2), pchodar(2), | |
| pchodol(2), pcholky(2), pcholy(2), shopcho(2), ypchor(2), | |
| chopcho(1), chopchol(1), chpchol(1), ochepchody(1), opcho(1), | |
| opchod(1), opcholalaiin(1), opcholdg(1), opcholdy(1), | |
| opchordy(1), opchosam(1), pchocty(1), pchod(1), pchodair(1), | |
| pchodais(1), pchodal(1), pchoetal(1), pchof(1), pchofar(1), | |
| pchofychy(1), pchoiiin(1), pcholkal(1), pcholkchdy(1), | |
| pcholkeedy(1), pcholor(1), pchom(1), pchooiin(1), pchoraiin(1), | |
| pchoror(1), pchosos(1), pchotchy(1), qopchody(1), qopcholy(1), | |
| qopchypcho(1), qoypchol(1), shepchol(1), shorpchor(1), | |
| ypchocfy(1), ypchocpheosaiin(1), ypcholdy(1), ypcholy(1) | |
| pchod(1): (word length: 5 / group items: 12) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: pc(8), op(2), oc(1), qo(1) | |
| contains: pchodaiin(5), pchody(5), pchodain(3), opchody(2), pchodar(2), | |
| pchodol(2), ochepchody(1), opchod(1), pchodair(1), pchodais(1), | |
| pchodal(1), qopchody(1) | |
| pchody(5): (word length: 6 / group items: 3) | |
| length: min=7, max=10, avg=8.3 | |
| top prefixes: op(1), oc(1), qo(1) | |
| contains: opchody(2), ochepchody(1), qopchody(1) | |
| pchof(1): (word length: 5 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: pc(2) | |
| contains: pchofar(1), pchofychy(1) | |
| pchol(8): (word length: 5 / group items: 21) | |
| length: min=6, max=12, avg=7.8 | |
| top prefixes: pc(6), op(5), qo(3), yp(3), ch(2) | |
| contains: opchol(6), qopchol(6), ypchol(3), oepchol(2), opcholor(2), | |
| pcholky(2), pcholy(2), chopchol(1), chpchol(1), opcholalaiin(1), | |
| opcholdg(1), opcholdy(1), pcholkal(1), pcholkchdy(1), | |
| pcholkeedy(1), pcholor(1), qopcholy(1), qoypchol(1), shepchol(1), | |
| ypcholdy(1), ypcholy(1) | |
| pcholor(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(1) | |
| contains: opcholor(2) | |
| pcholy(2): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), yp(1) | |
| contains: qopcholy(1), ypcholy(1) | |
| pchor(12): (word length: 5 / group items: 7) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: op(2), pc(2), qo(1), yp(1), sh(1) | |
| contains: opchor(6), qopchor(3), ypchor(2), opchordy(1), pchoraiin(1), | |
| pchoror(1), shorpchor(1) | |
| pchsed(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yp(1) | |
| contains: ypchseds(1) | |
| pchy(2): (word length: 4 / group items: 33) | |
| length: min=5, max=12, avg=7.4 | |
| top prefixes: ch(7), qo(4), sh(4), op(2), pc(2) | |
| contains: opchy(15), qopchy(11), chopchy(5), chepchy(4), chpchy(4), | |
| ypchy(4), shepchy(3), dpchy(2), shopchy(2), chapchy(1), | |
| cheolkeepchy(1), chopcheopchy(1), chypchy(1), cpchy(1), | |
| ctheepchy(1), dypchy(1), epchy(1), okchdpchy(1), opchytcy(1), | |
| otaipchy(1), pcheoepchy(1), pchykar(1), qoepchy(1), | |
| qopchypcho(1), qopchyr(1), shdpchy(1), sheopchy(1), spchy(1), | |
| stolpchy(1), tolpchy(1), yqopchy(1), yteechypchy(1), zepchy(1) | |
| pdaiin(3): (word length: 6 / group items: 4) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: op(1), ch(1), qo(1), sh(1) | |
| contains: opdaiin(3), chdypdaiin(1), qopdaiin(1), shepdaiin(1) | |
| pdair(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: op(1) | |
| contains: opdairody(1) | |
| pdal(2): (word length: 4 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: pd(1) | |
| contains: pdalshor(1) | |
| pdar(2): (word length: 4 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: op(1) | |
| contains: opdarshdy(1) | |
| pdol(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qopdol(1) | |
| poar(2): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: po(1) | |
| contains: poaral(1) | |
| podaiin(5): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(1), yp(1) | |
| contains: opodaiin(1), ypodaiin(1) | |
| podair(2): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: po(1) | |
| contains: podairol(1) | |
| podar(3): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: po(1) | |
| contains: podaroar(1) | |
| poiin(3): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: op(1), qo(1) | |
| contains: opoiin(1), qopoiin(1) | |
| poiis(1): (word length: 5 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: op(1) | |
| contains: opoiisooin(1) | |
| pol(24): (word length: 3 / group items: 60) | |
| length: min=4, max=13, avg=7.2 | |
| top prefixes: po(41), op(7), ch(3), qo(2), yp(2) | |
| contains: polaiin(8), polchedy(6), qopol(6), opol(4), polshy(3), | |
| opoly(2), polal(2), polar(2), polarar(2), polchdy(2), polched(2), | |
| polchey(2), poldy(2), polor(2), poly(2), cheopolteeedy(1), | |
| chepol(1), chopol(1), lkeopol(1), opolaiin(1), opolkeor(1), | |
| opolkod(1), opoloiin(1), opolsy(1), oshepols(1), polairy(1), | |
| polalchdy(1), polanar(1), polchal(1), polchechy(1), | |
| polcheolkain(1), polchls(1), polchs(1), polchy(1), poldaiin(1), | |
| poldaky(1), poldchody(1), poldshedy(1), poleedaran(1), | |
| poleeol(1), polkchy(1), polkeedal(1), polkeeey(1), polkeeo(1), | |
| polkeey(1), polkiin(1), polky(1), polsaisy(1), polshdal(1), | |
| polshdy(1), polshol(1), polshor(1), polteshol(1), polyshy(1), | |
| qopolkain(1), qpol(1), shopolchedy(1), ykeeepol(1), ypolcheey(1), | |
| ypolol(1) | |
| polaiin(8): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(1) | |
| contains: opolaiin(1) | |
| polal(2): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: po(1) | |
| contains: polalchdy(1) | |
| polar(2): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: po(1) | |
| contains: polarar(2) | |
| polched(2): (word length: 7 / group items: 2) | |
| length: min=8, max=11, avg=9.5 | |
| top prefixes: po(1), sh(1) | |
| contains: polchedy(6), shopolchedy(1) | |
| polchedy(6): (word length: 8 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: sh(1) | |
| contains: shopolchedy(1) | |
| poly(2): (word length: 4 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: op(1), po(1) | |
| contains: opoly(2), polyshy(1) | |
| pom(1): (word length: 3 / group items: 3) | |
| length: min=4, max=7, avg=5.7 | |
| top prefixes: op(2), yt(1) | |
| contains: opom(1), opomdy(1), ytaipom(1) | |
| por(8): (word length: 3 / group items: 26) | |
| length: min=4, max=10, avg=6.6 | |
| top prefixes: po(14), op(4), ch(2), qo(1), ap(1) | |
| contains: opor(8), qopor(4), poraiin(3), chpor(2), oporaiin(2), | |
| porain(2), aporair(1), cheopor(1), eoporchy(1), oepor(1), | |
| oporar(1), oporody(1), poraiiindy(1), porair(1), poral(1), | |
| porar(1), porarchy(1), porchey(1), porechol(1), porol(1), | |
| poror(1), pororaiin(1), porory(1), porshols(1), ychopordg(1), | |
| ypory(1) | |
| poraiin(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: op(1) | |
| contains: oporaiin(2) | |
| porair(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ap(1) | |
| contains: aporair(1) | |
| porar(1): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: op(1), po(1) | |
| contains: oporar(1), porarchy(1) | |
| poror(1): (word length: 5 / group items: 2) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: po(2) | |
| contains: pororaiin(1), porory(1) | |
| pshar(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yp(1) | |
| contains: ypsharal(1) | |
| pshdy(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: op(1) | |
| contains: opshdy(1) | |
| pshedy(3): (word length: 6 / group items: 5) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: qo(1), op(1), ch(1), ol(1), yp(1) | |
| contains: qopshedy(4), opshedy(2), choypshedy(1), olpshedy(1), | |
| ypshedy(1) | |
| psheedy(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chpsheedy(1) | |
| psheey(1): (word length: 6 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ch(1) | |
| contains: chlchpsheey(1) | |
| psheody(5): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: qo(1) | |
| contains: qoepsheody(1) | |
| psheor(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yp(1) | |
| contains: ypsheor(1) | |
| pshod(1): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.8 | |
| top prefixes: ps(3), op(1) | |
| contains: pshodaiin(2), opshody(1), pshodalos(1), pshody(1) | |
| pshody(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: op(1) | |
| contains: opshody(1) | |
| pshol(5): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: op(2), yp(1) | |
| contains: opshol(1), opsholal(1), ypsholy(1) | |
| pshy(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1) | |
| contains: olpshy(1) | |
| pydaiin(2): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: op(1), qo(1) | |
| contains: opydaiin(3), qopydaiin(1) | |
| qaiin(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: oq(1) | |
| contains: oqaiin(1) | |
| qey(1): (word length: 3 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qe(1) | |
| contains: qeykeey(1) | |
| qkeeod(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qk(1) | |
| contains: qkeeody(1) | |
| qkhol(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qk(1) | |
| contains: qkholdy(1) | |
| qko(1): (word length: 3 / group items: 6) | |
| length: min=4, max=6, avg=4.5 | |
| top prefixes: qk(6) | |
| contains: qkol(2), qkoldy(1), qkor(1), qkory(1), qkos(1), qkoy(1) | |
| qkol(2): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qk(1) | |
| contains: qkoldy(1) | |
| qkor(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: qk(1) | |
| contains: qkory(1) | |
| qocheo(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: qo(3) | |
| contains: qocheol(1), qocheor(1), qocheoty(1) | |
| qocho(2): (word length: 5 / group items: 3) | |
| length: min=6, max=10, avg=8.3 | |
| top prefixes: qo(3) | |
| contains: qochol(2), qochodaiin(1), qochoithy(1) | |
| qockhed(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qockhedy(4) | |
| qockho(1): (word length: 6 / group items: 6) | |
| length: min=7, max=8, avg=7.2 | |
| top prefixes: qo(6) | |
| contains: qockhol(7), qockhody(1), qockhom(1), qockhor(1), qockhos(1), | |
| qockhoy(1) | |
| qockhy(19): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: oq(1) | |
| contains: oqockhy(1) | |
| qoctho(1): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(4) | |
| contains: qocthol(2), qocthody(1), qoctholy(1), qocthor(1) | |
| qocthol(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoctholy(1) | |
| qod(8): (word length: 3 / group items: 25) | |
| length: min=4, max=9, avg=6.1 | |
| top prefixes: qo(24), yk(1) | |
| contains: qodaiin(42), qody(17), qodain(11), qodar(11), qodal(7), | |
| qodair(3), qodam(3), qodeedy(3), qodaiiin(2), qodchy(2), | |
| qodeey(2), qodor(2), qoda(1), qodaiikhy(1), qodaim(1), qodan(1), | |
| qodary(1), qodched(1), qodckhy(1), qodcthy(1), qodol(1), | |
| qodom(1), qodos(1), qodykey(1), ykcholqod(1) | |
| qoda(1): (word length: 4 / group items: 11) | |
| length: min=5, max=9, avg=6.2 | |
| top prefixes: qo(11) | |
| contains: qodaiin(42), qodain(11), qodar(11), qodal(7), qodair(3), | |
| qodam(3), qodaiiin(2), qodaiikhy(1), qodaim(1), qodan(1), | |
| qodary(1) | |
| qodar(11): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qodary(1) | |
| qody(17): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qodykey(1) | |
| qoeed(1): (word length: 5 / group items: 5) | |
| length: min=6, max=9, avg=7.6 | |
| top prefixes: qo(5) | |
| contains: qoeedy(20), qoeedaiin(2), qoeeda(1), qoeedain(1), qoeedeody(1) | |
| qoeeda(1): (word length: 6 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(2) | |
| contains: qoeedaiin(2), qoeedain(1) | |
| qoeeo(2): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: qo(4), oq(2) | |
| contains: qoeeody(3), qoeeor(3), qoeeol(2), oqoeeol(1), oqoeeosain(1), | |
| qoeeokaiin(1) | |
| qoeeol(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: oq(1) | |
| contains: oqoeeol(1) | |
| qoek(1): (word length: 4 / group items: 13) | |
| length: min=5, max=12, avg=7.2 | |
| top prefixes: qo(13) | |
| contains: qoekedy(2), qoekeey(2), qoekol(2), qoekaiin(1), qoekaly(1), | |
| qoekar(1), qoekchar(1), qoekchy(1), qoekeeykeody(1), qoekeol(1), | |
| qoekeor(1), qoekshg(1), qoeky(1) | |
| qoekeey(2): (word length: 7 / group items: 1) | |
| length: min=12, max=12, avg=12.0 | |
| top prefixes: qo(1) | |
| contains: qoekeeykeody(1) | |
| qoete(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qoeteey(1) | |
| qof(1): (word length: 3 / group items: 27) | |
| length: min=5, max=10, avg=7.3 | |
| top prefixes: qo(26), oq(1) | |
| contains: qofchedy(8), qofchdy(3), qofcheol(3), qofair(2), qofchol(2), | |
| qofchy(2), qofol(2), oqofchedy(1), qofaiin(1), qofain(1), | |
| qofchal(1), qofchdaiin(1), qofchdal(1), qofchdar(1), | |
| qofcheepy(1), qofchey(1), qofcho(1), qofchor(1), qofockhdy(1), | |
| qofod(1), qofoiin(1), qoforom(1), qofshdy(1), qofsheeey(1), | |
| qofshey(1), qofshy(1), qofydaiin(1) | |
| qofchedy(8): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: oq(1) | |
| contains: oqofchedy(1) | |
| qofcho(1): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(2) | |
| contains: qofchol(2), qofchor(1) | |
| qok(9): (word length: 3 / group items: 254) | |
| length: min=4, max=12, avg=7.2 | |
| top prefixes: qo(244), oq(5), sh(2), yq(2), sq(1) | |
| contains: qokeey(308), qokeedy(305), qokain(279), qokedy(272), | |
| qokaiin(262), qokal(191), qokar(152), qoky(147), qokey(107), | |
| qokol(105), qokchy(69), qokchdy(56), qokeol(52), qokchedy(39), | |
| qokor(36), qokeody(32), qokchey(30), qokeeey(26), qokam(25), | |
| qokeeo(23), qokeor(21), qokaly(18), qokchol(18), qokair(17), | |
| qokeed(15), qokechy(13), qokeeody(13), qokchor(11), qokeeol(11), | |
| qokshedy(11), qokcho(10), qokeeor(10), qokshy(10), qokaldy(9), | |
| qokl(9), qoko(9), qokody(9), qokan(8), qokedar(8), qokees(8), | |
| qokeod(8), qokshey(8), qoked(7), qokeo(7), qokod(7), qokchd(6), | |
| qokear(6), qokeechy(6), qokeedar(6), qokoiin(6), qokeeedy(5), | |
| qokeos(5), qokchod(4), qokdy(4), qokeal(4), qokechedy(4), | |
| qokedain(4), qokeeos(4), qokshdy(4), qokaiir(3), qokairor(3), | |
| qokas(3), qokcheo(3), qokcheody(3), qokeain(3), qokechdy(3), | |
| qokedaiin(3), qokedal(3), qokeedain(3), qokeedal(3), qokeees(3), | |
| qokoldy(3), qokshd(3), oqokain(2), qokaiiin(2), qokaim(2), | |
| qokalchdy(2), qokalor(2), qokaram(2), qokchaiin(2), qokcheedy(2), | |
| qokcheey(2), qokcheor(2), qokchody(2), qokedam(2), qokeeaiin(2), | |
| qokeear(2), qokeeod(2), qokeochy(2), qokeodal(2), qokeoly(2), | |
| qokeom(2), qokiir(2), qokoiiin(2), qokom(2), qokorar(2), | |
| qokoy(2), qokydy(2), oqokar(1), oqokeey(1), oqokeol(1), oqoky(1), | |
| qokady(1), qokaekeeey(1), qokaiii(1), qokaiinos(1), qokail(1), | |
| qokairolchdy(1), qokaiy(1), qokalaiin(1), qokalam(1), qokalar(1), | |
| qokalchal(1), qokalchar(1), qokalcheol(1), qokalchey(1), | |
| qokaldar(1), qokalol(1), qokalom(1), qokaloro(1), qokalos(1), | |
| qokalsh(1), qokalshedy(1), qokamdy(1), qokaoy(1), qokarary(1), | |
| qokary(1), qokay(1), qokch(1), qokchain(1), qokchal(1), | |
| qokchar(1), qokchdain(1), qokchdar(1), qokchdyl(1), qokche(1), | |
| qokched(1), qokcheodaiin(1), qokcheol(1), qokchkeey(1), | |
| qokchocthor(1), qokchodal(1), qokchon(1), qokchory(1), | |
| qokchos(1), qokchs(1), qokchsdy(1), qokchshy(1), qokchyky(1), | |
| qokd(1), qokeaiin(1), qokealdy(1), qokeas(1), qokechchy(1), | |
| qokechckhy(1), qokecheos(1), qokechey(1), qokecho(1), | |
| qokededy(1), qokedol(1), qokedydy(1), qokeeal(1), qokeeam(1), | |
| qokeeas(1), qokeeashdy(1), qokeechey(1), qokeechom(1), | |
| qokeedaiin(1), qokeedair(1), qokeedody(1), qokeee(1), qokeeen(1), | |
| qokeeeor(1), qokeeeos(1), qokeefcy(1), qokeeiin(1), qokeel(1), | |
| qokeeodaiin(1), qokeeodain(1), qokeeodor(1), qokeeokain(1), | |
| qokeeoky(1), qokeeolchey(1), qokeeshy(1), qokeg(1), qokehdy(1), | |
| qokeoda(1), qokeodair(1), qokeodol(1), qokeoefy(1), qokeog(1), | |
| qokeokedy(1), qokeolo(1), qokeory(1), qokeoy(1), qoker(1), | |
| qokes(1), qokesd(1), qokesdy(1), qokeshdy(1), qokeshe(1), | |
| qokeshedy(1), qokeshey(1), qokeshs(1), qokeshy(1), qokeyl(1), | |
| qokg(1), qokhy(1), qokiiiody(1), qoklaiin(1), qoklain(1), | |
| qoklcheey(1), qokoaiin(1), qokoaiis(1), qokochy(1), qokodaiin(1), | |
| qokodal(1), qokodar(1), qokoeey(1), qokoiir(1), qokoin(1), | |
| qokokchy(1), qokokil(1), qokolchedy(1), qokolchey(1), qokold(1), | |
| qokolkain(1), qokolkchdy(1), qokolky(1), qokololal(1), qokoly(1), | |
| qokomo(1), qokool(1), qokoor(1), qokopy(1), qokoral(1), | |
| qokoror(1), qokos(1), qoksh(1), qokshe(1), qoksheo(1), | |
| qoksheoy(1), qokshol(1), qokychdy(1), qokyl(1), qokylddy(1), | |
| qokyr(1), qoqokeey(1), qoteytyqoky(1), sheqokam(1), shoqoky(1), | |
| sqokeo(1), yqokain(1), yqokaly(1) | |
| qokaiii(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokaiiin(2) | |
| qokaiin(262): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qokaiinos(1) | |
| qokain(279): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: oq(1), yq(1) | |
| contains: oqokain(2), yqokain(1) | |
| qokair(17): (word length: 6 / group items: 2) | |
| length: min=8, max=12, avg=10.0 | |
| top prefixes: qo(2) | |
| contains: qokairor(3), qokairolchdy(1) | |
| qokal(191): (word length: 5 / group items: 19) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: qo(18), yq(1) | |
| contains: qokaly(18), qokaldy(9), qokalchdy(2), qokalor(2), | |
| qokalaiin(1), qokalam(1), qokalar(1), qokalchal(1), qokalchar(1), | |
| qokalcheol(1), qokalchey(1), qokaldar(1), qokalol(1), qokalom(1), | |
| qokaloro(1), qokalos(1), qokalsh(1), qokalshedy(1), yqokaly(1) | |
| qokalor(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokaloro(1) | |
| qokalsh(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: qo(1) | |
| contains: qokalshedy(1) | |
| qokaly(18): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yq(1) | |
| contains: yqokaly(1) | |
| qokam(25): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), sh(1) | |
| contains: qokamdy(1), sheqokam(1) | |
| qokar(152): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: qo(3), oq(1) | |
| contains: qokaram(2), oqokar(1), qokarary(1), qokary(1) | |
| qokch(1): (word length: 5 / group items: 36) | |
| length: min=6, max=12, avg=7.8 | |
| top prefixes: qo(36) | |
| contains: qokchy(69), qokchdy(56), qokchedy(39), qokchey(30), | |
| qokchol(18), qokchor(11), qokcho(10), qokchd(6), qokchod(4), | |
| qokcheo(3), qokcheody(3), qokchaiin(2), qokcheedy(2), | |
| qokcheey(2), qokcheor(2), qokchody(2), qokchain(1), qokchal(1), | |
| qokchar(1), qokchdain(1), qokchdar(1), qokchdyl(1), qokche(1), | |
| qokched(1), qokcheodaiin(1), qokcheol(1), qokchkeey(1), | |
| qokchocthor(1), qokchodal(1), qokchon(1), qokchory(1), | |
| qokchos(1), qokchs(1), qokchsdy(1), qokchshy(1), qokchyky(1) | |
| qokchd(6): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: qo(4) | |
| contains: qokchdy(56), qokchdain(1), qokchdar(1), qokchdyl(1) | |
| qokchdy(56): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokchdyl(1) | |
| qokche(1): (word length: 6 / group items: 10) | |
| length: min=7, max=12, avg=8.3 | |
| top prefixes: qo(10) | |
| contains: qokchedy(39), qokchey(30), qokcheo(3), qokcheody(3), | |
| qokcheedy(2), qokcheey(2), qokcheor(2), qokched(1), | |
| qokcheodaiin(1), qokcheol(1) | |
| qokched(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokchedy(39) | |
| qokcheo(3): (word length: 7 / group items: 4) | |
| length: min=8, max=12, avg=9.2 | |
| top prefixes: qo(4) | |
| contains: qokcheody(3), qokcheor(2), qokcheodaiin(1), qokcheol(1) | |
| qokcho(10): (word length: 6 / group items: 9) | |
| length: min=7, max=11, avg=7.9 | |
| top prefixes: qo(9) | |
| contains: qokchol(18), qokchor(11), qokchod(4), qokchody(2), | |
| qokchocthor(1), qokchodal(1), qokchon(1), qokchory(1), qokchos(1) | |
| qokchod(4): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(2) | |
| contains: qokchody(2), qokchodal(1) | |
| qokchor(11): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokchory(1) | |
| qokchs(1): (word length: 6 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(2) | |
| contains: qokchsdy(1), qokchshy(1) | |
| qokchy(69): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokchyky(1) | |
| qokd(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: qo(1) | |
| contains: qokdy(4) | |
| qokeal(4): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokealdy(1) | |
| qoked(7): (word length: 5 / group items: 9) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: qo(9) | |
| contains: qokedy(272), qokedar(8), qokedain(4), qokedaiin(3), | |
| qokedal(3), qokedam(2), qokededy(1), qokedol(1), qokedydy(1) | |
| qokedy(272): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokedydy(1) | |
| qokeeas(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: qo(1) | |
| contains: qokeeashdy(1) | |
| qokeed(15): (word length: 6 / group items: 7) | |
| length: min=7, max=10, avg=8.6 | |
| top prefixes: qo(7) | |
| contains: qokeedy(305), qokeedar(6), qokeedain(3), qokeedal(3), | |
| qokeedaiin(1), qokeedair(1), qokeedody(1) | |
| qokeee(1): (word length: 6 / group items: 6) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(6) | |
| contains: qokeeey(26), qokeeedy(5), qokeees(3), qokeeen(1), qokeeeor(1), | |
| qokeeeos(1) | |
| qokeeo(23): (word length: 6 / group items: 11) | |
| length: min=7, max=11, avg=8.6 | |
| top prefixes: qo(11) | |
| contains: qokeeody(13), qokeeol(11), qokeeor(10), qokeeos(4), | |
| qokeeod(2), qokeeodaiin(1), qokeeodain(1), qokeeodor(1), | |
| qokeeokain(1), qokeeoky(1), qokeeolchey(1) | |
| qokeeod(2): (word length: 7 / group items: 4) | |
| length: min=8, max=11, avg=9.5 | |
| top prefixes: qo(4) | |
| contains: qokeeody(13), qokeeodaiin(1), qokeeodain(1), qokeeodor(1) | |
| qokeeol(11): (word length: 7 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: qo(1) | |
| contains: qokeeolchey(1) | |
| qokees(8): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokeeshy(1) | |
| qokeey(308): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: oq(1), qo(1) | |
| contains: oqokeey(1), qoqokeey(1) | |
| qokeo(7): (word length: 5 / group items: 20) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: qo(18), oq(1), sq(1) | |
| contains: qokeol(52), qokeody(32), qokeor(21), qokeod(8), qokeos(5), | |
| qokeochy(2), qokeodal(2), qokeoly(2), qokeom(2), oqokeol(1), | |
| qokeoda(1), qokeodair(1), qokeodol(1), qokeoefy(1), qokeog(1), | |
| qokeokedy(1), qokeolo(1), qokeory(1), qokeoy(1), sqokeo(1) | |
| qokeod(8): (word length: 6 / group items: 5) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: qo(5) | |
| contains: qokeody(32), qokeodal(2), qokeoda(1), qokeodair(1), | |
| qokeodol(1) | |
| qokeoda(1): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(2) | |
| contains: qokeodal(2), qokeodair(1) | |
| qokeol(52): (word length: 6 / group items: 3) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(2), oq(1) | |
| contains: qokeoly(2), oqokeol(1), qokeolo(1) | |
| qokeor(21): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokeory(1) | |
| qokes(1): (word length: 5 / group items: 8) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: qo(8) | |
| contains: qokesd(1), qokesdy(1), qokeshdy(1), qokeshe(1), qokeshedy(1), | |
| qokeshey(1), qokeshs(1), qokeshy(1) | |
| qokesd(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokesdy(1) | |
| qokeshe(1): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(2) | |
| contains: qokeshedy(1), qokeshey(1) | |
| qokey(107): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qokeyl(1) | |
| qokl(9): (word length: 4 / group items: 3) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: qo(3) | |
| contains: qoklaiin(1), qoklain(1), qoklcheey(1) | |
| qoko(9): (word length: 4 / group items: 36) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: qo(36) | |
| contains: qokol(105), qokor(36), qokody(9), qokod(7), qokoiin(6), | |
| qokoldy(3), qokoiiin(2), qokom(2), qokorar(2), qokoy(2), | |
| qokoaiin(1), qokoaiis(1), qokochy(1), qokodaiin(1), qokodal(1), | |
| qokodar(1), qokoeey(1), qokoiir(1), qokoin(1), qokokchy(1), | |
| qokokil(1), qokolchedy(1), qokolchey(1), qokold(1), qokolkain(1), | |
| qokolkchdy(1), qokolky(1), qokololal(1), qokoly(1), qokomo(1), | |
| qokool(1), qokoor(1), qokopy(1), qokoral(1), qokoror(1), qokos(1) | |
| qokod(7): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: qo(4) | |
| contains: qokody(9), qokodaiin(1), qokodal(1), qokodar(1) | |
| qokol(105): (word length: 5 / group items: 9) | |
| length: min=6, max=10, avg=8.1 | |
| top prefixes: qo(9) | |
| contains: qokoldy(3), qokolchedy(1), qokolchey(1), qokold(1), | |
| qokolkain(1), qokolkchdy(1), qokolky(1), qokololal(1), qokoly(1) | |
| qokold(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokoldy(3) | |
| qokom(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qokomo(1) | |
| qokor(36): (word length: 5 / group items: 3) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(3) | |
| contains: qokorar(2), qokoral(1), qokoror(1) | |
| qoksh(1): (word length: 5 / group items: 9) | |
| length: min=6, max=8, avg=6.9 | |
| top prefixes: qo(9) | |
| contains: qokshedy(11), qokshy(10), qokshey(8), qokshdy(4), qokshd(3), | |
| qokshe(1), qoksheo(1), qoksheoy(1), qokshol(1) | |
| qokshd(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qokshdy(4) | |
| qokshe(1): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(4) | |
| contains: qokshedy(11), qokshey(8), qoksheo(1), qoksheoy(1) | |
| qoksheo(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoksheoy(1) | |
| qoky(147): (word length: 4 / group items: 8) | |
| length: min=5, max=11, avg=6.9 | |
| top prefixes: qo(6), oq(1), sh(1) | |
| contains: qokydy(2), oqoky(1), qokychdy(1), qokyl(1), qokylddy(1), | |
| qokyr(1), qoteytyqoky(1), shoqoky(1) | |
| qokyl(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qokylddy(1) | |
| qol(151): (word length: 3 / group items: 44) | |
| length: min=4, max=10, avg=6.7 | |
| top prefixes: qo(43), oq(1) | |
| contains: qolchey(11), qolchedy(10), qolkeedy(7), qoly(7), qolkeey(6), | |
| qolkain(5), qolky(4), qolaiin(3), qolain(3), oqol(2), qolal(2), | |
| qolar(2), qolcheedy(2), qolcheol(2), qolchy(2), qolkaiin(2), | |
| qolshedy(2), qolsheedy(2), qolshey(2), qolshy(2), qolair(1), | |
| qolchdy(1), qolcheey(1), qolcheor(1), qoldar(1), qoldy(1), | |
| qoleechedy(1), qolkary(1), qolkchy(1), qolkedy(1), qolkeeey(1), | |
| qolkeshdy(1), qolkey(1), qolkshey(1), qolody(1), qolol(1), | |
| qolp(1), qolr(1), qolsa(1), qolshdy(1), qolsheey(1), qolsor(1), | |
| qoltedy(1), qolteedy(1) | |
| qool(5): (word length: 4 / group items: 5) | |
| length: min=6, max=9, avg=7.8 | |
| top prefixes: qo(5) | |
| contains: qooldy(1), qoolkaiin(1), qoolkal(1), qoolkeedy(1), qoolkeey(1) | |
| qoor(8): (word length: 4 / group items: 2) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: oq(1), qo(1) | |
| contains: oqoor(1), qoorar(1) | |
| qop(5): (word length: 3 / group items: 58) | |
| length: min=4, max=11, avg=7.5 | |
| top prefixes: qo(57), yq(1) | |
| contains: qopchedy(32), qopchdy(15), qopchy(11), qopchey(10), | |
| qopaiin(6), qopchol(6), qopol(6), qopy(6), qopar(5), qopcheey(4), | |
| qopor(4), qopshedy(4), qopchor(3), qopal(2), qopchar(2), | |
| qopcheedy(2), qopcheody(2), qopcheos(2), qopaiim(1), qopairam(1), | |
| qopalor(1), qopam(1), qoparaiin(1), qopary(1), qopchaiin(1), | |
| qopchais(1), qopcham(1), qopchcfhy(1), qopchchs(1), qopchd(1), | |
| qopchear(1), qopchedaiin(1), qopchedal(1), qopcheddy(1), | |
| qopchedyd(1), qopcheeody(1), qopcheoain(1), qopcheol(1), | |
| qopcher(1), qopches(1), qopchesy(1), qopchety(1), qopchody(1), | |
| qopcholy(1), qopchsd(1), qopchypcho(1), qopchyr(1), qopdaiin(1), | |
| qopdain(1), qopdol(1), qopdy(1), qopeedy(1), qopeeedar(1), | |
| qopoeey(1), qopoiin(1), qopolkain(1), qopydaiin(1), yqopchy(1) | |
| qopal(2): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qopalor(1) | |
| qopar(5): (word length: 5 / group items: 2) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: qo(2) | |
| contains: qoparaiin(1), qopary(1) | |
| qopchd(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qopchdy(15) | |
| qopchedy(32): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qopchedyd(1) | |
| qopches(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qopchesy(1) | |
| qopchol(6): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qopcholy(1) | |
| qopchy(11): (word length: 6 / group items: 3) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: qo(2), yq(1) | |
| contains: qopchypcho(1), qopchyr(1), yqopchy(1) | |
| qopol(6): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qopolkain(1) | |
| qopy(6): (word length: 4 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qopydaiin(1) | |
| qor(23): (word length: 3 / group items: 8) | |
| length: min=4, max=8, avg=6.1 | |
| top prefixes: qo(7), yq(1) | |
| contains: qorain(4), qoraiin(1), qorar(1), qorchain(1), qorchedy(1), | |
| qorky(1), qorshy(1), yqor(1) | |
| qos(4): (word length: 3 / group items: 10) | |
| length: min=5, max=10, avg=7.4 | |
| top prefixes: qo(10) | |
| contains: qosaiin(2), qosain(1), qoscheody(1), qoschodam(1), qoseey(1), | |
| qosheckhhy(1), qoshedy(1), qosheo(1), qoshocphy(1), qoshy(1) | |
| qot(8): (word length: 3 / group items: 165) | |
| length: min=4, max=11, avg=7.1 | |
| top prefixes: qo(161), oq(4) | |
| contains: qotedy(91), qoty(87), qotaiin(79), qoteedy(74), qotain(64), | |
| qotar(63), qotchy(63), qotal(59), qotol(47), qoteey(42), | |
| qotor(29), qotchedy(24), qotey(24), qotchdy(23), qotchey(19), | |
| qotchor(14), qotchol(13), qotam(12), qoteody(12), qoteol(12), | |
| qotcho(11), qotody(11), qotair(6), qoteeody(6), qotaly(5), | |
| qotched(5), qoteeol(5), qoteo(5), qoteor(5), qotshy(5), | |
| qotchd(4), qotcheedy(4), qotcheo(4), qoted(4), qoteeey(4), | |
| qotees(4), qotchar(3), qotcheol(3), qotchody(3), qotedaiin(3), | |
| qotedal(3), qotedar(3), qoteed(3), qoteedar(3), qoteeedy(3), | |
| qoteeo(3), qoteeos(3), qoto(3), qotoiin(3), qotshdy(3), | |
| qotshedy(3), qotshey(3), qotaiiin(2), qotan(2), qotas(2), | |
| qotchaiin(2), qotcheaiin(2), qotchedar(2), qotchod(2), | |
| qotchoiin(2), qoteal(2), qotear(2), qotechy(2), qotedor(2), | |
| qoteees(2), qoteesy(2), qotes(2), qotl(2), qotod(2), qotoeey(2), | |
| qotolcheo(2), qotoy(2), qotsheod(2), qotyshey(2), oqotaiin(1), | |
| oqotaly(1), oqotar(1), oqotoiiin(1), qotad(1), qotaiior(1), | |
| qotail(1), qotaily(1), qotais(1), qotalal(1), qotalchedy(1), | |
| qotaldy(1), qotalody(1), qotalom(1), qotals(1), qotalshy(1), | |
| qotardy(1), qotary(1), qotchain(1), qotcham(1), qotchdain(1), | |
| qotchdal(1), qotchdar(1), qotcheea(1), qotcheeaiin(1), | |
| qotches(1), qotcholm(1), qotchoraiin(1), qotchos(1), | |
| qotchotchy(1), qotchs(1), qotchsdy(1), qotchytor(1), qotdcty(1), | |
| qotddyar(1), qotea(1), qotecheor(1), qotechoep(1), qotedain(1), | |
| qotedais(1), qotedary(1), qotedl(1), qotedol(1), qotedshedy(1), | |
| qoteeal(1), qoteedaiin(1), qoteeddy(1), qoteedo(1), qoteeeo(1), | |
| qoteeod(1), qoteeotchy(1), qoteeoy(1), qoteodaiin(1), qoteode(1), | |
| qoteold(1), qoteoly(1), qoteoor(1), qoteos(1), qoteosam(1), | |
| qoteotor(1), qoteshy(1), qotesy(1), qoteytyqoky(1), qotir(1), | |
| qotlolkal(1), qotocthey(1), qotodaiin(1), qotodain(1), | |
| qotoear(1), qotoees(1), qotoeetchy(1), qotohy(1), qotoiir(1), | |
| qotokody(1), qotoky(1), qotolaiin(1), qotolchd(1), qotolchy(1), | |
| qotoldy(1), qotolo(1), qotolol(1), qotoly(1), qotom(1), | |
| qotomody(1), qotos(1), qototeeey(1), qotsh(1), qotshol(1), | |
| qotyd(1), qotydy(1), qotyl(1) | |
| qotaiin(79): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: oq(1) | |
| contains: oqotaiin(1) | |
| qotail(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotaily(1) | |
| qotal(59): (word length: 5 / group items: 9) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: qo(8), oq(1) | |
| contains: qotaly(5), oqotaly(1), qotalal(1), qotalchedy(1), qotaldy(1), | |
| qotalody(1), qotalom(1), qotals(1), qotalshy(1) | |
| qotals(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotalshy(1) | |
| qotaly(5): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: oq(1) | |
| contains: oqotaly(1) | |
| qotar(63): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: qo(2), oq(1) | |
| contains: oqotar(1), qotardy(1), qotary(1) | |
| qotchd(4): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: qo(4) | |
| contains: qotchdy(23), qotchdain(1), qotchdal(1), qotchdar(1) | |
| qotched(5): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(2) | |
| contains: qotchedy(24), qotchedar(2) | |
| qotcheea(1): (word length: 8 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: qo(1) | |
| contains: qotcheeaiin(1) | |
| qotcheo(4): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotcheol(3) | |
| qotcho(11): (word length: 6 / group items: 9) | |
| length: min=7, max=11, avg=8.2 | |
| top prefixes: qo(9) | |
| contains: qotchor(14), qotchol(13), qotchody(3), qotchod(2), | |
| qotchoiin(2), qotcholm(1), qotchoraiin(1), qotchos(1), | |
| qotchotchy(1) | |
| qotchod(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotchody(3) | |
| qotchol(13): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotcholm(1) | |
| qotchor(14): (word length: 7 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: qo(1) | |
| contains: qotchoraiin(1) | |
| qotchs(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotchsdy(1) | |
| qotchy(63): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qotchytor(1) | |
| qotea(1): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(2) | |
| contains: qoteal(2), qotear(2) | |
| qoted(4): (word length: 5 / group items: 11) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: qo(11) | |
| contains: qotedy(91), qotedaiin(3), qotedal(3), qotedar(3), qotedor(2), | |
| qotedain(1), qotedais(1), qotedary(1), qotedl(1), qotedol(1), | |
| qotedshedy(1) | |
| qotedar(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotedary(1) | |
| qoteed(3): (word length: 6 / group items: 5) | |
| length: min=7, max=10, avg=8.0 | |
| top prefixes: qo(5) | |
| contains: qoteedy(74), qoteedar(3), qoteedaiin(1), qoteeddy(1), | |
| qoteedo(1) | |
| qoteeo(3): (word length: 6 / group items: 6) | |
| length: min=7, max=10, avg=7.7 | |
| top prefixes: qo(6) | |
| contains: qoteeody(6), qoteeol(5), qoteeos(3), qoteeod(1), | |
| qoteeotchy(1), qoteeoy(1) | |
| qoteeod(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoteeody(6) | |
| qotees(4): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qoteesy(2) | |
| qoteo(5): (word length: 5 / group items: 11) | |
| length: min=6, max=10, avg=7.2 | |
| top prefixes: qo(11) | |
| contains: qoteody(12), qoteol(12), qoteor(5), qoteodaiin(1), qoteode(1), | |
| qoteold(1), qoteoly(1), qoteoor(1), qoteos(1), qoteosam(1), | |
| qoteotor(1) | |
| qoteol(12): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(2) | |
| contains: qoteold(1), qoteoly(1) | |
| qoteos(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoteosam(1) | |
| qotes(2): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: qo(2) | |
| contains: qoteshy(1), qotesy(1) | |
| qotey(24): (word length: 5 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: qo(1) | |
| contains: qoteytyqoky(1) | |
| qotl(2): (word length: 4 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qotlolkal(1) | |
| qoto(3): (word length: 4 / group items: 30) | |
| length: min=5, max=10, avg=7.1 | |
| top prefixes: qo(29), oq(1) | |
| contains: qotol(47), qotor(29), qotody(11), qotoiin(3), qotod(2), | |
| qotoeey(2), qotolcheo(2), qotoy(2), oqotoiiin(1), qotocthey(1), | |
| qotodaiin(1), qotodain(1), qotoear(1), qotoees(1), qotoeetchy(1), | |
| qotohy(1), qotoiir(1), qotokody(1), qotoky(1), qotolaiin(1), | |
| qotolchd(1), qotolchy(1), qotoldy(1), qotolo(1), qotolol(1), | |
| qotoly(1), qotom(1), qotomody(1), qotos(1), qototeeey(1) | |
| qotod(2): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.7 | |
| top prefixes: qo(3) | |
| contains: qotody(11), qotodaiin(1), qotodain(1) | |
| qotol(47): (word length: 5 / group items: 8) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: qo(8) | |
| contains: qotolcheo(2), qotolaiin(1), qotolchd(1), qotolchy(1), | |
| qotoldy(1), qotolo(1), qotolol(1), qotoly(1) | |
| qotolo(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qo(1) | |
| contains: qotolol(1) | |
| qotom(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotomody(1) | |
| qotsh(1): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: qo(6) | |
| contains: qotshy(5), qotshdy(3), qotshedy(3), qotshey(3), qotsheod(2), | |
| qotshol(1) | |
| qoty(87): (word length: 4 / group items: 4) | |
| length: min=5, max=8, avg=6.0 | |
| top prefixes: qo(4) | |
| contains: qotyshey(2), qotyd(1), qotydy(1), qotyl(1) | |
| qotyd(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: qo(1) | |
| contains: qotydy(1) | |
| qoy(9): (word length: 3 / group items: 5) | |
| length: min=5, max=8, avg=7.0 | |
| top prefixes: qo(4), sh(1) | |
| contains: qoykeeey(1), qoykeey(1), qoyky(1), qoypchol(1), shorqoy(1) | |
| rady(1): (word length: 4 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okairady(1) | |
| raiiin(1): (word length: 6 / group items: 4) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: or(1), da(1), po(1), ra(1) | |
| contains: oraiiin(4), daraiiin(1), poraiiindy(1), raraiiin(1) | |
| raiin(75): (word length: 5 / group items: 42) | |
| length: min=6, max=11, avg=7.9 | |
| top prefixes: ok(6), ch(4), or(3), qo(3), po(2) | |
| contains: oraiin(38), araiin(10), soraiin(7), raraiin(6), choraiin(5), | |
| saraiin(4), poraiin(3), daraiin(2), koraiin(2), okaraiin(2), | |
| okoraiin(2), oporaiin(2), taraiin(2), charaiin(1), chearaiin(1), | |
| chforaiin(1), daraiinm(1), doraiin(1), kshoraiin(1), loraiin(1), | |
| lraiin(1), lsoraiin(1), ocphoraiin(1), okcharaiin(1), | |
| okeeoraiin(1), okolraiin(1), okraiin(1), oloraiin(1), olraiin(1), | |
| oraiino(1), oraiiny(1), otaraiin(1), otoraiin(1), pchoraiin(1), | |
| pchraiin(1), pororaiin(1), qoparaiin(1), qoraiin(1), | |
| qotchoraiin(1), ycheoraiin(1), ykairaiin(1), yraiin(1) | |
| raiis(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: so(1) | |
| contains: soraiis(1) | |
| rain(26): (word length: 4 / group items: 26) | |
| length: min=5, max=9, avg=6.7 | |
| top prefixes: ot(3), qo(2), ch(2), ko(2), or(1) | |
| contains: orain(27), qorain(4), charain(3), sarain(3), arain(2), | |
| chorain(2), korain(2), porain(2), sorain(2), dalorain(1), | |
| dorain(1), karainy(1), koeeorain(1), lrain(1), oforain(1), | |
| oloeorain(1), otarain(1), otararain(1), otorain(1), pairain(1), | |
| qoirain(1), rainal(1), rorain(1), torain(1), ykarain(1), | |
| yorain(1) | |
| rair(6): (word length: 4 / group items: 14) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: or(2), da(2), ar(2), ta(2), ap(1) | |
| contains: orair(5), dairair(2), aporair(1), arair(1), arairaly(1), | |
| darair(1), okorair(1), oparairdly(1), orairody(1), parair(1), | |
| pdrairdy(1), porair(1), tarair(1), tarairy(1) | |
| rais(1): (word length: 4 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: sa(1), yd(1) | |
| contains: saraisl(1), ydaraishy(1) | |
| ral(17): (word length: 3 / group items: 95) | |
| length: min=4, max=12, avg=6.5 | |
| top prefixes: ra(13), ar(8), da(8), or(7), ok(6) | |
| contains: aral(16), oral(10), saral(6), dairal(5), okaral(5), otaral(3), | |
| soral(3), airal(2), daiiral(2), daral(2), daraly(2), oraly(2), | |
| otaraldy(2), raly(2), raral(2), taral(2), aiiral(1), aiiraly(1), | |
| ainarals(1), airaldy(1), arairaly(1), aralary(1), arald(1), | |
| aralos(1), arals(1), araly(1), araral(1), cfhodoral(1), | |
| chairal(1), cheoral(1), chkaidararal(1), cholraly(1), choraly(1), | |
| cthoral(1), darala(1), darall(1), daraloikhy(1), dararal(1), | |
| doral(1), dralas(1), faiiral(1), karal(1), loral(1), loralody(1), | |
| lraly(1), ofaral(1), ofaralar(1), oiral(1), okaralet(1), | |
| okaraly(1), okechdaral(1), okoral(1), okoraldy(1), olaraly(1), | |
| olfsheoral(1), opaiiral(1), opairaly(1), oparal(1), oralady(1), | |
| oralar(1), oralaror(1), orald(1), oraloly(1), otoralchy(1), | |
| pcharalor(1), poaral(1), pocharal(1), poral(1), qairal(1), | |
| qokoral(1), ralchl(1), ralchs(1), ralchy(1), raldl(1), raldy(1), | |
| ralkchedy(1), ralky(1), ralom(1), ralr(1), rals(1), raraldy(1), | |
| roral(1), sairal(1), sairaly(1), sharal(1), shoral(1), | |
| soairal(1), soraloaly(1), soraly(1), sosoral(1), ydaral(1), | |
| ykyral(1), yoraly(1), ypsharal(1), ytairal(1) | |
| ralchy(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ot(1) | |
| contains: otoralchy(1) | |
| raldy(1): (word length: 5 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ot(1), ai(1), ok(1), ra(1) | |
| contains: otaraldy(2), airaldy(1), okoraldy(1), raraldy(1) | |
| rals(1): (word length: 4 / group items: 2) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: ai(1), ar(1) | |
| contains: ainarals(1), arals(1) | |
| raly(2): (word length: 4 / group items: 14) | |
| length: min=5, max=8, avg=6.6 | |
| top prefixes: ar(2), ch(2), da(1), or(1), ai(1) | |
| contains: daraly(2), oraly(2), aiiraly(1), arairaly(1), araly(1), | |
| cholraly(1), choraly(1), lraly(1), okaraly(1), olaraly(1), | |
| opairaly(1), sairaly(1), soraly(1), yoraly(1) | |
| ram(14): (word length: 3 / group items: 42) | |
| length: min=4, max=11, avg=6.5 | |
| top prefixes: ok(5), da(4), ch(4), ot(4), of(3) | |
| contains: aram(12), oram(10), daram(7), charam(4), otaram(4), okaram(3), | |
| raram(3), dairam(2), kairam(2), qokaram(2), sharam(2), airam(1), | |
| araram(1), cheoram(1), chkchedaram(1), chparam(1), daramdal(1), | |
| darams(1), dchairam(1), doiiram(1), dolaram(1), liiram(1), | |
| lram(1), oaram(1), ofaram(1), ofaramoty(1), oforam(1), | |
| okeearam(1), okeedaram(1), okeoram(1), okoramog(1), oloiram(1), | |
| opairam(1), oparam(1), otaramy(1), otoloaram(1), otoram(1), | |
| qopairam(1), ramshy(1), saram(1), taram(1), teedaram(1) | |
| rar(21): (word length: 3 / group items: 65) | |
| length: min=4, max=12, avg=6.6 | |
| top prefixes: or(8), ra(8), ar(6), ot(6), da(4) | |
| contains: orar(10), arar(7), raraiin(6), otarar(5), rary(4), sarar(4), | |
| arary(3), darar(3), raram(3), dairar(2), dorar(2), karar(2), | |
| orary(2), pairar(2), polarar(2), qokorar(2), raral(2), tarar(2), | |
| airar(1), akarar(1), araral(1), araram(1), ararchodaiin(1), | |
| araroy(1), chkaidararal(1), chorar(1), dararal(1), dararda(1), | |
| dkarar(1), folorarom(1), forar(1), kararo(1), korare(1), | |
| korary(1), lcharar(1), oairar(1), oaorar(1), okarar(1), | |
| oporar(1), orara(1), oraro(1), oraroekeol(1), orarol(1), | |
| orarorchy(1), oraryteop(1), otairar(1), otararain(1), | |
| oteoarar(1), oteorar(1), otorar(1), parar(1), pchallarar(1), | |
| porar(1), porarchy(1), qokarary(1), qoorar(1), qorar(1), | |
| raraiiin(1), raraldy(1), rarolchl(1), raroshy(1), sorary(1), | |
| sydarary(1), ykesodarar(1), ytarar(1) | |
| raral(2): (word length: 5 / group items: 4) | |
| length: min=6, max=12, avg=8.0 | |
| top prefixes: ar(1), ch(1), da(1), ra(1) | |
| contains: araral(1), chkaidararal(1), dararal(1), raraldy(1) | |
| raram(3): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ar(1) | |
| contains: araram(1) | |
| rary(4): (word length: 4 / group items: 7) | |
| length: min=5, max=9, avg=6.7 | |
| top prefixes: or(2), ar(1), ko(1), qo(1), so(1) | |
| contains: arary(3), orary(2), korary(1), oraryteop(1), qokarary(1), | |
| sorary(1), sydarary(1) | |
| ras(1): (word length: 3 / group items: 6) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: cf(1), or(1), ot(1), pc(1), yk(1) | |
| contains: cfarasr(1), orasaly(1), otaras(1), pcharasy(1), ykaras(1), | |
| ysarasod(1) | |
| rch(1): (word length: 3 / group items: 98) | |
| length: min=4, max=12, avg=7.2 | |
| top prefixes: rc(26), or(18), da(9), ar(5), ch(5) | |
| contains: rchedy(11), rchey(9), orchey(6), rcheey(4), rchy(4), | |
| darchedy(2), korchy(2), orchcthy(2), orchedy(2), orcheey(2), | |
| rcheky(2), rchr(2), rchs(2), torchy(2), adairchdy(1), | |
| aiirchar(1), airchy(1), ararchodaiin(1), archeey(1), archeody(1), | |
| archeor(1), archol(1), cheokorchey(1), chkorchy(1), | |
| chorcholsal(1), chorchor(1), chorchy(1), cthorchy(1), | |
| daiiirchy(1), dairchey(1), darchdar(1), darcheedal(1), | |
| darcheos(1), darchey(1), darchor(1), darchy(1), dorchdy(1), | |
| dorchory(1), dorchy(1), eoporchy(1), iirchal(1), karchy(1), | |
| kchorchor(1), lkarchees(1), odarchdy(1), okaircham(1), | |
| okarchy(1), okearcheol(1), orarorchy(1), orchaiin(1), | |
| orchcthdy(1), orchedal(1), orchedar(1), orcheo(1), orcheol(1), | |
| orcheory(1), orcheos(1), orchl(1), orcho(1), orchoer(1), | |
| orchor(1), orchsey(1), otarcho(1), otarchol(1), otorchety(1), | |
| otorchy(1), parchdy(1), porarchy(1), porchey(1), qorchain(1), | |
| qorchedy(1), rchar(1), rchchy(1), rchealcham(1), rched(1), | |
| rchedar(1), rcheeo(1), rchees(1), rcheetey(1), rcheo(1), | |
| rcheodal(1), rcheold(1), rches(1), rchl(1), rcho(1), rchody(1), | |
| rchol(1), rchos(1), rchseesy(1), rchsy(1), rorcheey(1), | |
| scharchy(1), shorchdy(1), shorchey(1), sorcheey(1), torchey(1), | |
| ydarchom(1), yrchey(1) | |
| rchar(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ai(1) | |
| contains: aiirchar(1) | |
| rched(1): (word length: 5 / group items: 7) | |
| length: min=6, max=8, avg=7.4 | |
| top prefixes: or(3), rc(2), da(1), qo(1) | |
| contains: rchedy(11), darchedy(2), orchedy(2), orchedal(1), orchedar(1), | |
| qorchedy(1), rchedar(1) | |
| rchedar(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: or(1) | |
| contains: orchedar(1) | |
| rchedy(11): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: da(1), or(1), qo(1) | |
| contains: darchedy(2), orchedy(2), qorchedy(1) | |
| rchees(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: lk(1) | |
| contains: lkarchees(1) | |
| rcheey(4): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: or(1), ar(1), ro(1), so(1) | |
| contains: orcheey(2), archeey(1), rorcheey(1), sorcheey(1) | |
| rcheo(1): (word length: 5 / group items: 10) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: or(4), ar(2), rc(2), da(1), ok(1) | |
| contains: archeody(1), archeor(1), darcheos(1), okearcheol(1), | |
| orcheo(1), orcheol(1), orcheory(1), orcheos(1), rcheodal(1), | |
| rcheold(1) | |
| rchey(9): (word length: 5 / group items: 8) | |
| length: min=6, max=11, avg=7.5 | |
| top prefixes: da(2), or(1), ch(1), po(1), sh(1) | |
| contains: orchey(6), cheokorchey(1), dairchey(1), darchey(1), | |
| porchey(1), shorchey(1), torchey(1), yrchey(1) | |
| rchl(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: or(1) | |
| contains: orchl(1) | |
| rcho(1): (word length: 4 / group items: 16) | |
| length: min=5, max=12, avg=7.4 | |
| top prefixes: or(3), rc(3), ar(2), ch(2), ot(2) | |
| contains: ararchodaiin(1), archol(1), chorcholsal(1), chorchor(1), | |
| darchor(1), dorchory(1), kchorchor(1), orcho(1), orchoer(1), | |
| orchor(1), otarcho(1), otarchol(1), rchody(1), rchol(1), | |
| rchos(1), ydarchom(1) | |
| rchol(1): (word length: 5 / group items: 3) | |
| length: min=6, max=11, avg=8.3 | |
| top prefixes: ar(1), ch(1), ot(1) | |
| contains: archol(1), chorcholsal(1), otarchol(1) | |
| rchs(2): (word length: 4 / group items: 3) | |
| length: min=5, max=8, avg=6.7 | |
| top prefixes: rc(2), or(1) | |
| contains: orchsey(1), rchseesy(1), rchsy(1) | |
| rchy(4): (word length: 4 / group items: 16) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: ch(2), da(2), ko(1), to(1), ai(1) | |
| contains: korchy(2), torchy(2), airchy(1), chkorchy(1), chorchy(1), | |
| cthorchy(1), daiiirchy(1), darchy(1), dorchy(1), eoporchy(1), | |
| karchy(1), okarchy(1), orarorchy(1), otorchy(1), porarchy(1), | |
| scharchy(1) | |
| reeey(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: or(1), od(1) | |
| contains: oreeey(3), odreeey(1) | |
| rkal(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1) | |
| contains: dairkal(1) | |
| rkar(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: or(1) | |
| contains: orkar(1) | |
| rkchdy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: or(1) | |
| contains: orkchdy(1) | |
| rky(1): (word length: 3 / group items: 3) | |
| length: min=4, max=5, avg=4.7 | |
| top prefixes: ch(1), or(1), qo(1) | |
| contains: chrky(1), orky(1), qorky(1) | |
| rod(1): (word length: 3 / group items: 43) | |
| length: min=4, max=9, avg=6.9 | |
| top prefixes: ar(6), da(5), ro(5), ai(3), ch(2) | |
| contains: arody(13), airody(3), dairody(3), rodaiin(3), airod(2), | |
| arod(2), arodl(2), karody(2), rodam(2), rody(2), aiirody(1), | |
| arodaim(1), arodchedy(1), arodly(1), chdairod(1), chorody(1), | |
| cphorods(1), dairodg(1), darod(1), darodsf(1), darody(1), | |
| dorody(1), epairody(1), keerodal(1), koldarod(1), okairody(1), | |
| olrodar(1), opdairody(1), oporody(1), orairody(1), orodam(1), | |
| otarody(1), otodarod(1), pairody(1), parody(1), pchdarody(1), | |
| rodain(1), rodeedy(1), shorodo(1), shorody(1), tarodaiin(1), | |
| teodarody(1), ytarody(1) | |
| rodaiin(3): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ta(1) | |
| contains: tarodaiin(1) | |
| rodam(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: or(1) | |
| contains: orodam(1) | |
| rody(2): (word length: 4 / group items: 20) | |
| length: min=5, max=9, avg=7.1 | |
| top prefixes: ai(2), da(2), op(2), pa(2), ar(1) | |
| contains: arody(13), airody(3), dairody(3), karody(2), aiirody(1), | |
| chorody(1), darody(1), dorody(1), epairody(1), okairody(1), | |
| opdairody(1), oporody(1), orairody(1), otarody(1), pairody(1), | |
| parody(1), pchdarody(1), shorody(1), teodarody(1), ytarody(1) | |
| roiin(4): (word length: 5 / group items: 7) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: ch(2), do(1), ar(1), ko(1), op(1) | |
| contains: doroiin(2), aroiin(1), choroiin(1), chytaroiin(1), koroiin(1), | |
| opcharoiin(1), paroiin(1) | |
| roiir(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: or(1) | |
| contains: oroiir(1) | |
| roiry(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: or(1) | |
| contains: oroiry(1) | |
| rol(20): (word length: 3 / group items: 72) | |
| length: min=4, max=12, avg=6.7 | |
| top prefixes: ro(12), or(8), ch(6), da(6), ar(5) | |
| contains: orol(15), arol(12), sarol(4), chorol(3), darol(3), oroly(3), | |
| roly(3), rorol(3), cheorol(2), dairol(2), okarol(2), rolchy(2), | |
| sairol(2), tarol(2), aiirol(1), airol(1), airolm(1), airols(1), | |
| arolkeey(1), arolky(1), arolor(1), arolsas(1), cfhdorol(1), | |
| chdarol(1), chkarol(1), chorolk(1), chtorol(1), daiirol(1), | |
| darolaly(1), darolm(1), darolsy(1), dchorol(1), drol(1), | |
| koleearol(1), korol(1), korols(1), larorol(1), okirolcy(1), | |
| olorol(1), orarol(1), orolaly(1), orold(1), orolgy(1), | |
| orolkain(1), orolodain(1), otolarol(1), podairol(1), porol(1), | |
| pshorol(1), qokairolchdy(1), rarolchl(1), rolchedy(1), | |
| rolchey(1), rolkam(1), rolkeedy(1), rolkeey(1), roloty(1), | |
| rolsheedy(1), rolshey(1), rolsy(1), saiirol(1), saroldal(1), | |
| sarols(1), sorol(1), sorols(1), tchdarol(1), torolshsdy(1), | |
| ydairol(1), ykairolky(1), ykolairol(1), yroleeey(1), yroly(1) | |
| rolkeey(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ar(1) | |
| contains: arolkeey(1) | |
| rolsy(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: da(1) | |
| contains: darolsy(1) | |
| roly(3): (word length: 4 / group items: 2) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: or(1), yr(1) | |
| contains: oroly(3), yroly(1) | |
| rom(4): (word length: 3 / group items: 11) | |
| length: min=4, max=9, avg=6.4 | |
| top prefixes: da(2), or(1), ar(1), ch(1), cp(1) | |
| contains: orom(5), darom(3), arom(1), chorom(1), cpharom(1), dairom(1), | |
| folorarom(1), oteorom(1), qoforom(1), sairom(1), tsheoarom(1) | |
| ror(17): (word length: 3 / group items: 43) | |
| length: min=4, max=11, avg=6.7 | |
| top prefixes: ro(5), or(4), ar(3), ch(3), da(3) | |
| contains: aror(6), oror(5), choror(3), daror(3), otairor(3), | |
| qokairor(3), rorol(3), rory(2), toror(2), airorlchy(1), | |
| arorochees(1), arorsheey(1), charor(1), chealror(1), | |
| cpholrory(1), darordaiin(1), darory(1), doror(1), kchoror(1), | |
| larorol(1), loror(1), lror(1), ofaror(1), okorory(1), ooror(1), | |
| oralaror(1), orarorchy(1), orory(1), pchdairor(1), pchoror(1), | |
| poror(1), pororaiin(1), porory(1), qokoror(1), rorain(1), | |
| roral(1), rorcheey(1), sairor(1), sororl(1), sorory(1), taror(1), | |
| tchoarorshy(1), ytorory(1) | |
| rorol(3): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: la(1) | |
| contains: larorol(1) | |
| rory(2): (word length: 4 / group items: 7) | |
| length: min=5, max=9, avg=6.6 | |
| top prefixes: cp(1), da(1), ok(1), or(1), po(1) | |
| contains: cpholrory(1), darory(1), okorory(1), orory(1), porory(1), | |
| sorory(1), ytorory(1) | |
| rshdy(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: op(1) | |
| contains: opdarshdy(1) | |
| rshed(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: rs(1) | |
| contains: rshedy(7) | |
| rsheedy(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: or(1) | |
| contains: orsheedy(1) | |
| rsheol(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: or(1) | |
| contains: orsheoldy(1) | |
| rshey(2): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: ar(1), da(1), yr(1) | |
| contains: arshey(1), darshey(1), yrshey(1) | |
| sai(1): (word length: 3 / group items: 74) | |
| length: min=4, max=15, avg=7.0 | |
| top prefixes: sa(27), ch(5), os(4), ls(3), lo(3) | |
| contains: saiin(144), sain(68), sair(28), osaiin(8), saiir(6), | |
| shosaiin(5), chosaiin(4), ysaiin(4), osain(3), sairy(3), | |
| lsaiin(2), olsaiin(2), qosaiin(2), saim(2), saino(2), sairol(2), | |
| aiisaim(1), chalsain(1), chdaiirsainy(1), cheosaiin(1), | |
| cheteeeosaiin(1), cphesaiin(1), dasaiin(1), dasain(1), | |
| dchsaiin(1), dolsain(1), eeesaiin(1), eosaiin(1), fchosaiin(1), | |
| leeesain(1), lolsaiiin(1), losaiin(1), losair(1), lsair(1), | |
| lsais(1), oeesaiin(1), okeeeosaiin(1), olsain(1), oqoeeosain(1), | |
| osaiiin(1), osaiisal(1), oteosaiin(1), otosaiin(1), otshsaiin(1), | |
| pdsairy(1), polsaisy(1), posairy(1), pysaiinor(1), qosain(1), | |
| qsain(1), saiichor(1), saiidy(1), saiiin(1), saiim(1), | |
| saiinchy(1), saiindy(1), saiino(1), saiiny(1), saiirol(1), | |
| sail(1), saimchy(1), sainn(1), sairal(1), sairaly(1), sairn(1), | |
| sairom(1), sairor(1), sais(1), saithy(1), sheosaiin(1), | |
| sosaiir(1), tesaiin(1), ypchocpheosaiin(1), ysair(1) | |
| saiiin(1): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: lo(1), os(1) | |
| contains: lolsaiiin(1), osaiiin(1) | |
| saiin(144): (word length: 5 / group items: 29) | |
| length: min=6, max=15, avg=8.2 | |
| top prefixes: sa(4), ch(3), ot(3), sh(2), os(1) | |
| contains: osaiin(8), shosaiin(5), chosaiin(4), ysaiin(4), lsaiin(2), | |
| olsaiin(2), qosaiin(2), cheosaiin(1), cheteeeosaiin(1), | |
| cphesaiin(1), dasaiin(1), dchsaiin(1), eeesaiin(1), eosaiin(1), | |
| fchosaiin(1), losaiin(1), oeesaiin(1), okeeeosaiin(1), | |
| oteosaiin(1), otosaiin(1), otshsaiin(1), pysaiinor(1), | |
| saiinchy(1), saiindy(1), saiino(1), saiiny(1), sheosaiin(1), | |
| tesaiin(1), ypchocpheosaiin(1) | |
| saiino(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: py(1) | |
| contains: pysaiinor(1) | |
| saiir(6): (word length: 5 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sa(1), so(1) | |
| contains: saiirol(1), sosaiir(1) | |
| saim(2): (word length: 4 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ai(1), sa(1) | |
| contains: aiisaim(1), saimchy(1) | |
| sain(68): (word length: 4 / group items: 12) | |
| length: min=5, max=12, avg=6.9 | |
| top prefixes: sa(2), ch(2), os(1), da(1), do(1) | |
| contains: osain(3), saino(2), chalsain(1), chdaiirsainy(1), dasain(1), | |
| dolsain(1), leeesain(1), olsain(1), oqoeeosain(1), qosain(1), | |
| qsain(1), sainn(1) | |
| sair(28): (word length: 4 / group items: 12) | |
| length: min=5, max=7, avg=5.9 | |
| top prefixes: sa(7), lo(1), ls(1), pd(1), po(1) | |
| contains: sairy(3), sairol(2), losair(1), lsair(1), pdsairy(1), | |
| posairy(1), sairal(1), sairaly(1), sairn(1), sairom(1), | |
| sairor(1), ysair(1) | |
| sairal(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sa(1) | |
| contains: sairaly(1) | |
| sairy(3): (word length: 5 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: pd(1), po(1) | |
| contains: pdsairy(1), posairy(1) | |
| sais(1): (word length: 4 / group items: 2) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: ls(1), po(1) | |
| contains: lsais(1), polsaisy(1) | |
| sal(55): (word length: 3 / group items: 46) | |
| length: min=4, max=11, avg=6.7 | |
| top prefixes: sa(22), os(3), ch(3), ot(3), ok(2) | |
| contains: saly(5), osal(4), salal(2), salar(2), salchedy(2), saldam(2), | |
| saldy(2), salkeedy(2), salo(2), salol(2), asaly(1), | |
| chorcholsal(1), chosals(1), chsaly(1), doiisaly(1), eeesal(1), | |
| oesal(1), okalsalchey(1), okchesal(1), olsaly(1), oolsal(1), | |
| orasaly(1), osaiisal(1), osalal(1), oteesal(1), oteosal(1), | |
| otesalod(1), poalshsal(1), posalshy(1), psalar(1), salched(1), | |
| salchedal(1), saldaiin(1), saldal(1), salf(1), saloiin(1), | |
| salols(1), sals(1), salshcthdy(1), salsoiin(1), saltar(1), | |
| saltedy(1), salxar(1), seesaly(1), ysaldal(1), ytasal(1) | |
| salal(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: os(1) | |
| contains: osalal(1) | |
| salar(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ps(1) | |
| contains: psalar(1) | |
| salched(1): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: sa(2) | |
| contains: salchedy(2), salchedal(1) | |
| saldal(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ys(1) | |
| contains: ysaldal(1) | |
| salo(2): (word length: 4 / group items: 4) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: sa(3), ot(1) | |
| contains: salol(2), otesalod(1), saloiin(1), salols(1) | |
| salol(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: sa(1) | |
| contains: salols(1) | |
| sals(1): (word length: 4 / group items: 4) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: sa(2), ch(1), po(1) | |
| contains: chosals(1), posalshy(1), salshcthdy(1), salsoiin(1) | |
| saly(5): (word length: 4 / group items: 6) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: as(1), ch(1), do(1), ol(1), or(1) | |
| contains: asaly(1), chsaly(1), doiisaly(1), olsaly(1), orasaly(1), | |
| seesaly(1) | |
| sam(10): (word length: 3 / group items: 14) | |
| length: min=4, max=9, avg=6.9 | |
| top prefixes: da(2), ai(1), al(1), ch(1), ks(1) | |
| contains: aisam(1), aldalosam(1), chsamoky(1), daisam(1), dasam(1), | |
| ksam(1), ockhosam(1), okchosam(1), opchosam(1), otasam(1), | |
| qoteosam(1), samchorly(1), sheosam(1), sosam(1) | |
| san(3): (word length: 3 / group items: 5) | |
| length: min=4, max=7, avg=5.0 | |
| top prefixes: sa(2), ll(1), ls(1), yk(1) | |
| contains: llsan(1), lsan(1), sandy(1), sany(1), ykeesan(1) | |
| sar(84): (word length: 3 / group items: 36) | |
| length: min=4, max=11, avg=6.1 | |
| top prefixes: sa(14), ch(4), os(3), da(2), ot(2) | |
| contains: sary(8), saral(6), saraiin(4), sarar(4), sarol(4), sarain(3), | |
| chosar(2), okeosar(2), olsar(2), osar(2), sosar(2), | |
| chosaroshol(1), chsar(1), chsary(1), dacsary(1), dasar(1), | |
| kaisar(1), kosar(1), lsar(1), oeeesary(1), oinysarx(1), osaro(1), | |
| osary(1), otalsar(1), otolsar(1), palshsar(1), saraiir(1), | |
| saraisl(1), saram(1), sarg(1), saro(1), saroldal(1), sarols(1), | |
| sarydy(1), ychosar(1), ysarasod(1) | |
| saro(1): (word length: 4 / group items: 5) | |
| length: min=5, max=11, avg=7.0 | |
| top prefixes: sa(3), ch(1), os(1) | |
| contains: sarol(4), chosaroshol(1), osaro(1), saroldal(1), sarols(1) | |
| sarol(4): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: sa(2) | |
| contains: saroldal(1), sarols(1) | |
| sary(8): (word length: 4 / group items: 5) | |
| length: min=5, max=8, avg=6.4 | |
| top prefixes: ch(1), da(1), oe(1), os(1), sa(1) | |
| contains: chsary(1), dacsary(1), oeeesary(1), osary(1), sarydy(1) | |
| sas(2): (word length: 3 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ar(1), to(1) | |
| contains: arolsas(1), tolsasy(1) | |
| schaiin(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: os(1) | |
| contains: oschaiin(1) | |
| schar(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sc(1) | |
| contains: scharchy(1) | |
| schdy(3): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: de(1), ks(1) | |
| contains: deeschdy(1), kschdy(1) | |
| schea(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sc(1) | |
| contains: scheaiin(2) | |
| scheey(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ds(1) | |
| contains: dscheey(1) | |
| scheo(2): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=6.7 | |
| top prefixes: sc(4), os(1), qo(1) | |
| contains: scheol(2), scheor(2), oscheor(1), qoscheody(1), scheom(1), | |
| scheos(1) | |
| scheor(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: os(1) | |
| contains: oscheor(1) | |
| sches(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: sc(1) | |
| contains: schesy(1) | |
| schey(5): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: sholschey(1) | |
| scho(1): (word length: 4 / group items: 15) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: sc(12), os(2), qo(1) | |
| contains: schol(5), schor(3), schody(2), oscho(1), oschotshl(1), | |
| qoschodam(1), schoal(1), schocthhy(1), schodain(1), schodar(1), | |
| schodchy(1), schokey(1), schold(1), schos(1), schoshe(1) | |
| schol(5): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: sc(1) | |
| contains: schold(1) | |
| schos(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sc(1) | |
| contains: schoshe(1) | |
| schy(3): (word length: 4 / group items: 3) | |
| length: min=5, max=7, avg=6.3 | |
| top prefixes: ch(1), dc(1), os(1) | |
| contains: choschy(1), dchschy(1), oschy(1) | |
| scth(1): (word length: 4 / group items: 2) | |
| length: min=6, max=10, avg=8.0 | |
| top prefixes: ct(1), sc(1) | |
| contains: cthscthain(1), scthey(1) | |
| sdal(1): (word length: 4 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: oteosdal(1) | |
| seedy(1): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: cs(1), qo(1) | |
| contains: cseedy(1), qocseedy(1) | |
| seeey(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ls(1) | |
| contains: lseeey(1) | |
| seey(1): (word length: 4 / group items: 5) | |
| length: min=5, max=9, avg=6.4 | |
| top prefixes: cs(1), ok(1), ot(1), qo(1), yt(1) | |
| contains: cseey(2), okseey(1), otseey(1), qoseey(1), ytchcseey(1) | |
| seor(2): (word length: 4 / group items: 2) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ot(1), sh(1) | |
| contains: otoeeseor(1), shseor(1) | |
| sha(1): (word length: 3 / group items: 44) | |
| length: min=4, max=13, avg=6.5 | |
| top prefixes: sh(19), ks(3), ls(3), ot(3), ts(3) | |
| contains: shar(34), shaiin(20), shal(15), shain(8), sham(7), shan(5), | |
| kshar(4), shaikhy(2), sharam(2), chtshar(1), dalshal(1), | |
| dshaly(1), kshaiin(1), kshardy(1), lkarshar(1), lshaiir(1), | |
| lshalshy(1), lshar(1), okshal(1), olkeshar(1), olshalsy(1), | |
| oshaiin(1), oteoshaly(1), otshaiin(1), otshal(1), pshar(1), | |
| shaiiin(1), shaikhhy(1), shair(1), shaldy(1), shalkaiin(1), | |
| shalkl(1), shalky(1), shalom(1), shaly(1), shapchedyfeey(1), | |
| sharal(1), toleeshal(1), tshaiin(1), tshaly(1), tshar(1), | |
| ypsharal(1), yshain(1), yshar(1) | |
| shaiin(20): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.2 | |
| top prefixes: ks(1), os(1), ot(1), ts(1) | |
| contains: kshaiin(1), oshaiin(1), otshaiin(1), tshaiin(1) | |
| shain(8): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ys(1) | |
| contains: yshain(1) | |
| shal(15): (word length: 4 / group items: 15) | |
| length: min=5, max=9, avg=6.9 | |
| top prefixes: sh(6), ot(2), da(1), ds(1), ls(1) | |
| contains: dalshal(1), dshaly(1), lshalshy(1), okshal(1), olshalsy(1), | |
| oteoshaly(1), otshal(1), shaldy(1), shalkaiin(1), shalkl(1), | |
| shalky(1), shalom(1), shaly(1), toleeshal(1), tshaly(1) | |
| shaly(1): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: ds(1), ot(1), ts(1) | |
| contains: dshaly(1), oteoshaly(1), tshaly(1) | |
| shar(34): (word length: 4 / group items: 12) | |
| length: min=5, max=8, avg=6.2 | |
| top prefixes: ks(2), sh(2), ch(1), lk(1), ls(1) | |
| contains: kshar(4), sharam(2), chtshar(1), kshardy(1), lkarshar(1), | |
| lshar(1), olkeshar(1), pshar(1), sharal(1), tshar(1), | |
| ypsharal(1), yshar(1) | |
| sharal(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yp(1) | |
| contains: ypsharal(1) | |
| shchey(2): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: os(1), ys(1) | |
| contains: oshchey(1), yshchey(1) | |
| shchy(5): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chokshchy(1) | |
| shckhh(1): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(2) | |
| contains: shckhhy(2), shckhhd(1) | |
| shckhy(60): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ls(1), so(1) | |
| contains: lshckhy(1), soshckhy(1) | |
| shcthdy(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: sa(1) | |
| contains: salshcthdy(1) | |
| shcthy(31): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ls(1) | |
| contains: lshcthy(1) | |
| shd(7): (word length: 3 / group items: 88) | |
| length: min=4, max=10, avg=6.5 | |
| top prefixes: sh(27), qo(8), ls(5), ks(4), ts(4) | |
| contains: shdy(46), shdar(9), kshdy(5), olshdy(4), qokshdy(4), shdal(4), | |
| tshdy(4), dalshdy(3), otshdy(3), qokshd(3), qotshdy(3), | |
| shdaiin(3), dshdy(2), kshd(2), lshdy(2), okshd(2), pshdar(2), | |
| shdair(2), tshdol(2), alshdr(1), alshdy(1), chdyshdy(1), | |
| chpchshdy(1), chshd(1), dalkshdy(1), doltshdy(1), fcheshd(1), | |
| fshdar(1), kaiishdy(1), kaishd(1), keshdy(1), kolshd(1), | |
| kshdain(1), kshdor(1), lkeeshdy(1), lkeshdy(1), lshd(1), | |
| lshdaiin(1), lshdar(1), lshdyqo(1), ofshdy(1), okalshdy(1), | |
| okshdy(1), olkshdy(1), opdarshdy(1), opshdy(1), oshdy(1), | |
| otalshdy(1), otshshdy(1), polshdal(1), polshdy(1), pshdaiin(1), | |
| pshdal(1), pshdy(1), qofshdy(1), qokeeashdy(1), qokeshdy(1), | |
| qolkeshdy(1), qolshdy(1), rshdy(1), shda(1), shdaldy(1), | |
| shdalky(1), shdalo(1), shdaly(1), shdam(1), shdary(1), | |
| shdchdy(1), shdchy(1), shddy(1), shdo(1), shdol(1), shdor(1), | |
| shdpchy(1), shdydy(1), shdykairy(1), shdytody(1), sheshdy(1), | |
| shetshdy(1), shokshdy(1), sholshdy(1), shshdar(1), talshdy(1), | |
| tshdar(1), tshdcsey(1), ykcheshd(1), yshdain(1), yshdal(1) | |
| shda(1): (word length: 4 / group items: 22) | |
| length: min=5, max=8, avg=6.4 | |
| top prefixes: sh(11), ps(3), ls(2), ys(2), fs(1) | |
| contains: shdar(9), shdal(4), shdaiin(3), pshdar(2), shdair(2), | |
| fshdar(1), kshdain(1), lshdaiin(1), lshdar(1), polshdal(1), | |
| pshdaiin(1), pshdal(1), shdaldy(1), shdalky(1), shdalo(1), | |
| shdaly(1), shdam(1), shdary(1), shshdar(1), tshdar(1), | |
| yshdain(1), yshdal(1) | |
| shdaiin(3): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ls(1), ps(1) | |
| contains: lshdaiin(1), pshdaiin(1) | |
| shdal(4): (word length: 5 / group items: 7) | |
| length: min=6, max=8, avg=6.6 | |
| top prefixes: sh(4), po(1), ps(1), ys(1) | |
| contains: polshdal(1), pshdal(1), shdaldy(1), shdalky(1), shdalo(1), | |
| shdaly(1), yshdal(1) | |
| shdar(9): (word length: 5 / group items: 6) | |
| length: min=6, max=7, avg=6.2 | |
| top prefixes: sh(2), ps(1), fs(1), ls(1), ts(1) | |
| contains: pshdar(2), fshdar(1), lshdar(1), shdary(1), shshdar(1), | |
| tshdar(1) | |
| shdo(1): (word length: 4 / group items: 4) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: sh(2), ts(1), ks(1) | |
| contains: tshdol(2), kshdor(1), shdol(1), shdor(1) | |
| shdol(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ts(1) | |
| contains: tshdol(2) | |
| shdor(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ks(1) | |
| contains: kshdor(1) | |
| shdy(46): (word length: 4 / group items: 44) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: qo(7), sh(7), ot(3), ol(2), da(2) | |
| contains: kshdy(5), olshdy(4), qokshdy(4), tshdy(4), dalshdy(3), | |
| otshdy(3), qotshdy(3), dshdy(2), lshdy(2), alshdy(1), | |
| chdyshdy(1), chpchshdy(1), dalkshdy(1), doltshdy(1), kaiishdy(1), | |
| keshdy(1), lkeeshdy(1), lkeshdy(1), lshdyqo(1), ofshdy(1), | |
| okalshdy(1), okshdy(1), olkshdy(1), opdarshdy(1), opshdy(1), | |
| oshdy(1), otalshdy(1), otshshdy(1), polshdy(1), pshdy(1), | |
| qofshdy(1), qokeeashdy(1), qokeshdy(1), qolkeshdy(1), qolshdy(1), | |
| rshdy(1), shdydy(1), shdykairy(1), shdytody(1), sheshdy(1), | |
| shetshdy(1), shokshdy(1), sholshdy(1), talshdy(1) | |
| she(25): (word length: 3 / group items: 568) | |
| length: min=4, max=12, avg=7.1 | |
| top prefixes: sh(246), ys(29), qo(26), ls(22), ds(21) | |
| contains: shedy(427), shey(283), sheey(144), sheol(114), sheedy(84), | |
| sheor(51), sheody(50), sheo(47), lshedy(42), dshedy(36), | |
| sheky(36), sheckhy(35), olshedy(23), shear(21), shecthy(20), | |
| sheal(19), lshey(18), shed(18), sheos(17), shedaiin(15), | |
| dshey(14), sheeky(14), sheeol(14), otshedy(13), shee(13), | |
| shes(13), yshey(12), olshey(11), qokshedy(11), shedain(11), | |
| shedal(11), shek(11), sheod(11), yshedy(10), ysheey(10), | |
| dsheol(9), okshey(9), sheaiin(9), sheeor(9), shees(9), shety(9), | |
| tshey(9), dsheey(8), lsheey(8), qokshey(8), sheeo(8), sheety(8), | |
| tshedy(8), olsheey(7), oshey(7), otshey(7), rshedy(7), shedar(7), | |
| kshedy(6), kshey(6), lsheedy(6), sheed(6), sheeey(6), shekeey(6), | |
| sheoky(6), sshey(6), ysheedy(6), ksheody(5), psheody(5), | |
| shekain(5), shekchy(5), shekey(5), sheodaiin(5), sshedy(5), | |
| alshey(4), dsheedy(4), ksheo(4), lkshedy(4), olsheol(4), | |
| qopshedy(4), sheckhedy(4), sheckhey(4), shekal(4), sheodal(4), | |
| sheokey(4), sheom(4), sheoy(4), shetey(4), ysheor(4), dsheor(3), | |
| lshed(3), lsheody(3), okshedy(3), oshedy(3), otalshedy(3), | |
| pshedy(3), qotshedy(3), qotshey(3), rsheedy(3), shecphy(3), | |
| sheek(3), sheekchy(3), sheeody(3), sheet(3), sheols(3), | |
| shepchy(3), sher(3), solshedy(3), dkshey(2), dolshedy(2), | |
| dshe(2), dshees(2), dsheo(2), dsheody(2), fshedy(2), koshey(2), | |
| kshed(2), ksheeol(2), ksheey(2), ksheol(2), lkshey(2), | |
| lsheckhy(2), lsheol(2), lshety(2), olshed(2), olsheor(2), | |
| oltshey(2), opshedy(2), osheey(2), psheoldy(2), qolshedy(2), | |
| qolsheedy(2), qolshey(2), qotsheod(2), qotyshey(2), rshey(2), | |
| sheain(2), sheam(2), shechy(2), sheckhal(2), shedam(2), | |
| sheear(2), sheeckhy(2), sheedo(2), sheeeky(2), sheees(2), | |
| sheekar(2), sheekeey(2), sheeodar(2), sheetey(2), shefchdy(2), | |
| shekaiin(2), shekam(2), shekar(2), shekedy(2), shekshey(2), | |
| sheockhey(2), sheockhy(2), sheocphy(2), sheocthy(2), sheodaly(2), | |
| sheoeky(2), sheokaiin(2), sheokeey(2), sheoldy(2), sheolol(2), | |
| sheoltey(2), sheot(2), shese(2), shetchy(2), sheyr(2), ssheey(2), | |
| ssheo(2), tosheo(2), tshed(2), tshedar(2), tsheeor(2), | |
| tsheody(2), yksheol(2), ysheeo(2), ysheeody(2), ysheo(2), | |
| ysheod(2), ytshedy(2), alfshed(1), alolshedy(1), alosheey(1), | |
| alshedy(1), alshees(1), arorsheey(1), arsheg(1), arshey(1), | |
| chetshedy(1), chlchpsheey(1), chokoishe(1), cholkshedy(1), | |
| chotshe(1), choypshedy(1), chpsheedy(1), chshek(1), cshe(1), | |
| dalshedo(1), dalshedy(1), dalshey(1), darshey(1), deshedy(1), | |
| dksheey(1), dlshedy(1), doefshey(1), dolshed(1), dorshefy(1), | |
| dorsheoy(1), dsheckhy(1), dshedal(1), dsheedal(1), dsheeo(1), | |
| dsheeor(1), dsheeoteey(1), dsheodar(1), dsheog(1), dsheos(1), | |
| dsheoy(1), dshes(1), dytshedy(1), farsheey(1), fsheda(1), | |
| fyshey(1), kalshey(1), kechodshey(1), keeolshey(1), keshed(1), | |
| keshey(1), kodshey(1), kolshes(1), koshet(1), ksheoary(1), | |
| ksheodal(1), ksheodl(1), kshes(1), lcheolshedy(1), lkedshedy(1), | |
| lkeeshedy(1), lksheey(1), lshechy(1), lsheckhedy(1), lshedary(1), | |
| lshee(1), lsheedain(1), lshees(1), lsheetal(1), lsheg(1), | |
| lshekain(1), lsheo(1), lsheok(1), lsheotey(1), lshes(1), | |
| odshe(1), odsheo(1), oepchksheey(1), okalshey(1), okeolshey(1), | |
| okeshedy(1), okeshey(1), okoksheo(1), okshed(1), oksheeoda(1), | |
| oksheey(1), oksheo(1), okshes(1), olfsheoral(1), olkeshey(1), | |
| olkshed(1), olkshedy(1), olkshey(1), olpshedy(1), olsheed(1), | |
| olsheedy(1), olsheeosol(1), olshees(1), olsheod(1), olsheody(1), | |
| oltshedy(1), opalshedy(1), opshed(1), opshedal(1), | |
| opsheolaiin(1), opshes(1), opshey(1), opsheytey(1), orsheckhy(1), | |
| orsheedy(1), orsheeen(1), orsheoldy(1), osheedy(1), osheeky(1), | |
| osheeo(1), osheo(1), osheokaiin(1), osheol(1), oshepols(1), | |
| oshesy(1), oteodshey(1), oteoshey(1), otolosheey(1), | |
| otolsheeos(1), otorsheey(1), otorsheod(1), otshealkar(1), | |
| otsheey(1), otsheo(1), otsheody(1), otshes(1), oyshey(1), | |
| pdsheody(1), podshedy(1), poldshedy(1), posheor(1), posheos(1), | |
| possheody(1), pshedaiin(1), pshedar(1), psheedy(1), psheey(1), | |
| psheoas(1), psheodalo(1), psheodar(1), psheodshy(1), | |
| psheoepoain(1), psheoky(1), psheor(1), psheot(1), pshesy(1), | |
| qoepsheody(1), qofsheeey(1), qofshey(1), qokalshedy(1), | |
| qokeshe(1), qokeshedy(1), qokeshey(1), qokshe(1), qoksheo(1), | |
| qoksheoy(1), qolkshey(1), qolsheey(1), qosheckhhy(1), qoshedy(1), | |
| qosheo(1), qotedshedy(1), rolsheedy(1), rolshey(1), rsheal(1), | |
| rshed(1), rsheedar(1), rsheodor(1), rsheol(1), schoshe(1), | |
| shea(1), sheainy(1), shealy(1), sheas(1), shechol(1), | |
| sheckeey(1), sheckh(1), sheckhdy(1), shecphhdy(1), | |
| shecthedchy(1), shecthedy(1), shecthey(1), shectyhy(1), | |
| shedaiiin(1), shedair(1), shedaitain(1), shedaldy(1), shedas(1), | |
| shedchy(1), shedeeey(1), shedefam(1), shedey(1), shedkedy(1), | |
| shedol(1), shedor(1), sheds(1), shedshey(1), shedykain(1), | |
| shedykeyl(1), sheeain(1), sheeal(1), sheeay(1), sheeckhey(1), | |
| sheecthey(1), sheedain(1), sheedal(1), sheedar(1), sheedom(1), | |
| sheeen(1), sheeerl(1), sheeetchy(1), sheefy(1), sheekain(1), | |
| sheekal(1), sheekas(1), sheekey(1), sheekly(1), sheekol(1), | |
| sheekshy(1), sheely(1), sheeod(1), sheeodaiin(1), sheeodain(1), | |
| sheeodees(1), sheeoeky(1), sheeoldy(1), sheeolody(1), sheeoly(1), | |
| sheeos(1), sheeoy(1), sheep(1), sheepshey(1), sheetchy(1), | |
| sheeteey(1), sheeyl(1), shefeeedy(1), shefhedy(1), shefshoro(1), | |
| shekaiiin(1), shekair(1), shekalchdy(1), shekaly(1), | |
| shekcheor(1), shekchey(1), shekealy(1), shekeefy(1), | |
| shekeeody(1), shekeod(1), shekody(1), shekol(1), shekor(1), | |
| sheksheet(1), shekshol(1), shekydy(1), shelain(1), sheoal(1), | |
| sheockhedy(1), sheoctham(1), sheocty(1), sheodar(1), sheodol(1), | |
| sheoe(1), sheoeed(1), sheoees(1), sheoikhy(1), sheokain(1), | |
| sheokar(1), sheokay(1), sheoked(1), sheokeedy(1), sheokeol(1), | |
| sheokeor(1), sheoldam(1), sheolkain(1), sheolkchy(1), | |
| sheolkeal(1), sheolkedy(1), sheolkeedy(1), sheolkeey(1), | |
| sheolo(1), sheolor(1), sheolshody(1), sheoly(1), sheoody(1), | |
| sheoor(1), sheopchy(1), sheosaiin(1), sheosam(1), sheotain(1), | |
| sheotal(1), sheotam(1), sheotchedy(1), sheoteoly(1), sheoty(1), | |
| shep(1), shepchdy(1), shepchedy(1), shepchol(1), shepdaiin(1), | |
| shepy(1), sheqokam(1), shesed(1), shesee(1), sheseky(1), | |
| sheshdy(1), sheshy(1), shet(1), shetam(1), shetar(1), shetch(1), | |
| shetcheodchs(1), sheteal(1), shets(1), shetshdy(1), shetsho(1), | |
| sheycthy(1), sheyk(1), sheykaiiin(1), sheykal(1), sheyky(1), | |
| sheysy(1), sheytchdy(1), shodshey(1), shodypshey(1), | |
| shofshedy(1), shshes(1), solshed(1), solshey(1), soshe(1), | |
| ssheckhy(1), ssheedal(1), ssheodain(1), ssheol(1), stsheol(1), | |
| syshees(1), sysheos(1), tchotshey(1), tolkshey(1), tolsheo(1), | |
| tolsheol(1), tolshey(1), toshey(1), tshedain(1), tshedal(1), | |
| tshedky(1), tshedor(1), tsheed(1), tsheey(1), tsheoarom(1), | |
| tsheodal(1), tsheodar(1), tsheodl(1), tsheokeedy(1), tsheos(1), | |
| tshes(1), ykeeshedy(1), ykeoshe(1), ykesheo(1), ykshedy(1), | |
| yksheey(1), ylshey(1), yolsheey(1), ypshedy(1), ypsheor(1), | |
| yrshey(1), yshe(1), ysheal(1), yshealdy(1), yshealkair(1), | |
| yshear(1), yshedaiin(1), yshedair(1), ysheed(1), ysheedal(1), | |
| ysheees(1), ysheeoaiin(1), ysheeod(1), yshees(1), ysheoar(1), | |
| ysheockhy(1), ysheody(1), ysheol(1), ysheos(1), yshesos(1), | |
| yshesy(1), ytedshedy(1), ytsheod(1) | |
| shea(1): (word length: 4 / group items: 14) | |
| length: min=5, max=10, avg=6.6 | |
| top prefixes: sh(8), ys(4), ot(1), rs(1) | |
| contains: shear(21), sheal(19), sheaiin(9), sheain(2), sheam(2), | |
| otshealkar(1), rsheal(1), sheainy(1), shealy(1), sheas(1), | |
| ysheal(1), yshealdy(1), yshealkair(1), yshear(1) | |
| sheain(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(1) | |
| contains: sheainy(1) | |
| sheal(19): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: ys(3), ot(1), rs(1), sh(1) | |
| contains: otshealkar(1), rsheal(1), shealy(1), ysheal(1), yshealdy(1), | |
| yshealkair(1) | |
| shear(21): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ys(1) | |
| contains: yshear(1) | |
| shechy(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ls(1) | |
| contains: lshechy(1) | |
| sheckh(1): (word length: 6 / group items: 11) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: sh(5), ls(2), ds(1), or(1), qo(1) | |
| contains: sheckhy(35), sheckhedy(4), sheckhey(4), lsheckhy(2), | |
| sheckhal(2), dsheckhy(1), lsheckhedy(1), orsheckhy(1), | |
| qosheckhhy(1), sheckhdy(1), ssheckhy(1) | |
| sheckhedy(4): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ls(1) | |
| contains: lsheckhedy(1) | |
| sheckhy(35): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.2 | |
| top prefixes: ls(1), ds(1), or(1), ss(1) | |
| contains: lsheckhy(2), dsheckhy(1), orsheckhy(1), ssheckhy(1) | |
| shed(18): (word length: 4 / group items: 99) | |
| length: min=5, max=11, avg=7.4 | |
| top prefixes: sh(23), qo(8), ts(7), ol(6), op(4) | |
| contains: shedy(427), lshedy(42), dshedy(36), olshedy(23), shedaiin(15), | |
| otshedy(13), qokshedy(11), shedain(11), shedal(11), yshedy(10), | |
| tshedy(8), rshedy(7), shedar(7), kshedy(6), sshedy(5), | |
| lkshedy(4), qopshedy(4), lshed(3), okshedy(3), oshedy(3), | |
| otalshedy(3), pshedy(3), qotshedy(3), solshedy(3), dolshedy(2), | |
| fshedy(2), kshed(2), olshed(2), opshedy(2), qolshedy(2), | |
| shedam(2), tshed(2), tshedar(2), ytshedy(2), alfshed(1), | |
| alolshedy(1), alshedy(1), chetshedy(1), cholkshedy(1), | |
| choypshedy(1), dalshedo(1), dalshedy(1), deshedy(1), dlshedy(1), | |
| dolshed(1), dshedal(1), dytshedy(1), fsheda(1), keshed(1), | |
| lcheolshedy(1), lkedshedy(1), lkeeshedy(1), lshedary(1), | |
| okeshedy(1), okshed(1), olkshed(1), olkshedy(1), olpshedy(1), | |
| oltshedy(1), opalshedy(1), opshed(1), opshedal(1), podshedy(1), | |
| poldshedy(1), pshedaiin(1), pshedar(1), qokalshedy(1), | |
| qokeshedy(1), qoshedy(1), qotedshedy(1), rshed(1), shedaiiin(1), | |
| shedair(1), shedaitain(1), shedaldy(1), shedas(1), shedchy(1), | |
| shedeeey(1), shedefam(1), shedey(1), shedkedy(1), shedol(1), | |
| shedor(1), sheds(1), shedshey(1), shedykain(1), shedykeyl(1), | |
| shofshedy(1), solshed(1), tshedain(1), tshedal(1), tshedky(1), | |
| tshedor(1), ykeeshedy(1), ykshedy(1), ypshedy(1), yshedaiin(1), | |
| yshedair(1), ytedshedy(1) | |
| shedaiin(15): (word length: 8 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ps(1), ys(1) | |
| contains: pshedaiin(1), yshedaiin(1) | |
| shedain(11): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ts(1) | |
| contains: tshedain(1) | |
| shedair(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ys(1) | |
| contains: yshedair(1) | |
| shedal(11): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ds(1), op(1), sh(1), ts(1) | |
| contains: dshedal(1), opshedal(1), shedaldy(1), tshedal(1) | |
| shedar(7): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ts(1), ls(1), ps(1) | |
| contains: tshedar(2), lshedary(1), pshedar(1) | |
| shedor(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ts(1) | |
| contains: tshedor(1) | |
| sheds(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sh(1) | |
| contains: shedshey(1) | |
| shedy(427): (word length: 5 / group items: 53) | |
| length: min=6, max=11, avg=7.8 | |
| top prefixes: qo(8), ol(4), lk(3), ch(3), sh(3) | |
| contains: lshedy(42), dshedy(36), olshedy(23), otshedy(13), | |
| qokshedy(11), yshedy(10), tshedy(8), rshedy(7), kshedy(6), | |
| sshedy(5), lkshedy(4), qopshedy(4), okshedy(3), oshedy(3), | |
| otalshedy(3), pshedy(3), qotshedy(3), solshedy(3), dolshedy(2), | |
| fshedy(2), opshedy(2), qolshedy(2), ytshedy(2), alolshedy(1), | |
| alshedy(1), chetshedy(1), cholkshedy(1), choypshedy(1), | |
| dalshedy(1), deshedy(1), dlshedy(1), dytshedy(1), lcheolshedy(1), | |
| lkedshedy(1), lkeeshedy(1), okeshedy(1), olkshedy(1), | |
| olpshedy(1), oltshedy(1), opalshedy(1), podshedy(1), | |
| poldshedy(1), qokalshedy(1), qokeshedy(1), qoshedy(1), | |
| qotedshedy(1), shedykain(1), shedykeyl(1), shofshedy(1), | |
| ykeeshedy(1), ykshedy(1), ypshedy(1), ytedshedy(1) | |
| shee(13): (word length: 4 / group items: 127) | |
| length: min=5, max=11, avg=7.3 | |
| top prefixes: sh(60), ys(10), ds(7), ls(6), ol(5) | |
| contains: sheey(144), sheedy(84), sheeky(14), sheeol(14), ysheey(10), | |
| sheeor(9), shees(9), dsheey(8), lsheey(8), sheeo(8), sheety(8), | |
| olsheey(7), lsheedy(6), sheed(6), sheeey(6), ysheedy(6), | |
| dsheedy(4), rsheedy(3), sheek(3), sheekchy(3), sheeody(3), | |
| sheet(3), dshees(2), ksheeol(2), ksheey(2), osheey(2), | |
| qolsheedy(2), sheear(2), sheeckhy(2), sheedo(2), sheeeky(2), | |
| sheees(2), sheekar(2), sheekeey(2), sheeodar(2), sheetey(2), | |
| ssheey(2), tsheeor(2), ysheeo(2), ysheeody(2), alosheey(1), | |
| alshees(1), arorsheey(1), chlchpsheey(1), chpsheedy(1), | |
| dksheey(1), dsheedal(1), dsheeo(1), dsheeor(1), dsheeoteey(1), | |
| farsheey(1), lksheey(1), lshee(1), lsheedain(1), lshees(1), | |
| lsheetal(1), oepchksheey(1), oksheeoda(1), oksheey(1), | |
| olsheed(1), olsheedy(1), olsheeosol(1), olshees(1), orsheedy(1), | |
| orsheeen(1), osheedy(1), osheeky(1), osheeo(1), otolosheey(1), | |
| otolsheeos(1), otorsheey(1), otsheey(1), psheedy(1), psheey(1), | |
| qofsheeey(1), qolsheey(1), rolsheedy(1), rsheedar(1), sheeain(1), | |
| sheeal(1), sheeay(1), sheeckhey(1), sheecthey(1), sheedain(1), | |
| sheedal(1), sheedar(1), sheedom(1), sheeen(1), sheeerl(1), | |
| sheeetchy(1), sheefy(1), sheekain(1), sheekal(1), sheekas(1), | |
| sheekey(1), sheekly(1), sheekol(1), sheekshy(1), sheely(1), | |
| sheeod(1), sheeodaiin(1), sheeodain(1), sheeodees(1), | |
| sheeoeky(1), sheeoldy(1), sheeolody(1), sheeoly(1), sheeos(1), | |
| sheeoy(1), sheep(1), sheepshey(1), sheetchy(1), sheeteey(1), | |
| sheeyl(1), sheksheet(1), ssheedal(1), syshees(1), tsheed(1), | |
| tsheey(1), yksheey(1), yolsheey(1), ysheed(1), ysheedal(1), | |
| ysheees(1), ysheeoaiin(1), ysheeod(1), yshees(1) | |
| sheed(6): (word length: 5 / group items: 25) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: sh(6), ys(3), ls(2), ds(2), rs(2) | |
| contains: sheedy(84), lsheedy(6), ysheedy(6), dsheedy(4), rsheedy(3), | |
| qolsheedy(2), sheedo(2), chpsheedy(1), dsheedal(1), lsheedain(1), | |
| olsheed(1), olsheedy(1), orsheedy(1), osheedy(1), psheedy(1), | |
| rolsheedy(1), rsheedar(1), sheedain(1), sheedal(1), sheedar(1), | |
| sheedom(1), ssheedal(1), tsheed(1), ysheed(1), ysheedal(1) | |
| sheedain(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ls(1) | |
| contains: lsheedain(1) | |
| sheedal(1): (word length: 7 / group items: 3) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ds(1), ss(1), ys(1) | |
| contains: dsheedal(1), ssheedal(1), ysheedal(1) | |
| sheedar(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: rs(1) | |
| contains: rsheedar(1) | |
| sheedo(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(1) | |
| contains: sheedom(1) | |
| sheedy(84): (word length: 6 / group items: 11) | |
| length: min=7, max=9, avg=7.7 | |
| top prefixes: ls(1), ys(1), ds(1), rs(1), qo(1) | |
| contains: lsheedy(6), ysheedy(6), dsheedy(4), rsheedy(3), qolsheedy(2), | |
| chpsheedy(1), olsheedy(1), orsheedy(1), osheedy(1), psheedy(1), | |
| rolsheedy(1) | |
| sheeen(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: or(1) | |
| contains: orsheeen(1) | |
| sheees(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ys(1) | |
| contains: ysheees(1) | |
| sheeey(6): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qofsheeey(1) | |
| sheek(3): (word length: 5 / group items: 12) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: sh(11), os(1) | |
| contains: sheeky(14), sheekchy(3), sheekar(2), sheekeey(2), osheeky(1), | |
| sheekain(1), sheekal(1), sheekas(1), sheekey(1), sheekly(1), | |
| sheekol(1), sheekshy(1) | |
| sheeky(14): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: os(1) | |
| contains: osheeky(1) | |
| sheeo(8): (word length: 5 / group items: 27) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: sh(14), ys(4), ds(3), ks(1), ts(1) | |
| contains: sheeol(14), sheeor(9), sheeody(3), ksheeol(2), sheeodar(2), | |
| tsheeor(2), ysheeo(2), ysheeody(2), dsheeo(1), dsheeor(1), | |
| dsheeoteey(1), oksheeoda(1), olsheeosol(1), osheeo(1), | |
| otolsheeos(1), sheeod(1), sheeodaiin(1), sheeodain(1), | |
| sheeodees(1), sheeoeky(1), sheeoldy(1), sheeolody(1), sheeoly(1), | |
| sheeos(1), sheeoy(1), ysheeoaiin(1), ysheeod(1) | |
| sheeod(1): (word length: 6 / group items: 8) | |
| length: min=7, max=10, avg=8.4 | |
| top prefixes: sh(5), ys(2), ok(1) | |
| contains: sheeody(3), sheeodar(2), ysheeody(2), oksheeoda(1), | |
| sheeodaiin(1), sheeodain(1), sheeodees(1), ysheeod(1) | |
| sheeody(3): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ys(1) | |
| contains: ysheeody(2) | |
| sheeol(14): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: sh(3), ks(1) | |
| contains: ksheeol(2), sheeoldy(1), sheeolody(1), sheeoly(1) | |
| sheeor(9): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ts(1), ds(1) | |
| contains: tsheeor(2), dsheeor(1) | |
| sheeos(1): (word length: 6 / group items: 2) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ol(1), ot(1) | |
| contains: olsheeosol(1), otolsheeos(1) | |
| sheep(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: sheepshey(1) | |
| shees(9): (word length: 5 / group items: 6) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ds(1), al(1), ls(1), ol(1), sy(1) | |
| contains: dshees(2), alshees(1), lshees(1), olshees(1), syshees(1), | |
| yshees(1) | |
| sheet(3): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.7 | |
| top prefixes: sh(5), ls(1) | |
| contains: sheety(8), sheetey(2), lsheetal(1), sheetchy(1), sheeteey(1), | |
| sheksheet(1) | |
| sheey(144): (word length: 5 / group items: 24) | |
| length: min=6, max=11, avg=7.4 | |
| top prefixes: ot(3), ys(1), ds(1), ls(1), ol(1) | |
| contains: ysheey(10), dsheey(8), lsheey(8), olsheey(7), ksheey(2), | |
| osheey(2), ssheey(2), alosheey(1), arorsheey(1), chlchpsheey(1), | |
| dksheey(1), farsheey(1), lksheey(1), oepchksheey(1), oksheey(1), | |
| otolosheey(1), otorsheey(1), otsheey(1), psheey(1), qolsheey(1), | |
| sheeyl(1), tsheey(1), yksheey(1), yolsheey(1) | |
| shek(11): (word length: 4 / group items: 29) | |
| length: min=5, max=10, avg=7.3 | |
| top prefixes: sh(27), ch(1), ls(1) | |
| contains: sheky(36), shekeey(6), shekain(5), shekchy(5), shekey(5), | |
| shekal(4), shekaiin(2), shekam(2), shekar(2), shekedy(2), | |
| shekshey(2), chshek(1), lshekain(1), shekaiiin(1), shekair(1), | |
| shekalchdy(1), shekaly(1), shekcheor(1), shekchey(1), | |
| shekealy(1), shekeefy(1), shekeeody(1), shekeod(1), shekody(1), | |
| shekol(1), shekor(1), sheksheet(1), shekshol(1), shekydy(1) | |
| shekain(5): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ls(1) | |
| contains: lshekain(1) | |
| shekal(4): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: sh(2) | |
| contains: shekalchdy(1), shekaly(1) | |
| sheky(36): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(1) | |
| contains: shekydy(1) | |
| sheo(47): (word length: 4 / group items: 147) | |
| length: min=5, max=11, avg=7.3 | |
| top prefixes: sh(63), ps(10), ds(8), ys(8), ts(7) | |
| contains: sheol(114), sheor(51), sheody(50), sheos(17), sheod(11), | |
| dsheol(9), sheoky(6), ksheody(5), psheody(5), sheodaiin(5), | |
| ksheo(4), olsheol(4), sheodal(4), sheokey(4), sheom(4), sheoy(4), | |
| ysheor(4), dsheor(3), lsheody(3), sheols(3), dsheo(2), | |
| dsheody(2), ksheol(2), lsheol(2), olsheor(2), psheoldy(2), | |
| qotsheod(2), sheockhey(2), sheockhy(2), sheocphy(2), sheocthy(2), | |
| sheodaly(2), sheoeky(2), sheokaiin(2), sheokeey(2), sheoldy(2), | |
| sheolol(2), sheoltey(2), sheot(2), ssheo(2), tosheo(2), | |
| tsheody(2), yksheol(2), ysheo(2), ysheod(2), dorsheoy(1), | |
| dsheodar(1), dsheog(1), dsheos(1), dsheoy(1), ksheoary(1), | |
| ksheodal(1), ksheodl(1), lsheo(1), lsheok(1), lsheotey(1), | |
| odsheo(1), okoksheo(1), oksheo(1), olfsheoral(1), olsheod(1), | |
| olsheody(1), opsheolaiin(1), orsheoldy(1), osheo(1), | |
| osheokaiin(1), osheol(1), otorsheod(1), otsheo(1), otsheody(1), | |
| pdsheody(1), posheor(1), posheos(1), possheody(1), psheoas(1), | |
| psheodalo(1), psheodar(1), psheodshy(1), psheoepoain(1), | |
| psheoky(1), psheor(1), psheot(1), qoepsheody(1), qoksheo(1), | |
| qoksheoy(1), qosheo(1), rsheodor(1), rsheol(1), sheoal(1), | |
| sheockhedy(1), sheoctham(1), sheocty(1), sheodar(1), sheodol(1), | |
| sheoe(1), sheoeed(1), sheoees(1), sheoikhy(1), sheokain(1), | |
| sheokar(1), sheokay(1), sheoked(1), sheokeedy(1), sheokeol(1), | |
| sheokeor(1), sheoldam(1), sheolkain(1), sheolkchy(1), | |
| sheolkeal(1), sheolkedy(1), sheolkeedy(1), sheolkeey(1), | |
| sheolo(1), sheolor(1), sheolshody(1), sheoly(1), sheoody(1), | |
| sheoor(1), sheopchy(1), sheosaiin(1), sheosam(1), sheotain(1), | |
| sheotal(1), sheotam(1), sheotchedy(1), sheoteoly(1), sheoty(1), | |
| ssheodain(1), ssheol(1), stsheol(1), sysheos(1), tolsheo(1), | |
| tolsheol(1), tsheoarom(1), tsheodal(1), tsheodar(1), tsheodl(1), | |
| tsheokeedy(1), tsheos(1), ykesheo(1), ypsheor(1), ysheoar(1), | |
| ysheockhy(1), ysheody(1), ysheol(1), ysheos(1), ytsheod(1) | |
| sheockhy(2): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ys(1) | |
| contains: ysheockhy(1) | |
| sheod(11): (word length: 5 / group items: 33) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: sh(6), ps(4), ts(4), ks(3), ds(2) | |
| contains: sheody(50), ksheody(5), psheody(5), sheodaiin(5), sheodal(4), | |
| lsheody(3), dsheody(2), qotsheod(2), sheodaly(2), tsheody(2), | |
| ysheod(2), dsheodar(1), ksheodal(1), ksheodl(1), olsheod(1), | |
| olsheody(1), otorsheod(1), otsheody(1), pdsheody(1), | |
| possheody(1), psheodalo(1), psheodar(1), psheodshy(1), | |
| qoepsheody(1), rsheodor(1), sheodar(1), sheodol(1), ssheodain(1), | |
| tsheodal(1), tsheodar(1), tsheodl(1), ysheody(1), ytsheod(1) | |
| sheodal(4): (word length: 7 / group items: 4) | |
| length: min=8, max=9, avg=8.2 | |
| top prefixes: sh(1), ks(1), ps(1), ts(1) | |
| contains: sheodaly(2), ksheodal(1), psheodalo(1), tsheodal(1) | |
| sheodar(1): (word length: 7 / group items: 3) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ds(1), ps(1), ts(1) | |
| contains: dsheodar(1), psheodar(1), tsheodar(1) | |
| sheody(50): (word length: 6 / group items: 11) | |
| length: min=7, max=10, avg=7.7 | |
| top prefixes: ks(1), ps(1), ls(1), ds(1), ts(1) | |
| contains: ksheody(5), psheody(5), lsheody(3), dsheody(2), tsheody(2), | |
| olsheody(1), otsheody(1), pdsheody(1), possheody(1), | |
| qoepsheody(1), ysheody(1) | |
| sheoe(1): (word length: 5 / group items: 4) | |
| length: min=7, max=11, avg=8.0 | |
| top prefixes: sh(3), ps(1) | |
| contains: sheoeky(2), psheoepoain(1), sheoeed(1), sheoees(1) | |
| sheokaiin(2): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: os(1) | |
| contains: osheokaiin(1) | |
| sheokeedy(1): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ts(1) | |
| contains: tsheokeedy(1) | |
| sheoky(6): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ps(1) | |
| contains: psheoky(1) | |
| sheol(114): (word length: 5 / group items: 29) | |
| length: min=6, max=11, avg=7.6 | |
| top prefixes: sh(15), ds(1), ol(1), ks(1), ls(1) | |
| contains: dsheol(9), olsheol(4), sheols(3), ksheol(2), lsheol(2), | |
| psheoldy(2), sheoldy(2), sheolol(2), sheoltey(2), yksheol(2), | |
| opsheolaiin(1), orsheoldy(1), osheol(1), rsheol(1), sheoldam(1), | |
| sheolkain(1), sheolkchy(1), sheolkeal(1), sheolkedy(1), | |
| sheolkeedy(1), sheolkeey(1), sheolo(1), sheolor(1), | |
| sheolshody(1), sheoly(1), ssheol(1), stsheol(1), tolsheol(1), | |
| ysheol(1) | |
| sheoldy(2): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: ps(1), or(1) | |
| contains: psheoldy(2), orsheoldy(1) | |
| sheolo(1): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(2) | |
| contains: sheolol(2), sheolor(1) | |
| sheols(3): (word length: 6 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: sh(1) | |
| contains: sheolshody(1) | |
| sheor(51): (word length: 5 / group items: 7) | |
| length: min=6, max=10, avg=7.0 | |
| top prefixes: ol(2), ys(1), ds(1), po(1), ps(1) | |
| contains: ysheor(4), dsheor(3), olsheor(2), olfsheoral(1), posheor(1), | |
| psheor(1), ypsheor(1) | |
| sheos(17): (word length: 5 / group items: 7) | |
| length: min=6, max=9, avg=6.9 | |
| top prefixes: sh(2), ds(1), po(1), sy(1), ts(1) | |
| contains: dsheos(1), posheos(1), sheosaiin(1), sheosam(1), sysheos(1), | |
| tsheos(1), ysheos(1) | |
| sheot(2): (word length: 5 / group items: 8) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: sh(6), ls(1), ps(1) | |
| contains: lsheotey(1), psheot(1), sheotain(1), sheotal(1), sheotam(1), | |
| sheotchedy(1), sheoteoly(1), sheoty(1) | |
| sheoy(4): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.3 | |
| top prefixes: do(1), ds(1), qo(1) | |
| contains: dorsheoy(1), dsheoy(1), qoksheoy(1) | |
| shep(1): (word length: 4 / group items: 7) | |
| length: min=5, max=9, avg=7.7 | |
| top prefixes: sh(6), os(1) | |
| contains: shepchy(3), oshepols(1), shepchdy(1), shepchedy(1), | |
| shepchol(1), shepdaiin(1), shepy(1) | |
| shes(13): (word length: 4 / group items: 19) | |
| length: min=5, max=7, avg=5.9 | |
| top prefixes: sh(7), ys(2), ds(1), ko(1), ks(1) | |
| contains: shese(2), dshes(1), kolshes(1), kshes(1), lshes(1), okshes(1), | |
| opshes(1), oshesy(1), otshes(1), pshesy(1), shesed(1), shesee(1), | |
| sheseky(1), sheshdy(1), sheshy(1), shshes(1), tshes(1), | |
| yshesos(1), yshesy(1) | |
| shese(2): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: sh(3) | |
| contains: shesed(1), shesee(1), sheseky(1) | |
| shet(1): (word length: 4 / group items: 13) | |
| length: min=5, max=12, avg=6.7 | |
| top prefixes: sh(11), ls(1), ko(1) | |
| contains: shety(9), shetey(4), lshety(2), shetchy(2), koshet(1), | |
| shetam(1), shetar(1), shetch(1), shetcheodchs(1), sheteal(1), | |
| shets(1), shetshdy(1), shetsho(1) | |
| shetch(1): (word length: 6 / group items: 2) | |
| length: min=7, max=12, avg=9.5 | |
| top prefixes: sh(2) | |
| contains: shetchy(2), shetcheodchs(1) | |
| shets(1): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: sh(2) | |
| contains: shetshdy(1), shetsho(1) | |
| shety(9): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ls(1) | |
| contains: lshety(2) | |
| shey(283): (word length: 4 / group items: 64) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: sh(13), qo(7), ol(4), ok(4), ot(3) | |
| contains: lshey(18), dshey(14), yshey(12), olshey(11), okshey(9), | |
| tshey(9), qokshey(8), oshey(7), otshey(7), kshey(6), sshey(6), | |
| alshey(4), qotshey(3), dkshey(2), koshey(2), lkshey(2), | |
| oltshey(2), qolshey(2), qotyshey(2), rshey(2), shekshey(2), | |
| sheyr(2), arshey(1), dalshey(1), darshey(1), doefshey(1), | |
| fyshey(1), kalshey(1), kechodshey(1), keeolshey(1), keshey(1), | |
| kodshey(1), okalshey(1), okeolshey(1), okeshey(1), olkeshey(1), | |
| olkshey(1), opshey(1), opsheytey(1), oteodshey(1), oteoshey(1), | |
| oyshey(1), qofshey(1), qokeshey(1), qolkshey(1), rolshey(1), | |
| shedshey(1), sheepshey(1), sheycthy(1), sheyk(1), sheykaiiin(1), | |
| sheykal(1), sheyky(1), sheysy(1), sheytchdy(1), shodshey(1), | |
| shodypshey(1), solshey(1), tchotshey(1), tolkshey(1), tolshey(1), | |
| toshey(1), ylshey(1), yrshey(1) | |
| sheyk(1): (word length: 5 / group items: 3) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: sh(3) | |
| contains: sheykaiiin(1), sheykal(1), sheyky(1) | |
| shfy(1): (word length: 4 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sh(1) | |
| contains: shfydaiin(1) | |
| shka(1): (word length: 4 / group items: 6) | |
| length: min=5, max=9, avg=6.3 | |
| top prefixes: sh(6) | |
| contains: shkaiin(4), shkain(3), shkair(2), shkar(2), shkakeedy(1), | |
| shkal(1) | |
| shko(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: sh(1) | |
| contains: shkol(2) | |
| shl(3): (word length: 3 / group items: 6) | |
| length: min=4, max=9, avg=5.8 | |
| top prefixes: sh(3), ls(1), ol(1), os(1) | |
| contains: shldy(2), lshl(1), olshly(1), oschotshl(1), shlches(1), | |
| shld(1) | |
| shld(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: sh(1) | |
| contains: shldy(2) | |
| sho(130): (word length: 3 / group items: 285) | |
| length: min=4, max=12, avg=6.9 | |
| top prefixes: sh(157), ts(15), ds(10), ks(9), ps(8) | |
| contains: shol(187), shor(97), shody(55), shodaiin(23), dshor(14), | |
| shocthy(12), shod(11), shos(10), dsho(9), shokchy(9), ksho(8), | |
| shoky(8), sholdy(8), shoty(8), shoiin(6), shory(6), tshol(6), | |
| dshol(5), pshol(5), shockhy(5), shodain(5), shok(5), shokey(5), | |
| shosaiin(5), tsho(5), kshody(4), oksho(4), shoaiin(4), | |
| shoikhy(4), shokal(4), sholy(4), shom(4), tshor(4), kshol(3), | |
| olsho(3), shoar(3), shockhey(3), shodal(3), shodol(3), | |
| shokaiin(3), shokar(3), shokeey(3), shokol(3), shot(3), | |
| shotchy(3), shotol(3), ysho(3), chokshor(2), chotshol(2), | |
| dshody(2), kshor(2), lsho(2), okshor(2), oshor(2), otsho(2), | |
| otshol(2), pshodaiin(2), shocfhy(2), sholkeedy(2), shopchey(2), | |
| shopcho(2), shopchy(2), shoshy(2), shotaiin(2), shoteeody(2), | |
| shoy(2), torshor(2), tshod(2), yshol(2), yshor(2), ytsho(2), | |
| cholsho(1), chosaroshol(1), chsho(1), chshol(1), chshoty(1), | |
| ctheockhosho(1), cthoshol(1), darshody(1), deeamshol(1), | |
| dlssho(1), dshodal(1), dshodar(1), dsholdy(1), dsholy(1), | |
| dsholyd(1), dshoy(1), dtshol(1), dyshol(1), folshody(1), | |
| fshodchy(1), fshody(1), fsholom(1), fshor(1), keesho(1), | |
| keeshody(1), keshor(1), kodshol(1), kolsho(1), kosholda(1), | |
| kshodaiin(1), ksholochey(1), kshoraiin(1), kshotol(1), kshoy(1), | |
| lksho(1), lshodair(1), lshody(1), lshor(1), ltsholy(1), | |
| ocholshod(1), ofsholdy(1), okeshos(1), okshodeeen(1), okshody(1), | |
| okshol(1), oksholshol(1), oltsho(1), opsho(1), opshody(1), | |
| opshol(1), opsholal(1), orshos(1), osho(1), oshodody(1), | |
| oshol(1), oshox(1), oteoteotsho(1), otoshol(1), otshor(1), | |
| pdalshor(1), peshol(1), podeesho(1), polshol(1), polshor(1), | |
| polteshol(1), porshols(1), poshody(1), poshol(1), pshoain(1), | |
| pshoair(1), pshod(1), pshodalos(1), pshody(1), pshorol(1), | |
| qokshol(1), qoshocphy(1), qotshol(1), shefshoro(1), shekshol(1), | |
| sheolshody(1), shetsho(1), shoaldy(1), shocfhey(1), shocho(1), | |
| shochol(1), shochy(1), shockhchy(1), shockhhy(1), shockho(1), | |
| shockhol(1), shockhsy(1), shocphedy(1), shocphhy(1), shocphor(1), | |
| shocthey(1), shocthhy(1), shocthody(1), shocthol(1), shoda(1), | |
| shodaim(1), shodam(1), shodan(1), shodary(1), shodody(1), | |
| shodor(1), shodshey(1), shodypshey(1), shoeey(1), shoefcheey(1), | |
| shoefy(1), shoekar(1), shoekeal(1), shoekey(1), shoeky(1), | |
| shoeor(1), shoety(1), shofol(1), shofom(1), shofshedy(1), | |
| shoifhy(1), shoin(1), shokaiir(1), shokain(1), shokalol(1), | |
| shokche(1), shokcheey(1), shokchey(1), shokeedar(1), shokeeey(1), | |
| shokeeol(1), shokeesy(1), shokeolls(1), shokeshy(1), shoko(1), | |
| shokocfhy(1), shokog(1), shokor(1), shokshdy(1), shokshor(1), | |
| shokyd(1), sholaiin(1), sholalam(1), sholar(1), sholdaiin(1), | |
| sholeey(1), sholfaiin(1), sholfchor(1), sholfosdaiin(1), | |
| sholkair(1), sholkal(1), sholkar(1), sholkeechy(1), sholkshy(1), | |
| sholo(1), sholoiin(1), sholol(1), sholor(1), shols(1), | |
| sholschey(1), sholshdy(1), sholteol(1), shoo(1), shoor(1), | |
| shopolchedy(1), shoqoky(1), shoral(1), shorchdy(1), shorchey(1), | |
| shordy(1), shorkchy(1), shorodo(1), shorody(1), shorpchor(1), | |
| shorqoy(1), shorydar(1), shotchdy(1), shotchey(1), shotcho(1), | |
| shotchot(1), shotedy(1), shoteo(1), shoteol(1), shotey(1), | |
| shoto(1), shotokody(1), shotoly(1), shotshy(1), shoyfar(1), | |
| shoyty(1), shysho(1), shyshol(1), sshol(1), sshor(1), | |
| tcheorsho(1), tcholshol(1), tolshosor(1), tshoar(1), | |
| tshodaiin(1), tshodair(1), tshodeesy(1), tshodody(1), tshodpy(1), | |
| tshoiin(1), tshokeody(1), tshoky(1), tsholdy(1), tsholol(1), | |
| yksho(1), ykshol(1), ypsholy(1), yshoain(1), yshoiin(1), | |
| ysholshy(1), yshos(1) | |
| shoar(3): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ts(1) | |
| contains: tshoar(1) | |
| shocho(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(1) | |
| contains: shochol(1) | |
| shockho(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sh(1) | |
| contains: shockhol(1) | |
| shod(11): (word length: 4 / group items: 43) | |
| length: min=5, max=10, avg=7.3 | |
| top prefixes: sh(15), ts(6), ps(4), ds(3), ks(2) | |
| contains: shody(55), shodaiin(23), shodain(5), kshody(4), shodal(3), | |
| shodol(3), dshody(2), pshodaiin(2), tshod(2), darshody(1), | |
| dshodal(1), dshodar(1), folshody(1), fshodchy(1), fshody(1), | |
| keeshody(1), kshodaiin(1), lshodair(1), lshody(1), ocholshod(1), | |
| okshodeeen(1), okshody(1), opshody(1), oshodody(1), poshody(1), | |
| pshod(1), pshodalos(1), pshody(1), sheolshody(1), shoda(1), | |
| shodaim(1), shodam(1), shodan(1), shodary(1), shodody(1), | |
| shodor(1), shodshey(1), shodypshey(1), tshodaiin(1), tshodair(1), | |
| tshodeesy(1), tshodody(1), tshodpy(1) | |
| shoda(1): (word length: 5 / group items: 15) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: sh(7), ps(2), ds(2), ts(2), ks(1) | |
| contains: shodaiin(23), shodain(5), shodal(3), pshodaiin(2), dshodal(1), | |
| dshodar(1), kshodaiin(1), lshodair(1), pshodalos(1), shodaim(1), | |
| shodam(1), shodan(1), shodary(1), tshodaiin(1), tshodair(1) | |
| shodaiin(23): (word length: 8 / group items: 3) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ps(1), ks(1), ts(1) | |
| contains: pshodaiin(2), kshodaiin(1), tshodaiin(1) | |
| shodal(3): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ds(1), ps(1) | |
| contains: dshodal(1), pshodalos(1) | |
| shodody(1): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: os(1), ts(1) | |
| contains: oshodody(1), tshodody(1) | |
| shody(55): (word length: 5 / group items: 13) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: sh(2), ks(1), ds(1), da(1), fo(1) | |
| contains: kshody(4), dshody(2), darshody(1), folshody(1), fshody(1), | |
| keeshody(1), lshody(1), okshody(1), opshody(1), poshody(1), | |
| pshody(1), sheolshody(1), shodypshey(1) | |
| shoiin(6): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ts(1), ys(1) | |
| contains: tshoiin(1), yshoiin(1) | |
| shok(5): (word length: 4 / group items: 29) | |
| length: min=5, max=9, avg=7.3 | |
| top prefixes: sh(27), ts(2) | |
| contains: shokchy(9), shoky(8), shokey(5), shokal(4), shokaiin(3), | |
| shokar(3), shokeey(3), shokol(3), shokaiir(1), shokain(1), | |
| shokalol(1), shokche(1), shokcheey(1), shokchey(1), shokeedar(1), | |
| shokeeey(1), shokeeol(1), shokeesy(1), shokeolls(1), shokeshy(1), | |
| shoko(1), shokocfhy(1), shokog(1), shokor(1), shokshdy(1), | |
| shokshor(1), shokyd(1), tshokeody(1), tshoky(1) | |
| shokal(4): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sh(1) | |
| contains: shokalol(1) | |
| shokche(1): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: sh(2) | |
| contains: shokcheey(1), shokchey(1) | |
| shoko(1): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=6.8 | |
| top prefixes: sh(4) | |
| contains: shokol(3), shokocfhy(1), shokog(1), shokor(1) | |
| shoky(8): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: sh(1), ts(1) | |
| contains: shokyd(1), tshoky(1) | |
| shol(187): (word length: 4 / group items: 68) | |
| length: min=5, max=12, avg=7.2 | |
| top prefixes: sh(26), ds(4), po(4), ts(3), ch(3) | |
| contains: sholdy(8), tshol(6), dshol(5), pshol(5), sholy(4), kshol(3), | |
| chotshol(2), otshol(2), sholkeedy(2), yshol(2), chosaroshol(1), | |
| chshol(1), cthoshol(1), deeamshol(1), dsholdy(1), dsholy(1), | |
| dsholyd(1), dtshol(1), dyshol(1), fsholom(1), kodshol(1), | |
| kosholda(1), ksholochey(1), ltsholy(1), ofsholdy(1), okshol(1), | |
| oksholshol(1), opshol(1), opsholal(1), oshol(1), otoshol(1), | |
| peshol(1), polshol(1), polteshol(1), porshols(1), poshol(1), | |
| qokshol(1), qotshol(1), shekshol(1), sholaiin(1), sholalam(1), | |
| sholar(1), sholdaiin(1), sholeey(1), sholfaiin(1), sholfchor(1), | |
| sholfosdaiin(1), sholkair(1), sholkal(1), sholkar(1), | |
| sholkeechy(1), sholkshy(1), sholo(1), sholoiin(1), sholol(1), | |
| sholor(1), shols(1), sholschey(1), sholshdy(1), sholteol(1), | |
| shyshol(1), sshol(1), tcholshol(1), tsholdy(1), tsholol(1), | |
| ykshol(1), ypsholy(1), ysholshy(1) | |
| sholdy(8): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ds(1), of(1), ts(1) | |
| contains: dsholdy(1), ofsholdy(1), tsholdy(1) | |
| sholo(1): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.3 | |
| top prefixes: sh(3), fs(1), ks(1), ts(1) | |
| contains: fsholom(1), ksholochey(1), sholoiin(1), sholol(1), sholor(1), | |
| tsholol(1) | |
| sholol(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ts(1) | |
| contains: tsholol(1) | |
| shols(1): (word length: 5 / group items: 5) | |
| length: min=8, max=10, avg=8.6 | |
| top prefixes: sh(2), ok(1), po(1), ys(1) | |
| contains: oksholshol(1), porshols(1), sholschey(1), sholshdy(1), | |
| ysholshy(1) | |
| sholy(4): (word length: 5 / group items: 4) | |
| length: min=6, max=7, avg=6.8 | |
| top prefixes: ds(2), lt(1), yp(1) | |
| contains: dsholy(1), dsholyd(1), ltsholy(1), ypsholy(1) | |
| shoo(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: sh(1) | |
| contains: shoor(1) | |
| shor(97): (word length: 4 / group items: 30) | |
| length: min=5, max=9, avg=6.7 | |
| top prefixes: sh(13), ks(2), ds(1), ts(1), ch(1) | |
| contains: dshor(14), shory(6), tshor(4), chokshor(2), kshor(2), | |
| okshor(2), oshor(2), torshor(2), yshor(2), fshor(1), keshor(1), | |
| kshoraiin(1), lshor(1), otshor(1), pdalshor(1), polshor(1), | |
| pshorol(1), shefshoro(1), shokshor(1), shoral(1), shorchdy(1), | |
| shorchey(1), shordy(1), shorkchy(1), shorodo(1), shorody(1), | |
| shorpchor(1), shorqoy(1), shorydar(1), sshor(1) | |
| shory(6): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sh(1) | |
| contains: shorydar(1) | |
| shos(10): (word length: 4 / group items: 6) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: sh(2), ok(1), or(1), to(1), ys(1) | |
| contains: shosaiin(5), shoshy(2), okeshos(1), orshos(1), tolshosor(1), | |
| yshos(1) | |
| shot(3): (word length: 4 / group items: 19) | |
| length: min=5, max=9, avg=7.1 | |
| top prefixes: sh(17), ch(1), ks(1) | |
| contains: shoty(8), shotchy(3), shotol(3), shotaiin(2), shoteeody(2), | |
| chshoty(1), kshotol(1), shotchdy(1), shotchey(1), shotcho(1), | |
| shotchot(1), shotedy(1), shoteo(1), shoteol(1), shotey(1), | |
| shoto(1), shotokody(1), shotoly(1), shotshy(1) | |
| shotcho(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sh(1) | |
| contains: shotchot(1) | |
| shoteo(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(1) | |
| contains: shoteol(1) | |
| shoto(1): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: sh(3), ks(1) | |
| contains: shotol(3), kshotol(1), shotokody(1), shotoly(1) | |
| shotol(3): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ks(1), sh(1) | |
| contains: kshotol(1), shotoly(1) | |
| shoty(8): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chshoty(1) | |
| shoy(2): (word length: 4 / group items: 4) | |
| length: min=5, max=7, avg=5.8 | |
| top prefixes: sh(2), ds(1), ks(1) | |
| contains: dshoy(1), kshoy(1), shoyfar(1), shoyty(1) | |
| shs(5): (word length: 3 / group items: 21) | |
| length: min=4, max=10, avg=6.6 | |
| top prefixes: sh(10), ot(4), ol(1), os(1), pa(1) | |
| contains: shsdy(2), oltshsey(1), oshsodaiin(1), oteeshs(1), otshs(1), | |
| otshsaiin(1), otshshdy(1), palshsar(1), poalshsal(1), qokeshs(1), | |
| shseor(1), shses(1), shshdar(1), shshes(1), shshy(1), shsky(1), | |
| shso(1), shsopam(1), shsy(1), torolshsdy(1), yshs(1) | |
| shsdy(2): (word length: 5 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: to(1) | |
| contains: torolshsdy(1) | |
| shso(1): (word length: 4 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: os(1), sh(1) | |
| contains: oshsodaiin(1), shsopam(1) | |
| shty(4): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ol(1) | |
| contains: olshty(1) | |
| shx(1): (word length: 3 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: sh(1), to(1) | |
| contains: shxam(1), todashx(1) | |
| shy(104): (word length: 3 / group items: 114) | |
| length: min=4, max=11, avg=6.6 | |
| top prefixes: sh(18), ch(14), qo(11), ok(8), ot(8) | |
| contains: okshy(10), qokshy(10), dshy(8), kshy(5), qotshy(5), tshy(5), | |
| otshy(4), choshy(3), lshy(3), okeshy(3), okolshy(3), olshy(3), | |
| polshy(3), ytshy(3), alshy(2), chshy(2), okeeshy(2), otchoshy(2), | |
| qolshy(2), shoshy(2), shtshy(2), shytchy(2), soshy(2), | |
| ykeeshy(2), ykshy(2), aroshy(1), chckshy(1), chekeesshy(1), | |
| cheolshy(1), cheshy(1), chetalshy(1), chetshy(1), chkshy(1), | |
| chokshy(1), choldshy(1), choshydy(1), chotshy(1), chtshy(1), | |
| ckshy(1), dalshy(1), dalteoshy(1), dkshy(1), dolshy(1), | |
| dykshy(1), dytshy(1), ekshy(1), fchokshy(1), keeshy(1), | |
| lkshykchy(1), lshalshy(1), ocfshy(1), oekshy(1), ofchoshy(1), | |
| oishy(1), okchodshy(1), okchokshy(1), okchshy(1), okyeeshy(1), | |
| olkeeshy(1), olpshy(1), orshy(1), oshyteed(1), otalshy(1), | |
| otechshy(1), oteeykshy(1), oteshy(1), otolkshy(1), otyshy(1), | |
| oykshy(1), oyshy(1), pchshy(1), polyshy(1), posalshy(1), | |
| psheodshy(1), pshy(1), qofshy(1), qokchshy(1), qokeeshy(1), | |
| qokeshy(1), qorshy(1), qoshy(1), qotalshy(1), qoteshy(1), | |
| ramshy(1), raroshy(1), sheekshy(1), sheshy(1), shkshy(1), | |
| shokeshy(1), sholkshy(1), shotshy(1), shshy(1), shydal(1), | |
| shykaiin(1), shykeody(1), shyokeey(1), shypchedy(1), shysho(1), | |
| shyshol(1), shyy(1), sorshy(1), tchoarorshy(1), teolshy(1), | |
| toairshy(1), toldshy(1), tolshy(1), toshy(1), ydaraishy(1), | |
| ykarshy(1), ykeoeshy(1), ykeshy(1), ysholshy(1), yshy(1), | |
| ytashy(1) | |
| shysho(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sh(1) | |
| contains: shyshol(1) | |
| ska(1): (word length: 3 / group items: 6) | |
| length: min=4, max=9, avg=5.7 | |
| top prefixes: sk(5), ch(1) | |
| contains: skaiin(3), chskar(1), skaiiodar(1), skain(1), skal(1), skar(1) | |
| skar(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ch(1) | |
| contains: chskar(1) | |
| sky(1): (word length: 3 / group items: 3) | |
| length: min=5, max=9, avg=6.3 | |
| top prefixes: ch(1), of(1), sh(1) | |
| contains: chsky(2), ofyskydal(1), shsky(1) | |
| soar(2): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ke(1) | |
| contains: kesoar(1) | |
| sod(1): (word length: 3 / group items: 18) | |
| length: min=4, max=10, avg=7.4 | |
| top prefixes: so(6), ot(2), ai(1), dy(1), oe(1) | |
| contains: sodar(6), sody(5), sodaiin(3), sodal(3), aiisod(1), | |
| dylchsody(1), oeesody(1), ofchsody(1), okeesodar(1), | |
| oshsodaiin(1), otasodlory(1), oteesod(1), pchsodar(1), | |
| sodaiiin(1), sodair(1), teesody(1), ykesodarar(1), ysarasod(1) | |
| sodaiin(3): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: os(1) | |
| contains: oshsodaiin(1) | |
| sodar(6): (word length: 5 / group items: 3) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: ok(1), pc(1), yk(1) | |
| contains: okeesodar(1), pchsodar(1), ykesodarar(1) | |
| sody(5): (word length: 4 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: dy(1), oe(1), of(1), te(1) | |
| contains: dylchsody(1), oeesody(1), ofchsody(1), teesody(1) | |
| soe(1): (word length: 3 / group items: 14) | |
| length: min=4, max=11, avg=6.1 | |
| top prefixes: so(12), cs(1), ok(1) | |
| contains: csoeky(1), okesoe(1), soear(1), soeeedy(1), soeees(1), | |
| soeeol(1), soees(1), soefchocphy(1), soeokeot(1), soeom(1), | |
| soeor(1), soeos(1), soes(1), soeteed(1) | |
| soiin(21): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sa(1) | |
| contains: salsoiin(1) | |
| soir(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ys(1) | |
| contains: ysoir(1) | |
| sokol(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: so(1) | |
| contains: sokoly(1) | |
| sol(75): (word length: 3 / group items: 42) | |
| length: min=4, max=10, avg=6.6 | |
| top prefixes: so(34), cs(2), da(1), ka(1), ol(1) | |
| contains: solchedy(8), solkeedy(5), solchey(4), solkeey(4), solkaiin(3), | |
| solkain(3), solkedy(3), sols(3), solshedy(3), soly(3), | |
| solaiin(2), solcheol(2), cskesol(1), csol(1), daisoldy(1), | |
| kasol(1), olsheeosol(1), oteeosol(1), qoisol(1), qsolkeedy(1), | |
| solain(1), solair(1), solal(1), solchd(1), solchkal(1), | |
| solchyd(1), solcthy(1), sold(1), soldy(1), soleeg(1), | |
| solkchedy(1), solkchy(1), solkes(1), solkey(1), solky(1), | |
| soloiin(1), solol(1), solor(1), solpchd(1), solshed(1), | |
| solshey(1), solteedy(1) | |
| sold(1): (word length: 4 / group items: 2) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: da(1), so(1) | |
| contains: daisoldy(1), soldy(1) | |
| soldy(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: da(1) | |
| contains: daisoldy(1) | |
| solkeedy(5): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qs(1) | |
| contains: qsolkeedy(1) | |
| sols(3): (word length: 4 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: so(3) | |
| contains: solshedy(3), solshed(1), solshey(1) | |
| solshed(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: so(1) | |
| contains: solshedy(3) | |
| som(1): (word length: 3 / group items: 2) | |
| length: min=4, max=6, avg=5.0 | |
| top prefixes: fc(1), so(1) | |
| contains: fchsom(1), somy(1) | |
| sor(57): (word length: 3 / group items: 24) | |
| length: min=4, max=9, avg=6.4 | |
| top prefixes: so(15), ch(2), dc(1), ks(1), ls(1) | |
| contains: soraiin(7), sory(5), soral(3), sorain(2), chosory(1), | |
| chsor(1), dcsesor(1), ksor(1), lsoraiin(1), oeesordy(1), | |
| okasor(1), qolsor(1), soraiis(1), soraloaly(1), soraly(1), | |
| sorary(1), sorcheey(1), sorol(1), sorols(1), sororl(1), | |
| sorory(1), sorshy(1), sosoral(1), tolshosor(1) | |
| soraiin(7): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ls(1) | |
| contains: lsoraiin(1) | |
| soral(3): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.3 | |
| top prefixes: so(3) | |
| contains: soraloaly(1), soraly(1), sosoral(1) | |
| sorol(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: so(1) | |
| contains: sorols(1) | |
| sory(5): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chosory(1) | |
| sos(8): (word length: 3 / group items: 14) | |
| length: min=4, max=8, avg=5.9 | |
| top prefixes: so(9), ee(1), os(1), pc(1), tc(1) | |
| contains: sosar(2), soshy(2), eesos(1), osos(1), pchosos(1), sosaiir(1), | |
| sosam(1), sosees(1), soshckhy(1), soshe(1), sosoral(1), sossy(1), | |
| tchosos(1), yshesos(1) | |
| soy(4): (word length: 3 / group items: 2) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: oe(1), so(1) | |
| contains: oeeesoy(1), soydy(1) | |
| ssheo(2): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=8.0 | |
| top prefixes: ss(2), po(1) | |
| contains: possheody(1), ssheodain(1), ssheol(1) | |
| sydy(2): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ee(1) | |
| contains: eesydy(1) | |
| taiiin(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: qo(1), ot(1) | |
| contains: qotaiiin(2), otaiiin(1) | |
| taiin(42): (word length: 5 / group items: 24) | |
| length: min=6, max=10, avg=7.4 | |
| top prefixes: ch(7), qo(2), sh(2), ot(1), yt(1) | |
| contains: otaiin(154), qotaiin(79), ytaiin(43), chotaiin(9), chtaiin(4), | |
| chetaiin(3), oltaiin(2), shotaiin(2), ataiin(1), chataiin(1), | |
| cheeotaiin(1), cheotaiin(1), choltaiin(1), etaiin(1), ltaiin(1), | |
| okytaiin(1), oqotaiin(1), qetaiin(1), qoctaiin(1), rotaiin(1), | |
| shtaiin(1), sotaiin(1), ychtaiin(1), yotaiin(1) | |
| taim(1): (word length: 4 / group items: 2) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ot(1), yt(1) | |
| contains: otaim(2), ytaim(1) | |
| tain(16): (word length: 4 / group items: 19) | |
| length: min=5, max=10, avg=6.7 | |
| top prefixes: ch(5), ot(3), sh(2), qo(1), yt(1) | |
| contains: otain(96), qotain(64), ytain(13), chetain(5), chotain(4), | |
| chtain(3), ltain(2), oltain(2), cheoltain(1), cheotain(1), | |
| dcheytain(1), dytain(1), otainos(1), otainy(1), qetain(1), | |
| rtain(1), shedaitain(1), sheotain(1), ychtain(1) | |
| tair(13): (word length: 4 / group items: 11) | |
| length: min=5, max=7, avg=6.5 | |
| top prefixes: ot(4), ch(3), yt(2), qo(1), ta(1) | |
| contains: otair(21), qotair(6), otairor(3), ytair(3), chotair(1), | |
| chtair(1), chtairy(1), otairar(1), otairin(1), tairoor(1), | |
| ytairal(1) | |
| tal(20): (word length: 3 / group items: 86) | |
| length: min=4, max=10, avg=6.4 | |
| top prefixes: ot(33), ch(11), ta(11), qo(10), yt(5) | |
| contains: otal(143), qotal(59), otaly(19), ytal(19), chotal(9), | |
| otaldy(7), chtal(6), qotaly(5), ytaly(5), otalor(4), ltal(3), | |
| otalaiin(3), otalal(3), otalam(3), otalar(3), otalshedy(3), | |
| shtal(3), oltal(2), otald(2), otaldal(2), otalsy(2), qetal(2), | |
| chchetal(1), chetal(1), chetalshy(1), cheytal(1), choltal(1), | |
| choltaly(1), chotals(1), chtaldy(1), chtaly(1), dtal(1), | |
| dytal(1), kotaly(1), lotal(1), lsheetal(1), ltalor(1), | |
| oetalchg(1), oletal(1), oqotaly(1), otala(1), otalain(1), | |
| otalair(1), otalalg(1), otalaly(1), otalchal(1), otalchy(1), | |
| otaldiin(1), otalef(1), otaleky(1), otalkain(1), otalkchy(1), | |
| otalky(1), otalod(1), otalody(1), otalom(1), otalr(1), otals(1), | |
| otalsar(1), otalshdy(1), otalshy(1), pchoetal(1), qoetal(1), | |
| qotalal(1), qotalchedy(1), qotaldy(1), qotalody(1), qotalom(1), | |
| qotals(1), qotalshy(1), sheotal(1), talam(1), talar(1), | |
| talchos(1), taldain(1), taldar(1), talkl(1), talody(1), talol(1), | |
| talor(1), talshdy(1), taly(1), ycheeytal(1), ytalar(1), | |
| ytalchos(1), ytalody(1) | |
| talam(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1) | |
| contains: otalam(3) | |
| talar(1): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1), yt(1) | |
| contains: otalar(3), ytalar(1) | |
| talchos(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yt(1) | |
| contains: ytalchos(1) | |
| talody(1): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: ot(1), qo(1), yt(1) | |
| contains: otalody(1), qotalody(1), ytalody(1) | |
| talor(1): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1), lt(1) | |
| contains: otalor(4), ltalor(1) | |
| talshdy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otalshdy(1) | |
| taly(1): (word length: 4 / group items: 7) | |
| length: min=5, max=8, avg=6.1 | |
| top prefixes: ch(2), ot(1), qo(1), yt(1), ko(1) | |
| contains: otaly(19), qotaly(5), ytaly(5), choltaly(1), chtaly(1), | |
| kotaly(1), oqotaly(1) | |
| tam(5): (word length: 3 / group items: 22) | |
| length: min=4, max=10, avg=5.9 | |
| top prefixes: ch(6), ot(3), qo(2), sh(2), yt(1) | |
| contains: otam(47), ytam(13), qotam(12), chotam(5), otytam(2), | |
| cheetam(1), cheotam(1), chetam(1), choltam(1), chtam(1), | |
| dalkalytam(1), kchetam(1), kolotam(1), ltam(1), okeytam(1), | |
| oltam(1), otamy(1), qetam(1), qoetam(1), qtam(1), sheotam(1), | |
| shetam(1) | |
| tan(1): (word length: 3 / group items: 3) | |
| length: min=4, max=6, avg=5.0 | |
| top prefixes: ot(1), qo(1), ch(1) | |
| contains: otan(5), qotan(2), chetan(1) | |
| tar(43): (word length: 3 / group items: 68) | |
| length: min=4, max=11, avg=6.2 | |
| top prefixes: ot(24), ch(10), ta(10), yt(5), qo(4) | |
| contains: otar(141), qotar(63), ytar(26), chotar(11), chetar(6), | |
| otarar(5), otary(5), otaram(4), chtar(3), oltar(3), otaral(3), | |
| ltary(2), otaraldy(2), otardy(2), otariin(2), taraiin(2), | |
| taral(2), tarar(2), tarol(2), chaltar(1), cheetar(1), | |
| cheoltar(1), cheotar(1), choltar(1), chtedytar(1), chytaroiin(1), | |
| ctar(1), dytary(1), eotar(1), etar(1), lotar(1), ltar(1), | |
| ofchtar(1), oqotar(1), otaraiin(1), otarain(1), otaramy(1), | |
| otararain(1), otaras(1), otaray(1), otarcho(1), otarchol(1), | |
| otard(1), otardaly(1), otardam(1), otariir(1), otaro(1), | |
| otarody(1), otaryly(1), ototar(1), qoetar(1), qotardy(1), | |
| qotary(1), saltar(1), satar(1), shetar(1), shtar(1), tarair(1), | |
| tarairy(1), taram(1), tarodaiin(1), taror(1), taros(1), | |
| teodyteytar(1), ytarar(1), ytarem(1), ytarody(1), ytary(1) | |
| taraiin(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otaraiin(1) | |
| tarair(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ta(1) | |
| contains: tarairy(1) | |
| taral(2): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ot(2) | |
| contains: otaral(3), otaraldy(2) | |
| taram(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ot(2) | |
| contains: otaram(4), otaramy(1) | |
| tarar(2): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: ot(2), yt(1) | |
| contains: otarar(5), otararain(1), ytarar(1) | |
| tas(1): (word length: 3 / group items: 10) | |
| length: min=4, max=10, avg=5.9 | |
| top prefixes: yt(4), ot(3), qo(1), at(1), ch(1) | |
| contains: otas(4), qotas(2), ataseos(1), chetas(1), otasam(1), | |
| otasodlory(1), ytas(1), ytasal(1), ytashy(1), ytasr(1) | |
| tch(1): (word length: 3 / group items: 297) | |
| length: min=4, max=14, avg=7.4 | |
| top prefixes: tc(82), ot(66), qo(37), yt(33), ch(30) | |
| contains: qotchy(63), otchy(48), otchedy(34), tchedy(33), otchey(31), | |
| otchdy(30), otchol(28), qotchedy(24), tchy(24), qotchdy(23), | |
| tchey(22), ytchy(20), qotchey(19), tchor(19), otchor(18), | |
| tchdy(15), qotchor(14), qotchol(13), tchol(13), ytchor(13), | |
| chotchy(12), ytchey(12), otcho(11), qotcho(11), ytchdy(10), | |
| ytchedy(10), tcho(8), tchody(8), tcheo(7), otcham(6), otchar(6), | |
| otchody(6), tcheey(6), tcheody(6), tcheol(6), ytchol(6), | |
| qotched(5), ytchody(5), chetchy(4), otchal(4), otcheor(4), | |
| otchos(4), qotchd(4), qotcheedy(4), qotcheo(4), tchar(4), | |
| tchos(4), chotchey(3), otchdal(3), otcheey(3), otches(3), | |
| otchod(3), qotchar(3), qotcheol(3), qotchody(3), shotchy(3), | |
| shtchy(3), tchedor(3), tcheor(3), tchodaiin(3), ytchoy(3), | |
| chotchdy(2), chtchy(2), ctchy(2), dytchy(2), oltchey(2), | |
| oltchy(2), otch(2), otchaiin(2), otcheody(2), otchodar(2), | |
| otchoky(2), otchoshy(2), otchs(2), qotchaiin(2), qotcheaiin(2), | |
| qotchedar(2), qotchod(2), qotchoiin(2), shetchy(2), shytchy(2), | |
| tchal(2), tchdaiin(2), tchdor(2), tchedar(2), tcheos(2), | |
| tchod(2), tchodar(2), tchoky(2), tcholol(2), tchols(2), ytcho(2), | |
| ytchos(2), cheeetchol(1), cheoltchedaiin(1), cheotchar(1), | |
| cheotchey(1), cheotchy(1), chetchaiin(1), chetchdy(1), | |
| chetchey(1), chetcho(1), chetchody(1), choetchaldy(1), | |
| choetchy(1), chotchedy(1), chotcheey(1), chotcheol(1), | |
| chotcheytchol(1), chotcho(1), chotchody(1), chotchol(1), | |
| chotchs(1), chtchey(1), chtchol(1), chtchor(1), chtchyf(1), | |
| chytchy(1), ctchey(1), dchytchy(1), dtchan(1), dytchdy(1), | |
| dytchor(1), etchal(1), etcheody(1), kotchody(1), kotchy(1), | |
| ltchdy(1), ltcheody(1), ltchey(1), ltchs(1), oetchdy(1), | |
| olotchedy(1), oltchdy(1), oltchedy(1), oltcheey(1), otchald(1), | |
| otchd(1), otchdain(1), otchdo(1), otchechy(1), otchedain(1), | |
| otchedair(1), otchedar(1), otchedey(1), otcheed(1), | |
| otcheedaiin(1), otcheedy(1), otcheeo(1), otcheo(1), otcheochy(1), | |
| otcheodaiin(1), otcheodar(1), otcheol(1), otcheolom(1), | |
| otcheoly(1), otcheos(1), otchetchar(1), otcheypchedy(1), | |
| otchl(1), otchm(1), otchodal(1), otchodals(1), otchodor(1), | |
| otcholcheaiin(1), otcholchy(1), otcholocthol(1), otchom(1), | |
| otchordy(1), otchotor(1), otchoty(1), otchoy(1), otchr(1), | |
| otchsdy(1), otchsy(1), otchyky(1), otytchol(1), otytchy(1), | |
| pchotchy(1), pchtchdy(1), potchokar(1), qetchar(1), qetchdy(1), | |
| qoctchey(1), qotchain(1), qotcham(1), qotchdain(1), qotchdal(1), | |
| qotchdar(1), qotcheea(1), qotcheeaiin(1), qotches(1), | |
| qotcholm(1), qotchoraiin(1), qotchos(1), qotchotchy(1), | |
| qotchs(1), qotchsdy(1), qotchytor(1), qoteeotchy(1), | |
| qotoeetchy(1), qtchedy(1), rotcho(1), sheeetchy(1), sheetchy(1), | |
| sheotchedy(1), shetch(1), shetcheodchs(1), sheytchdy(1), | |
| shotchdy(1), shotchey(1), shotcho(1), shotchot(1), sotchaiin(1), | |
| sotchdaiin(1), sotchdy(1), sotchy(1), tchaiin(1), tchain(1), | |
| tchalody(1), tchaly(1), tchcthy(1), tchd(1), tchdarol(1), | |
| tchddy(1), tchdoltdy(1), tchdys(1), tcheain(1), tcheay(1), | |
| tched(1), tchedaiin(1), tchedair(1), tchedal(1), tchede(1), | |
| tchedol(1), tchedydy(1), tcheen(1), tcheeos(1), tcheepchey(1), | |
| tcheod(1), tcheodaiin(1), tcheodal(1), tcheodar(1), tcheodl(1), | |
| tcheoko(1), tcheolchy(1), tcheorsho(1), tchkaiin(1), tchoar(1), | |
| tchoarorshy(1), tchodain(1), tchodairos(1), tchodls(1), | |
| tchodol(1), tchoep(1), tchokedy(1), tchokyd(1), tcholdchy(1), | |
| tcholkaiin(1), tcholshol(1), tcholy(1), tchom(1), tchory(1), | |
| tchosos(1), tchotchey(1), tchotchol(1), tchotchor(1), | |
| tchotshey(1), tchtcho(1), tchtod(1), tchty(1), tchykchy(1), | |
| totchy(1), ykchotchy(1), ytch(1), ytchaiin(1), ytchaly(1), | |
| ytchar(1), ytchas(1), ytchchy(1), ytchcseey(1), ytchdam(1), | |
| ytcheas(1), ytched(1), ytchedal(1), ytcheear(1), ytcheeky(1), | |
| ytcheey(1), ytcheo(1), ytcheodar(1), ytcheodytor(1), ytchl(1), | |
| ytchodaiin(1), ytchodyy(1), ytchoky(1), ytchom(1), ytchyd(1) | |
| tchaiin(1): (word length: 7 / group items: 5) | |
| length: min=8, max=10, avg=8.8 | |
| top prefixes: ot(1), qo(1), ch(1), so(1), yt(1) | |
| contains: otchaiin(2), qotchaiin(2), chetchaiin(1), sotchaiin(1), | |
| ytchaiin(1) | |
| tchain(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotchain(1) | |
| tchal(2): (word length: 5 / group items: 7) | |
| length: min=6, max=11, avg=7.3 | |
| top prefixes: ot(2), tc(2), ch(1), et(1), yt(1) | |
| contains: otchal(4), choetchaldy(1), etchal(1), otchald(1), tchalody(1), | |
| tchaly(1), ytchaly(1) | |
| tchaly(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yt(1) | |
| contains: ytchaly(1) | |
| tchar(4): (word length: 5 / group items: 6) | |
| length: min=6, max=10, avg=7.5 | |
| top prefixes: ot(2), qo(1), ch(1), qe(1), yt(1) | |
| contains: otchar(6), qotchar(3), cheotchar(1), otchetchar(1), | |
| qetchar(1), ytchar(1) | |
| tchd(1): (word length: 4 / group items: 31) | |
| length: min=5, max=10, avg=7.2 | |
| top prefixes: tc(7), ot(5), qo(5), yt(2), ch(2) | |
| contains: otchdy(30), qotchdy(23), tchdy(15), ytchdy(10), qotchd(4), | |
| otchdal(3), chotchdy(2), tchdaiin(2), tchdor(2), chetchdy(1), | |
| dytchdy(1), ltchdy(1), oetchdy(1), oltchdy(1), otchd(1), | |
| otchdain(1), otchdo(1), pchtchdy(1), qetchdy(1), qotchdain(1), | |
| qotchdal(1), qotchdar(1), sheytchdy(1), shotchdy(1), | |
| sotchdaiin(1), sotchdy(1), tchdarol(1), tchddy(1), tchdoltdy(1), | |
| tchdys(1), ytchdam(1) | |
| tchdaiin(2): (word length: 8 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: so(1) | |
| contains: sotchdaiin(1) | |
| tchdy(15): (word length: 5 / group items: 15) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: ch(2), sh(2), ot(1), qo(1), yt(1) | |
| contains: otchdy(30), qotchdy(23), ytchdy(10), chotchdy(2), chetchdy(1), | |
| dytchdy(1), ltchdy(1), oetchdy(1), oltchdy(1), pchtchdy(1), | |
| qetchdy(1), sheytchdy(1), shotchdy(1), sotchdy(1), tchdys(1) | |
| tched(1): (word length: 5 / group items: 26) | |
| length: min=6, max=14, avg=8.0 | |
| top prefixes: tc(9), ot(5), qo(3), yt(3), ch(2) | |
| contains: otchedy(34), tchedy(33), qotchedy(24), ytchedy(10), | |
| qotched(5), tchedor(3), qotchedar(2), tchedar(2), | |
| cheoltchedaiin(1), chotchedy(1), olotchedy(1), oltchedy(1), | |
| otchedain(1), otchedair(1), otchedar(1), otchedey(1), qtchedy(1), | |
| sheotchedy(1), tchedaiin(1), tchedair(1), tchedal(1), tchede(1), | |
| tchedol(1), tchedydy(1), ytched(1), ytchedal(1) | |
| tchedaiin(1): (word length: 9 / group items: 1) | |
| length: min=14, max=14, avg=14.0 | |
| top prefixes: ch(1) | |
| contains: cheoltchedaiin(1) | |
| tchedair(1): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ot(1) | |
| contains: otchedair(1) | |
| tchedal(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yt(1) | |
| contains: ytchedal(1) | |
| tchedar(2): (word length: 7 / group items: 2) | |
| length: min=8, max=9, avg=8.5 | |
| top prefixes: qo(1), ot(1) | |
| contains: qotchedar(2), otchedar(1) | |
| tchede(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otchedey(1) | |
| tchedy(33): (word length: 6 / group items: 9) | |
| length: min=7, max=10, avg=8.1 | |
| top prefixes: ol(2), ot(1), qo(1), yt(1), ch(1) | |
| contains: otchedy(34), qotchedy(24), ytchedy(10), chotchedy(1), | |
| olotchedy(1), oltchedy(1), qtchedy(1), sheotchedy(1), tchedydy(1) | |
| tcheey(6): (word length: 6 / group items: 4) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: ot(1), ch(1), ol(1), yt(1) | |
| contains: otcheey(3), chotcheey(1), oltcheey(1), ytcheey(1) | |
| tcheo(7): (word length: 5 / group items: 31) | |
| length: min=6, max=12, avg=8.0 | |
| top prefixes: tc(12), ot(10), yt(3), qo(2), ch(1) | |
| contains: tcheody(6), tcheol(6), otcheor(4), qotcheo(4), qotcheol(3), | |
| tcheor(3), otcheody(2), tcheos(2), chotcheol(1), etcheody(1), | |
| ltcheody(1), otcheo(1), otcheochy(1), otcheodaiin(1), | |
| otcheodar(1), otcheol(1), otcheolom(1), otcheoly(1), otcheos(1), | |
| shetcheodchs(1), tcheod(1), tcheodaiin(1), tcheodal(1), | |
| tcheodar(1), tcheodl(1), tcheoko(1), tcheolchy(1), tcheorsho(1), | |
| ytcheo(1), ytcheodar(1), ytcheodytor(1) | |
| tcheod(1): (word length: 6 / group items: 13) | |
| length: min=7, max=12, avg=8.9 | |
| top prefixes: tc(5), ot(3), yt(2), et(1), lt(1) | |
| contains: tcheody(6), otcheody(2), etcheody(1), ltcheody(1), | |
| otcheodaiin(1), otcheodar(1), shetcheodchs(1), tcheodaiin(1), | |
| tcheodal(1), tcheodar(1), tcheodl(1), ytcheodar(1), | |
| ytcheodytor(1) | |
| tcheodaiin(1): (word length: 10 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ot(1) | |
| contains: otcheodaiin(1) | |
| tcheodar(1): (word length: 8 / group items: 2) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ot(1), yt(1) | |
| contains: otcheodar(1), ytcheodar(1) | |
| tcheody(6): (word length: 7 / group items: 4) | |
| length: min=8, max=11, avg=8.8 | |
| top prefixes: ot(1), et(1), lt(1), yt(1) | |
| contains: otcheody(2), etcheody(1), ltcheody(1), ytcheodytor(1) | |
| tcheol(6): (word length: 6 / group items: 6) | |
| length: min=7, max=9, avg=8.3 | |
| top prefixes: ot(3), qo(1), ch(1), tc(1) | |
| contains: qotcheol(3), chotcheol(1), otcheol(1), otcheolom(1), | |
| otcheoly(1), tcheolchy(1) | |
| tcheor(3): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ot(1), tc(1) | |
| contains: otcheor(4), tcheorsho(1) | |
| tcheos(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otcheos(1) | |
| tchey(22): (word length: 5 / group items: 15) | |
| length: min=6, max=13, avg=8.0 | |
| top prefixes: ch(5), ot(2), qo(2), yt(1), ol(1) | |
| contains: otchey(31), qotchey(19), ytchey(12), chotchey(3), oltchey(2), | |
| cheotchey(1), chetchey(1), chotcheytchol(1), chtchey(1), | |
| ctchey(1), ltchey(1), otcheypchedy(1), qoctchey(1), shotchey(1), | |
| tchotchey(1) | |
| tcho(8): (word length: 4 / group items: 87) | |
| length: min=5, max=13, avg=7.5 | |
| top prefixes: tc(31), ot(21), qo(10), yt(10), ch(9) | |
| contains: otchol(28), tchor(19), otchor(18), qotchor(14), qotchol(13), | |
| tchol(13), ytchor(13), otcho(11), qotcho(11), tchody(8), | |
| otchody(6), ytchol(6), ytchody(5), otchos(4), tchos(4), | |
| otchod(3), qotchody(3), tchodaiin(3), ytchoy(3), otchodar(2), | |
| otchoky(2), otchoshy(2), qotchod(2), qotchoiin(2), tchod(2), | |
| tchodar(2), tchoky(2), tcholol(2), tchols(2), ytcho(2), | |
| ytchos(2), cheeetchol(1), chetcho(1), chetchody(1), | |
| chotcheytchol(1), chotcho(1), chotchody(1), chotchol(1), | |
| chtchol(1), chtchor(1), dytchor(1), kotchody(1), otchodal(1), | |
| otchodals(1), otchodor(1), otcholcheaiin(1), otcholchy(1), | |
| otcholocthol(1), otchom(1), otchordy(1), otchotor(1), otchoty(1), | |
| otchoy(1), otytchol(1), potchokar(1), qotcholm(1), | |
| qotchoraiin(1), qotchos(1), qotchotchy(1), rotcho(1), shotcho(1), | |
| shotchot(1), tchoar(1), tchoarorshy(1), tchodain(1), | |
| tchodairos(1), tchodls(1), tchodol(1), tchoep(1), tchokedy(1), | |
| tchokyd(1), tcholdchy(1), tcholkaiin(1), tcholshol(1), tcholy(1), | |
| tchom(1), tchory(1), tchosos(1), tchotchey(1), tchotchol(1), | |
| tchotchor(1), tchotshey(1), tchtcho(1), ytchodaiin(1), | |
| ytchodyy(1), ytchoky(1), ytchom(1) | |
| tchoar(1): (word length: 6 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: tc(1) | |
| contains: tchoarorshy(1) | |
| tchod(2): (word length: 5 / group items: 21) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: tc(7), ot(6), yt(3), qo(2), ch(2) | |
| contains: tchody(8), otchody(6), ytchody(5), otchod(3), qotchody(3), | |
| tchodaiin(3), otchodar(2), qotchod(2), tchodar(2), chetchody(1), | |
| chotchody(1), kotchody(1), otchodal(1), otchodals(1), | |
| otchodor(1), tchodain(1), tchodairos(1), tchodls(1), tchodol(1), | |
| ytchodaiin(1), ytchodyy(1) | |
| tchodaiin(3): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: yt(1) | |
| contains: ytchodaiin(1) | |
| tchodar(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otchodar(2) | |
| tchody(8): (word length: 6 / group items: 7) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: yt(2), ch(2), ot(1), qo(1), ko(1) | |
| contains: otchody(6), ytchody(5), qotchody(3), chetchody(1), | |
| chotchody(1), kotchody(1), ytchodyy(1) | |
| tchoky(2): (word length: 6 / group items: 3) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1), tc(1), yt(1) | |
| contains: otchoky(2), tchokyd(1), ytchoky(1) | |
| tchol(13): (word length: 5 / group items: 19) | |
| length: min=6, max=13, avg=8.6 | |
| top prefixes: tc(7), ot(5), ch(4), qo(2), yt(1) | |
| contains: otchol(28), qotchol(13), ytchol(6), tcholol(2), tchols(2), | |
| cheeetchol(1), chotcheytchol(1), chotchol(1), chtchol(1), | |
| otcholcheaiin(1), otcholchy(1), otcholocthol(1), otytchol(1), | |
| qotcholm(1), tcholdchy(1), tcholkaiin(1), tcholshol(1), | |
| tcholy(1), tchotchol(1) | |
| tchols(2): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: tc(1) | |
| contains: tcholshol(1) | |
| tchom(1): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1), yt(1) | |
| contains: otchom(1), ytchom(1) | |
| tchor(19): (word length: 5 / group items: 9) | |
| length: min=6, max=11, avg=7.4 | |
| top prefixes: ot(2), qo(2), tc(2), yt(1), ch(1) | |
| contains: otchor(18), qotchor(14), ytchor(13), chtchor(1), dytchor(1), | |
| otchordy(1), qotchoraiin(1), tchory(1), tchotchor(1) | |
| tchos(4): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ot(2), yt(1), qo(1), tc(1) | |
| contains: otchos(4), otchoshy(2), ytchos(2), qotchos(1), tchosos(1) | |
| tchy(24): (word length: 4 / group items: 33) | |
| length: min=5, max=10, avg=7.2 | |
| top prefixes: ch(7), sh(6), qo(5), ot(3), yt(2) | |
| contains: qotchy(63), otchy(48), ytchy(20), chotchy(12), chetchy(4), | |
| shotchy(3), shtchy(3), chtchy(2), ctchy(2), dytchy(2), oltchy(2), | |
| shetchy(2), shytchy(2), cheotchy(1), choetchy(1), chtchyf(1), | |
| chytchy(1), dchytchy(1), kotchy(1), otchyky(1), otytchy(1), | |
| pchotchy(1), qotchotchy(1), qotchytor(1), qoteeotchy(1), | |
| qotoeetchy(1), sheeetchy(1), sheetchy(1), sotchy(1), tchykchy(1), | |
| totchy(1), ykchotchy(1), ytchyd(1) | |
| tdaiin(1): (word length: 6 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: cheotdaiin(1) | |
| tdain(2): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: qe(1) | |
| contains: qetdain(1) | |
| teaiin(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: oteaiin(2) | |
| tear(2): (word length: 4 / group items: 5) | |
| length: min=5, max=8, avg=6.2 | |
| top prefixes: yt(2), ot(1), qo(1), ch(1) | |
| contains: otear(4), qotear(2), chotear(1), ytear(1), ytoetear(1) | |
| techedy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otechedy(1) | |
| techol(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otechol(1) | |
| techy(1): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: ot(2), qo(1), ch(1), ct(1), yt(1) | |
| contains: otechy(4), qotechy(2), chetechy(1), ctechy(1), otechys(1), | |
| ytechy(1) | |
| ted(1): (word length: 3 / group items: 64) | |
| length: min=4, max=10, avg=6.5 | |
| top prefixes: ot(18), qo(13), te(11), ch(5), yt(4) | |
| contains: otedy(155), qotedy(91), tedy(42), ytedy(24), otedar(11), | |
| ltedy(7), oltedy(5), otedal(4), qoted(4), tedain(4), chetedy(3), | |
| otedaiin(3), otedam(3), otedol(3), qotedaiin(3), qotedal(3), | |
| qotedar(3), tedaiin(3), tedam(3), ytedar(3), chotedy(2), | |
| chtedy(2), dytedy(2), otedain(2), qotedor(2), tedair(2), tedo(2), | |
| chetedar(1), chtedytar(1), daltedy(1), dotedy(1), dtedair(1), | |
| etedy(1), lotedaiin(1), okedyted(1), oted(1), otedair(1), | |
| otedalol(1), otedas(1), otedchor(1), otedeey(1), otedo(1), | |
| otedor(1), otedos(1), otedyl(1), otedyo(1), qetedy(1), | |
| qoltedy(1), qotedain(1), qotedais(1), qotedary(1), qotedl(1), | |
| qotedol(1), qotedshedy(1), saltedy(1), shotedy(1), tedal(1), | |
| tedar(1), tedas(1), tedcheo(1), tedyol(1), yotedy(1), | |
| ytedshedy(1), ytedykor(1) | |
| tedaiin(3): (word length: 7 / group items: 3) | |
| length: min=8, max=9, avg=8.7 | |
| top prefixes: ot(1), qo(1), lo(1) | |
| contains: otedaiin(3), qotedaiin(3), lotedaiin(1) | |
| tedain(4): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ot(1), qo(1) | |
| contains: otedain(2), qotedain(1) | |
| tedair(2): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dt(1), ot(1) | |
| contains: dtedair(1), otedair(1) | |
| tedal(1): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: ot(2), qo(1) | |
| contains: otedal(4), qotedal(3), otedalol(1) | |
| tedam(3): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1) | |
| contains: otedam(3) | |
| tedar(1): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: qo(2), ot(1), yt(1), ch(1) | |
| contains: otedar(11), qotedar(3), ytedar(3), chetedar(1), qotedary(1) | |
| tedas(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1) | |
| contains: otedas(1) | |
| tedo(2): (word length: 4 / group items: 6) | |
| length: min=5, max=7, avg=6.2 | |
| top prefixes: ot(4), qo(2) | |
| contains: otedol(3), qotedor(2), otedo(1), otedor(1), otedos(1), | |
| qotedol(1) | |
| tedy(42): (word length: 4 / group items: 22) | |
| length: min=5, max=9, avg=6.3 | |
| top prefixes: ch(4), ot(3), qo(2), yt(2), lt(1) | |
| contains: otedy(155), qotedy(91), ytedy(24), ltedy(7), oltedy(5), | |
| chetedy(3), chotedy(2), chtedy(2), dytedy(2), chtedytar(1), | |
| daltedy(1), dotedy(1), etedy(1), otedyl(1), otedyo(1), qetedy(1), | |
| qoltedy(1), saltedy(1), shotedy(1), tedyol(1), yotedy(1), | |
| ytedykor(1) | |
| teeal(1): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: ot(1), lt(1), qo(1) | |
| contains: oteeal(2), lteeal(1), qoteeal(1) | |
| teear(1): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: et(1), ot(1) | |
| contains: etoteear(1), oteeary(1) | |
| teed(2): (word length: 4 / group items: 40) | |
| length: min=5, max=10, avg=7.2 | |
| top prefixes: ot(9), te(8), qo(7), yt(3), ch(3) | |
| contains: oteedy(100), qoteedy(74), yteedy(28), teedy(13), oteed(8), | |
| lteedy(5), olteedy(3), oteedar(3), qoteed(3), qoteedar(3), | |
| oteedain(2), oteedal(2), teedal(2), teedar(2), cheteedy(1), | |
| choeteedy(1), choteedy(1), eteeda(1), eteedy(1), okeeyteedy(1), | |
| olteedam(1), oshyteed(1), oteedan(1), oteedchey(1), oteedyg(1), | |
| oteedyl(1), qolteedy(1), qoteedaiin(1), qoteeddy(1), qoteedo(1), | |
| soeteed(1), solteedy(1), teedain(1), teedam(1), teedan(1), | |
| teedaram(1), teeolteedy(1), tolteedy(1), yteed(1), yteedar(1) | |
| teedain(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: oteedain(2) | |
| teedal(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: oteedal(2) | |
| teedam(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ol(1) | |
| contains: olteedam(1) | |
| teedan(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: oteedan(1) | |
| teedar(2): (word length: 6 / group items: 4) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ot(1), qo(1), te(1), yt(1) | |
| contains: oteedar(3), qoteedar(3), teedaram(1), yteedar(1) | |
| teedy(13): (word length: 5 / group items: 16) | |
| length: min=6, max=10, avg=7.6 | |
| top prefixes: ot(3), ch(3), qo(2), yt(1), lt(1) | |
| contains: oteedy(100), qoteedy(74), yteedy(28), lteedy(5), olteedy(3), | |
| cheteedy(1), choeteedy(1), choteedy(1), eteedy(1), okeeyteedy(1), | |
| oteedyg(1), oteedyl(1), qolteedy(1), solteedy(1), teeolteedy(1), | |
| tolteedy(1) | |
| teeedy(4): (word length: 6 / group items: 5) | |
| length: min=7, max=13, avg=8.6 | |
| top prefixes: ot(1), qo(1), ch(1), ol(1), yt(1) | |
| contains: oteeedy(3), qoteeedy(3), cheopolteeedy(1), olteeedy(1), | |
| yteeedy(1) | |
| teeey(1): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.3 | |
| top prefixes: qo(2), ot(1), yt(1), ch(1), cs(1) | |
| contains: oteeey(8), qoteeey(4), yteeey(3), choteeey(1), cseteeey(1), | |
| qototeeey(1) | |
| teeo(1): (word length: 4 / group items: 51) | |
| length: min=5, max=11, avg=7.5 | |
| top prefixes: ot(21), te(10), yt(9), qo(7), ch(3) | |
| contains: oteeo(12), oteeody(11), oteeos(10), oteeol(9), yteeody(9), | |
| qoteeody(6), qoteeol(5), teeol(5), oteeor(4), teeody(4), | |
| qoteeo(3), qoteeos(3), teeos(3), yteeo(3), oteeoaly(2), | |
| oteeosy(2), shoteeody(2), teeodaiin(2), cheoteeo(1), | |
| cheoteeodal(1), chteeor(1), oteeod(1), oteeodaiin(1), | |
| oteeodail(1), oteeodalsy(1), oteeodam(1), oteeodar(1), | |
| oteeodl(1), oteeolchor(1), oteeolkeey(1), oteeols(1), oteeoly(1), | |
| oteeosol(1), oteoteeody(1), otyteeodain(1), qoteeod(1), | |
| qoteeotchy(1), qoteeoy(1), teeoar(1), teeodain(1), teeodan(1), | |
| teeolain(1), teeolteedy(1), teeor(1), yteeod(1), yteeodal(1), | |
| yteeoey(1), yteeol(1), yteeoldy(1), yteeor(1), yteeos(1) | |
| teeodaiin(2): (word length: 9 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ot(1) | |
| contains: oteeodaiin(1) | |
| teeodain(1): (word length: 8 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: ot(1) | |
| contains: otyteeodain(1) | |
| teeody(4): (word length: 6 / group items: 5) | |
| length: min=7, max=10, avg=8.2 | |
| top prefixes: ot(2), yt(1), qo(1), sh(1) | |
| contains: oteeody(11), yteeody(9), qoteeody(6), shoteeody(2), | |
| oteoteeody(1) | |
| teeol(5): (word length: 5 / group items: 10) | |
| length: min=6, max=10, avg=7.9 | |
| top prefixes: ot(5), te(2), yt(2), qo(1) | |
| contains: oteeol(9), qoteeol(5), oteeolchor(1), oteeolkeey(1), | |
| oteeols(1), oteeoly(1), teeolain(1), teeolteedy(1), yteeol(1), | |
| yteeoldy(1) | |
| teeor(1): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: ot(1), ch(1), yt(1) | |
| contains: oteeor(4), chteeor(1), yteeor(1) | |
| teeos(3): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ot(3), qo(1), yt(1) | |
| contains: oteeos(10), qoteeos(3), oteeosy(2), oteeosol(1), yteeos(1) | |
| teey(20): (word length: 4 / group items: 31) | |
| length: min=5, max=10, avg=6.7 | |
| top prefixes: ch(6), ot(5), qo(2), ok(2), te(2) | |
| contains: oteey(140), qoteey(42), yteey(28), choteey(7), cheeteey(4), | |
| cheteey(3), chteey(3), dyteey(2), lteey(2), olteey(2), oteeys(2), | |
| aroteey(1), ateey(1), cheoteey(1), chyteey(1), dateey(1), | |
| doteey(1), dsheeoteey(1), eteeys(1), okeoteey(1), okeyteey(1), | |
| oteeykeey(1), oteeykey(1), oteeykshy(1), oyteey(1), qoeteey(1), | |
| qteey(1), sheeteey(1), teeys(1), teoteey(1), yoeteey(1) | |
| teeys(1): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1), et(1) | |
| contains: oteeys(2), eteeys(1) | |
| teo(2): (word length: 3 / group items: 128) | |
| length: min=4, max=14, avg=7.1 | |
| top prefixes: ot(51), te(21), yt(14), qo(12), ch(11) | |
| contains: oteol(42), oteody(39), oteos(29), teol(15), yteody(14), | |
| oteo(13), oteor(12), qoteody(12), qoteol(12), oteodaiin(8), | |
| teody(8), oteodar(7), oteodal(6), yteol(6), qoteo(5), qoteor(5), | |
| oteotey(4), teor(4), choteol(3), oteod(3), teodal(3), teodar(3), | |
| yteor(3), yteos(3), olteody(2), oteoeey(2), oteoldy(2), | |
| oteoly(2), oteom(2), teodaiin(2), yteod(2), alteol(1), | |
| chedyteokain(1), chesokeeoteody(1), choteody(1), choteoky(1), | |
| choteoly(1), choteos(1), chteody(1), chteokeeiin(1), chteor(1), | |
| chyteody(1), dalteoshy(1), dcheoteos(1), doteoda(1), | |
| dteodoiin(1), eteodys(1), eteor(1), lteody(1), oeteody(1), | |
| oeteos(1), oraryteop(1), oteoal(1), oteoaldy(1), oteoarar(1), | |
| oteoc(1), oteochedy(1), oteochey(1), oteochor(1), oteodain(1), | |
| oteodair(1), oteodas(1), oteodched(1), oteodchy(1), oteodl(1), | |
| oteodo(1), oteodshey(1), oteoefol(1), oteofy(1), oteoin(1), | |
| oteokeey(1), oteolain(1), oteolair(1), oteolar(1), oteool(1), | |
| oteoos(1), oteorar(1), oteorom(1), oteory(1), oteosaiin(1), | |
| oteosal(1), oteosdal(1), oteoshaly(1), oteoshey(1), | |
| oteoteeody(1), oteoteotsho(1), oteotor(1), oteoy(1), oteoys(1), | |
| qoteodaiin(1), qoteode(1), qoteold(1), qoteoly(1), qoteoor(1), | |
| qoteos(1), qoteosam(1), qoteotor(1), rteol(1), sheoteoly(1), | |
| sholteol(1), shoteo(1), shoteol(1), shteody(1), soteol(1), | |
| teoar(1), teoda(1), teodain(1), teodarody(1), teodeear(1), | |
| teodeey(1), teodkaiin(1), teodyteytar(1), teoiin(1), | |
| teolkechey(1), teolkedain(1), teols(1), teolshy(1), teos(1), | |
| teoteey(1), yteo(1), yteochy(1), yteodaiin(1), yteodain(1), | |
| yteodam(1), yteokar(1), yteold(1), yteoldy(1), yteoor(1) | |
| teoar(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: oteoarar(1) | |
| teoda(1): (word length: 5 / group items: 16) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: ot(6), te(5), yt(3), do(1), qo(1) | |
| contains: oteodaiin(8), oteodar(7), oteodal(6), teodal(3), teodar(3), | |
| teodaiin(2), doteoda(1), oteodain(1), oteodair(1), oteodas(1), | |
| qoteodaiin(1), teodain(1), teodarody(1), yteodaiin(1), | |
| yteodain(1), yteodam(1) | |
| teodaiin(2): (word length: 8 / group items: 3) | |
| length: min=9, max=10, avg=9.3 | |
| top prefixes: ot(1), qo(1), yt(1) | |
| contains: oteodaiin(8), qoteodaiin(1), yteodaiin(1) | |
| teodain(1): (word length: 7 / group items: 2) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1), yt(1) | |
| contains: oteodain(1), yteodain(1) | |
| teodal(3): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: oteodal(6) | |
| teodar(3): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ot(1), te(1) | |
| contains: oteodar(7), teodarody(1) | |
| teody(8): (word length: 5 / group items: 13) | |
| length: min=6, max=14, avg=7.8 | |
| top prefixes: ch(4), ot(1), yt(1), qo(1), ol(1) | |
| contains: oteody(39), yteody(14), qoteody(12), olteody(2), | |
| chesokeeoteody(1), choteody(1), chteody(1), chyteody(1), | |
| eteodys(1), lteody(1), oeteody(1), shteody(1), teodyteytar(1) | |
| teol(15): (word length: 4 / group items: 24) | |
| length: min=5, max=10, avg=7.0 | |
| top prefixes: ot(6), te(4), qo(3), yt(3), sh(3) | |
| contains: oteol(42), qoteol(12), yteol(6), choteol(3), oteoldy(2), | |
| oteoly(2), alteol(1), choteoly(1), oteolain(1), oteolair(1), | |
| oteolar(1), qoteold(1), qoteoly(1), rteol(1), sheoteoly(1), | |
| sholteol(1), shoteol(1), soteol(1), teolkechey(1), teolkedain(1), | |
| teols(1), teolshy(1), yteold(1), yteoldy(1) | |
| teols(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: te(1) | |
| contains: teolshy(1) | |
| teor(4): (word length: 4 / group items: 8) | |
| length: min=5, max=7, avg=5.9 | |
| top prefixes: ot(4), qo(1), yt(1), ch(1), et(1) | |
| contains: oteor(12), qoteor(5), yteor(3), chteor(1), eteor(1), | |
| oteorar(1), oteorom(1), oteory(1) | |
| teos(1): (word length: 4 / group items: 13) | |
| length: min=5, max=9, avg=7.4 | |
| top prefixes: ot(6), qo(2), yt(1), ch(1), da(1) | |
| contains: oteos(29), yteos(3), choteos(1), dalteoshy(1), dcheoteos(1), | |
| oeteos(1), oteosaiin(1), oteosal(1), oteosdal(1), oteoshaly(1), | |
| oteoshey(1), qoteos(1), qoteosam(1) | |
| tey(11): (word length: 3 / group items: 35) | |
| length: min=4, max=11, avg=6.5 | |
| top prefixes: ch(10), ot(5), sh(5), qo(2), op(2) | |
| contains: otey(57), qotey(24), ytey(13), chotey(9), chetey(5), | |
| oteotey(4), shetey(4), cheotey(2), sheetey(2), sheoltey(2), | |
| sotey(2), arotey(1), atey(1), chctey(1), chedytey(1), | |
| cheeytey(1), cheoltey(1), cheytey(1), choetey(1), chtey(1), | |
| ctey(1), dytey(1), lsheotey(1), oltey(1), opotey(1), | |
| opsheytey(1), oteatey(1), oteydy(1), oteys(1), qoteytyqoky(1), | |
| rcheetey(1), shotey(1), shtey(1), teodyteytar(1), teyteg(1) | |
| theody(1): (word length: 6 / group items: 4) | |
| length: min=7, max=11, avg=8.8 | |
| top prefixes: ct(1), oc(1), fc(1), qo(1) | |
| contains: ctheody(6), octheody(2), fchoctheody(1), qoctheody(1) | |
| toaiin(2): (word length: 6 / group items: 3) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1), dt(1), yt(1) | |
| contains: otoaiin(2), dtoaiin(1), ytoaiin(1) | |
| toar(3): (word length: 4 / group items: 2) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ot(1), yt(1) | |
| contains: otoar(3), ytoar(1) | |
| tocthey(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: qo(1) | |
| contains: qotocthey(1) | |
| tod(4): (word length: 3 / group items: 46) | |
| length: min=4, max=10, avg=6.6 | |
| top prefixes: to(13), ot(10), yt(6), ch(5), qo(4) | |
| contains: otody(14), qotody(11), todaiin(9), ytody(9), tody(8), | |
| otodaiin(5), otodar(3), todal(3), ytodaiin(3), chetody(2), | |
| chtody(2), otodal(2), qotod(2), todain(2), todar(2), chotody(1), | |
| chtod(1), chtodaiin(1), ctody(1), dotody(1), etodaiin(1), | |
| etodaithey(1), kotody(1), otod(1), otodarod(1), otodchy(1), | |
| otodeeeo(1), otodeeodor(1), otodol(1), qotodaiin(1), qotodain(1), | |
| shdytody(1), sotodan(1), tchtod(1), todalain(1), todaly(1), | |
| todaraiily(1), todashx(1), todeeey(1), todky(1), todor(1), | |
| todydy(1), ytod(1), ytoda(1), ytodal(1), ytodaly(1) | |
| todaiin(9): (word length: 7 / group items: 5) | |
| length: min=8, max=9, avg=8.4 | |
| top prefixes: ot(1), yt(1), ch(1), et(1), qo(1) | |
| contains: otodaiin(5), ytodaiin(3), chtodaiin(1), etodaiin(1), | |
| qotodaiin(1) | |
| todain(2): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotodain(1) | |
| todal(3): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.6 | |
| top prefixes: to(2), yt(2), ot(1) | |
| contains: otodal(2), todalain(1), todaly(1), ytodal(1), ytodaly(1) | |
| todaly(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yt(1) | |
| contains: ytodaly(1) | |
| todar(2): (word length: 5 / group items: 3) | |
| length: min=6, max=10, avg=8.0 | |
| top prefixes: ot(2), to(1) | |
| contains: otodar(3), otodarod(1), todaraiily(1) | |
| tody(8): (word length: 4 / group items: 11) | |
| length: min=5, max=8, avg=6.1 | |
| top prefixes: ch(3), ot(1), qo(1), yt(1), ct(1) | |
| contains: otody(14), qotody(11), ytody(9), chetody(2), chtody(2), | |
| chotody(1), ctody(1), dotody(1), kotody(1), shdytody(1), | |
| todydy(1) | |
| toees(3): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.3 | |
| top prefixes: ot(2), qo(1) | |
| contains: otoees(1), otoeeseor(1), qotoees(1) | |
| toiin(2): (word length: 5 / group items: 6) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: yt(1), ot(1), qo(1), ch(1), ct(1) | |
| contains: ytoiin(4), otoiin(3), qotoiin(3), chtoiin(1), ctoiin(1), | |
| oltoiin(1) | |
| tokar(2): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: to(1), yt(1) | |
| contains: tokary(1), ytokar(1) | |
| tokol(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1) | |
| contains: otokol(1) | |
| toky(2): (word length: 4 / group items: 2) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: ot(1), qo(1) | |
| contains: otoky(3), qotoky(1) | |
| tol(48): (word length: 3 / group items: 96) | |
| length: min=4, max=10, avg=7.0 | |
| top prefixes: to(34), ot(29), qo(9), ch(6), yt(5) | |
| contains: otol(86), qotol(47), ytol(12), otoldy(11), otoly(11), | |
| chotol(7), chtol(5), ytoldy(5), chotols(3), shotol(3), | |
| cheotol(2), ctol(2), otolam(2), otolchey(2), otolor(2), | |
| qotolcheo(2), toldy(2), tolkain(2), toly(2), totol(2), atolg(1), | |
| chetolain(1), chtols(1), ctheotol(1), dytoly(1), etolctheol(1), | |
| koltoldy(1), kshotol(1), olytol(1), otolaiin(1), otolaiino(1), | |
| otolarol(1), otolchcthy(1), otolchd(1), otolches(1), otoldos(1), | |
| otoldyl(1), otolfcho(1), otolkshy(1), otolky(1), otoloaiin(1), | |
| otoloaram(1), otolodal(1), otolol(1), otololees(1), otolom(1), | |
| otolopaiin(1), otolosheey(1), otoloty(1), otolsar(1), | |
| otolsheeos(1), otoltopar(1), potol(1), qotolaiin(1), qotolchd(1), | |
| qotolchy(1), qotoldy(1), qotolo(1), qotolol(1), qotoly(1), | |
| shotoly(1), shtol(1), stolpchy(1), tolain(1), tolair(1), | |
| tolchd(1), tolchdaiin(1), tolchedy(1), tolchor(1), tolchory(1), | |
| told(1), toldal(1), toldshy(1), toleeshal(1), tolkal(1), | |
| tolkchdy(1), tolkeeedy(1), tolkeol(1), tolkey(1), tolkshey(1), | |
| tolm(1), tolokeedy(1), tolol(1), tolor(1), tolos(1), tolpchy(1), | |
| tolsasy(1), tolsheo(1), tolsheol(1), tolshey(1), tolshosor(1), | |
| tolshy(1), tolteedy(1), ytolaiin(1), ytolaiir(1), ytolkal(1) | |
| tolain(1): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ch(1) | |
| contains: chetolain(1) | |
| tolchd(1): (word length: 6 / group items: 3) | |
| length: min=7, max=10, avg=8.3 | |
| top prefixes: ot(1), qo(1), to(1) | |
| contains: otolchd(1), qotolchd(1), tolchdaiin(1) | |
| tolchor(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: to(1) | |
| contains: tolchory(1) | |
| told(1): (word length: 4 / group items: 9) | |
| length: min=5, max=8, avg=6.6 | |
| top prefixes: ot(3), to(3), yt(1), ko(1), qo(1) | |
| contains: otoldy(11), ytoldy(5), toldy(2), koltoldy(1), otoldos(1), | |
| otoldyl(1), qotoldy(1), toldal(1), toldshy(1) | |
| toldy(2): (word length: 5 / group items: 5) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: ot(2), yt(1), ko(1), qo(1) | |
| contains: otoldy(11), ytoldy(5), koltoldy(1), otoldyl(1), qotoldy(1) | |
| tolkal(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yt(1) | |
| contains: ytolkal(1) | |
| tolol(1): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.3 | |
| top prefixes: ot(2), qo(1) | |
| contains: otolol(1), otololees(1), qotolol(1) | |
| tolor(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1) | |
| contains: otolor(2) | |
| tolos(1): (word length: 5 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ot(1) | |
| contains: otolosheey(1) | |
| tolpchy(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: st(1) | |
| contains: stolpchy(1) | |
| tolsheo(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: to(1) | |
| contains: tolsheol(1) | |
| toly(2): (word length: 4 / group items: 4) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: ot(1), dy(1), qo(1), sh(1) | |
| contains: otoly(11), dytoly(1), qotoly(1), shotoly(1) | |
| tom(1): (word length: 3 / group items: 5) | |
| length: min=4, max=8, avg=5.4 | |
| top prefixes: qo(2), ch(1), ot(1), yt(1) | |
| contains: chotom(2), otom(1), qotom(1), qotomody(1), ytom(1) | |
| tor(23): (word length: 3 / group items: 38) | |
| length: min=4, max=11, avg=6.7 | |
| top prefixes: ot(16), to(7), yt(5), qo(3), ch(3) | |
| contains: otor(46), qotor(29), ytor(14), chotor(4), otory(4), chtor(2), | |
| torchy(2), toror(2), torshor(2), chtorol(1), dtor(1), dytory(1), | |
| otchotor(1), oteotor(1), otoraiin(1), otorain(1), otoralchy(1), | |
| otoram(1), otorar(1), otorchety(1), otorchy(1), otoreees(1), | |
| otork(1), otorkeol(1), otorsheey(1), otorsheod(1), oytor(1), | |
| qotchytor(1), qoteotor(1), shtor(1), torain(1), torchey(1), | |
| torolshsdy(1), tory(1), ytcheodytor(1), ytorory(1), ytory(1), | |
| ytoryd(1) | |
| torain(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otorain(1) | |
| torchy(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otorchy(1) | |
| toror(2): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yt(1) | |
| contains: ytorory(1) | |
| tory(1): (word length: 4 / group items: 4) | |
| length: min=5, max=6, avg=5.5 | |
| top prefixes: yt(2), ot(1), dy(1) | |
| contains: otory(4), dytory(1), ytory(1), ytoryd(1) | |
| tos(4): (word length: 3 / group items: 14) | |
| length: min=4, max=8, avg=5.3 | |
| top prefixes: ot(5), to(4), ct(1), ch(1), lo(1) | |
| contains: otos(4), ctos(2), tosheo(2), chtos(1), lotos(1), otosaiin(1), | |
| otosey(1), otoshol(1), otosy(1), qotos(1), tosh(1), toshey(1), | |
| toshy(1), ytos(1) | |
| tosh(1): (word length: 4 / group items: 4) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: to(3), ot(1) | |
| contains: tosheo(2), otoshol(1), toshey(1), toshy(1) | |
| toy(5): (word length: 3 / group items: 7) | |
| length: min=4, max=7, avg=5.3 | |
| top prefixes: ot(2), qo(1), yt(1), ch(1), oy(1) | |
| contains: otoy(3), qotoy(2), ytoy(2), choctoy(1), otoydy(1), oytoyd(1), | |
| potoy(1) | |
| tsh(1): (word length: 3 / group items: 96) | |
| length: min=4, max=11, avg=6.8 | |
| top prefixes: ts(42), ot(20), qo(7), ch(7), yt(4) | |
| contains: otshedy(13), tshey(9), tshedy(8), otshey(7), tshol(6), | |
| qotshy(5), tsho(5), tshy(5), otshy(4), tshdy(4), tshor(4), | |
| otshdy(3), qotshdy(3), qotshedy(3), qotshey(3), ytshy(3), | |
| chotshol(2), oltshey(2), otsho(2), otshol(2), qotsheod(2), | |
| shtshy(2), tshdol(2), tshed(2), tshedar(2), tsheeor(2), | |
| tsheody(2), tshod(2), ytshedy(2), ytsho(2), chetshedy(1), | |
| chetshy(1), chotshe(1), chotshy(1), chtshar(1), chtshy(1), | |
| doltshdy(1), dtshol(1), dytshedy(1), dytshy(1), ltsholy(1), | |
| oltshedy(1), oltsho(1), oltshsey(1), oschotshl(1), | |
| oteoteotsho(1), otsh(1), otshaiin(1), otshal(1), otshchor(1), | |
| otshealkar(1), otsheey(1), otsheo(1), otsheody(1), otshes(1), | |
| otshor(1), otshs(1), otshsaiin(1), otshshdy(1), qotsh(1), | |
| qotshol(1), shetshdy(1), shetsho(1), shotshy(1), stsheol(1), | |
| tchotshey(1), tshaiin(1), tshaly(1), tshar(1), tshdar(1), | |
| tshdcsey(1), tshedain(1), tshedal(1), tshedky(1), tshedor(1), | |
| tsheed(1), tsheey(1), tsheoarom(1), tsheodal(1), tsheodar(1), | |
| tsheodl(1), tsheokeedy(1), tsheos(1), tshes(1), tshoar(1), | |
| tshodaiin(1), tshodair(1), tshodeesy(1), tshodody(1), tshodpy(1), | |
| tshoiin(1), tshokeody(1), tshoky(1), tsholdy(1), tsholol(1), | |
| ytsheod(1) | |
| tshaiin(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otshaiin(1) | |
| tshar(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ch(1) | |
| contains: chtshar(1) | |
| tshdy(4): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: ot(1), qo(1), do(1), sh(1) | |
| contains: otshdy(3), qotshdy(3), doltshdy(1), shetshdy(1) | |
| tshed(2): (word length: 5 / group items: 12) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: ts(6), ot(1), qo(1), yt(1), ch(1) | |
| contains: otshedy(13), tshedy(8), qotshedy(3), tshedar(2), ytshedy(2), | |
| chetshedy(1), dytshedy(1), oltshedy(1), tshedain(1), tshedal(1), | |
| tshedky(1), tshedor(1) | |
| tshedy(8): (word length: 6 / group items: 6) | |
| length: min=7, max=9, avg=7.8 | |
| top prefixes: ot(1), qo(1), yt(1), ch(1), dy(1) | |
| contains: otshedy(13), qotshedy(3), ytshedy(2), chetshedy(1), | |
| dytshedy(1), oltshedy(1) | |
| tsheey(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ot(1) | |
| contains: otsheey(1) | |
| tsheody(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ot(1) | |
| contains: otsheody(1) | |
| tshes(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1) | |
| contains: otshes(1) | |
| tshey(9): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: ot(1), qo(1), ol(1), tc(1) | |
| contains: otshey(7), qotshey(3), oltshey(2), tchotshey(1) | |
| tsho(5): (word length: 4 / group items: 25) | |
| length: min=5, max=11, avg=6.9 | |
| top prefixes: ts(14), ot(4), ch(1), yt(1), dt(1) | |
| contains: tshol(6), tshor(4), chotshol(2), otsho(2), otshol(2), | |
| tshod(2), ytsho(2), dtshol(1), ltsholy(1), oltsho(1), | |
| oteoteotsho(1), otshor(1), qotshol(1), shetsho(1), tshoar(1), | |
| tshodaiin(1), tshodair(1), tshodeesy(1), tshodody(1), tshodpy(1), | |
| tshoiin(1), tshokeody(1), tshoky(1), tsholdy(1), tsholol(1) | |
| tshod(2): (word length: 5 / group items: 5) | |
| length: min=7, max=9, avg=8.2 | |
| top prefixes: ts(5) | |
| contains: tshodaiin(1), tshodair(1), tshodeesy(1), tshodody(1), | |
| tshodpy(1) | |
| tshol(6): (word length: 5 / group items: 7) | |
| length: min=6, max=8, avg=6.9 | |
| top prefixes: ts(2), ch(1), ot(1), dt(1), lt(1) | |
| contains: chotshol(2), otshol(2), dtshol(1), ltsholy(1), qotshol(1), | |
| tsholdy(1), tsholol(1) | |
| tshor(4): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ot(1) | |
| contains: otshor(1) | |
| tshy(5): (word length: 4 / group items: 9) | |
| length: min=5, max=7, avg=6.1 | |
| top prefixes: ch(3), sh(2), qo(1), ot(1), yt(1) | |
| contains: qotshy(5), otshy(4), ytshy(3), shtshy(2), chetshy(1), | |
| chotshy(1), chtshy(1), dytshy(1), shotshy(1) | |
| tydy(2): (word length: 4 / group items: 7) | |
| length: min=5, max=8, avg=6.0 | |
| top prefixes: ot(1), ol(1), ch(1), dy(1), qo(1) | |
| contains: otydy(3), oltydy(2), cheotydy(1), dytydy(1), qotydy(1), | |
| rotydy(1), ytydy(1) | |
| xar(2): (word length: 3 / group items: 4) | |
| length: min=4, max=6, avg=4.8 | |
| top prefixes: ch(1), dx(1), ox(1), sa(1) | |
| contains: chxar(1), dxar(1), oxar(1), salxar(1) | |
| xor(1): (word length: 3 / group items: 4) | |
| length: min=4, max=5, avg=4.2 | |
| top prefixes: ar(1), ax(1), lx(1), ox(1) | |
| contains: arxor(1), axor(1), lxor(1), oxor(1) | |
| yaiin(6): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=7.2 | |
| top prefixes: cf(1), ct(1), dy(1), op(1) | |
| contains: cfhyaiin(1), cthyaiin(1), dyaiin(1), opyaiin(1) | |
| yaiir(2): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: sy(1) | |
| contains: syaiir(1) | |
| yair(2): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: dy(1) | |
| contains: dyair(1) | |
| yal(1): (word length: 3 / group items: 1) | |
| length: min=4, max=4, avg=4.0 | |
| top prefixes: ya(1) | |
| contains: yaly(1) | |
| yar(2): (word length: 3 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qotddyar(1) | |
| ychdy(2): (word length: 5 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ot(1), qo(1) | |
| contains: otychdy(1), qokychdy(1) | |
| ychear(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dy(1) | |
| contains: dychear(1) | |
| yched(3): (word length: 5 / group items: 7) | |
| length: min=6, max=9, avg=7.1 | |
| top prefixes: yc(6), dy(1) | |
| contains: ychedy(13), ychedar(4), dychedy(2), ychedaiin(2), ychedal(2), | |
| ychedain(1), ychedl(1) | |
| ychedy(13): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dy(1) | |
| contains: dychedy(2) | |
| ycheedy(7): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: ot(1) | |
| contains: otycheedy(1) | |
| ycheeo(8): (word length: 6 / group items: 6) | |
| length: min=7, max=11, avg=8.3 | |
| top prefixes: yc(6) | |
| contains: ycheeody(2), ycheeodaiin(1), ycheeodain(1), ycheeol(1), | |
| ycheeor(1), ycheeoy(1) | |
| ycheey(24): (word length: 6 / group items: 2) | |
| length: min=9, max=13, avg=11.0 | |
| top prefixes: yc(2) | |
| contains: ycheeytal(1), ycheeytydaiin(1) | |
| ychek(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yc(1) | |
| contains: ychekchy(2) | |
| ycheo(15): (word length: 5 / group items: 16) | |
| length: min=6, max=11, avg=7.4 | |
| top prefixes: yc(15), fc(1) | |
| contains: ycheol(14), ycheor(9), ycheody(3), ycheoky(3), ycheod(2), | |
| fchodycheol(1), ycheoar(1), ycheochy(1), ycheockhy(1), | |
| ycheodain(1), ycheolk(1), ycheom(1), ycheool(1), ycheoraiin(1), | |
| ycheos(1), ycheoto(1) | |
| ycheod(2): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: yc(2) | |
| contains: ycheody(3), ycheodain(1) | |
| ycheol(14): (word length: 6 / group items: 2) | |
| length: min=7, max=11, avg=9.0 | |
| top prefixes: fc(1), yc(1) | |
| contains: fchodycheol(1), ycheolk(1) | |
| ycheor(9): (word length: 6 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: yc(1) | |
| contains: ycheoraiin(1) | |
| ychey(17): (word length: 5 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: of(1), ot(1) | |
| contains: ofychey(1), otychey(1) | |
| ycho(5): (word length: 4 / group items: 20) | |
| length: min=5, max=9, avg=6.9 | |
| top prefixes: yc(15), dy(1), lp(1), pd(1), py(1) | |
| contains: ychor(16), ychol(12), ychocthy(2), ychody(2), dychokchy(1), | |
| lpychol(1), pdychoiin(1), pychory(1), rychos(1), ychockaey(1), | |
| ychockhy(1), ychodaiin(1), ychoees(1), ychok(1), ychom(1), | |
| ychoopy(1), ychopordg(1), ychos(1), ychosar(1), ychoy(1) | |
| ychok(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: dy(1) | |
| contains: dychokchy(1) | |
| ychol(12): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: lp(1) | |
| contains: lpychol(1) | |
| ychor(16): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: py(1) | |
| contains: pychory(1) | |
| ychos(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ry(1), yc(1) | |
| contains: rychos(1), ychosar(1) | |
| ychy(4): (word length: 4 / group items: 5) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: dy(1), pc(1), yc(1), yk(1), yt(1) | |
| contains: dychy(1), pchofychy(1), ychykchy(1), ykychy(1), ytychy(1) | |
| ydaiin(21): (word length: 6 / group items: 6) | |
| length: min=7, max=13, avg=9.2 | |
| top prefixes: qo(2), op(1), py(1), sh(1), yc(1) | |
| contains: opydaiin(3), pydaiin(2), qofydaiin(1), qopydaiin(1), | |
| shfydaiin(1), ycheeytydaiin(1) | |
| ydain(5): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: ky(2), dy(1) | |
| contains: dydain(1), kydain(1), kydainy(1) | |
| ydair(2): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yd(1) | |
| contains: ydairol(1) | |
| ydal(3): (word length: 4 / group items: 7) | |
| length: min=5, max=9, avg=6.6 | |
| top prefixes: py(2), da(1), of(1), ot(1), sh(1) | |
| contains: dalydal(1), ofyskydal(1), otydal(1), pydaly(1), pykydal(1), | |
| shydal(1), ydals(1) | |
| ydar(2): (word length: 4 / group items: 9) | |
| length: min=5, max=9, avg=7.6 | |
| top prefixes: yd(3), dy(1), od(1), ot(1), oy(1) | |
| contains: dydariin(1), odalydary(1), otydary(1), oydar(1), shorydar(1), | |
| sydarary(1), ydaraishy(1), ydaral(1), ydarchom(1) | |
| ydas(1): (word length: 4 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: dy(1) | |
| contains: dydas(1) | |
| ydl(1): (word length: 3 / group items: 1) | |
| length: min=5, max=5, avg=5.0 | |
| top prefixes: ty(1) | |
| contains: tydlo(1) | |
| ydy(8): (word length: 3 / group items: 41) | |
| length: min=4, max=8, avg=5.9 | |
| top prefixes: ch(5), dy(4), ot(3), qo(3), sh(2) | |
| contains: dydy(3), otydy(3), chydy(2), dydydy(2), okydy(2), oltydy(2), | |
| opydy(2), qokydy(2), sydy(2), tydy(2), aldydy(1), araydy(1), | |
| chedydy(1), cheotydy(1), chofydy(1), choshydy(1), ckhydy(1), | |
| cphydy(1), dairydy(1), dchydy(1), dydyd(1), dytydy(1), eesydy(1), | |
| fydy(1), kchydy(1), kedydy(1), ofydy(1), oteydy(1), otoydy(1), | |
| qokedydy(1), qotydy(1), rotydy(1), sarydy(1), shdydy(1), | |
| shekydy(1), soydy(1), tchedydy(1), todydy(1), ydys(1), ykeydy(1), | |
| ytydy(1) | |
| yees(1): (word length: 4 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okyeeshy(1) | |
| yfchdy(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dy(1) | |
| contains: dyfchdy(1) | |
| yfchedy(1): (word length: 7 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: sa(1) | |
| contains: sayfchedy(1) | |
| yfchy(1): (word length: 5 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: chckhyfchy(1) | |
| yka(1): (word length: 3 / group items: 51) | |
| length: min=4, max=10, avg=6.5 | |
| top prefixes: yk(31), ch(7), sh(5), dy(3), sy(2) | |
| contains: ykaiin(45), ykar(36), ykal(16), ykain(10), ykair(8), ykaly(6), | |
| ykam(5), dykaiin(3), chykar(2), ykaiir(2), ykaipy(2), | |
| ykykaiin(2), chedykar(1), cheeykam(1), cheykaiin(1), cheykain(1), | |
| chykaiin(1), chykald(1), dykain(1), dykaly(1), fdykain(1), | |
| pchykar(1), qykaiin(1), shdykairy(1), shedykain(1), | |
| sheykaiiin(1), sheykal(1), shykaiin(1), sykaiin(1), sykar(1), | |
| ykady(1), ykaiiin(1), ykaiil(1), ykail(1), ykairaiin(1), | |
| ykairolky(1), ykaky(1), ykald(1), ykaldy(1), ykalkain(1), | |
| ykalo(1), ykalokain(1), ykan(1), ykanam(1), ykarain(1), | |
| ykaras(1), ykaro(1), ykarshy(1), ykas(1), ykay(1), ykyka(1) | |
| ykaiiin(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: sh(1) | |
| contains: sheykaiiin(1) | |
| ykaiin(45): (word length: 6 / group items: 7) | |
| length: min=7, max=9, avg=7.7 | |
| top prefixes: ch(2), dy(1), yk(1), qy(1), sh(1) | |
| contains: dykaiin(3), ykykaiin(2), cheykaiin(1), chykaiin(1), | |
| qykaiin(1), shykaiin(1), sykaiin(1) | |
| ykain(10): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ch(1), dy(1), fd(1), sh(1) | |
| contains: cheykain(1), dykain(1), fdykain(1), shedykain(1) | |
| ykair(8): (word length: 5 / group items: 3) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: yk(2), sh(1) | |
| contains: shdykairy(1), ykairaiin(1), ykairolky(1) | |
| ykal(16): (word length: 4 / group items: 9) | |
| length: min=5, max=9, avg=6.4 | |
| top prefixes: yk(6), ch(1), dy(1), sh(1) | |
| contains: ykaly(6), chykald(1), dykaly(1), sheykal(1), ykald(1), | |
| ykaldy(1), ykalkain(1), ykalo(1), ykalokain(1) | |
| ykald(1): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: ch(1), yk(1) | |
| contains: chykald(1), ykaldy(1) | |
| ykalo(1): (word length: 5 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: yk(1) | |
| contains: ykalokain(1) | |
| ykaly(6): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: dy(1) | |
| contains: dykaly(1) | |
| ykam(5): (word length: 4 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: cheeykam(1) | |
| ykan(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: yk(1) | |
| contains: ykanam(1) | |
| ykar(36): (word length: 4 / group items: 8) | |
| length: min=5, max=8, avg=6.4 | |
| top prefixes: yk(4), ch(2), pc(1), sy(1) | |
| contains: chykar(2), chedykar(1), pchykar(1), sykar(1), ykarain(1), | |
| ykaras(1), ykaro(1), ykarshy(1) | |
| ykch(1): (word length: 4 / group items: 51) | |
| length: min=5, max=11, avg=7.4 | |
| top prefixes: yk(34), ch(4), dy(2), dc(2), lk(1) | |
| contains: ykchy(22), ykchdy(8), ykchedy(7), ykchey(6), ykcho(6), | |
| ykchol(6), ykchor(5), ykchody(4), chykchy(3), ykcheor(3), | |
| dykchy(2), ykchs(2), chdykchedy(1), chodykchy(1), chykchr(1), | |
| dchsykchy(1), dchykchy(1), dykchal(1), lkshykchy(1), | |
| okeeeykchy(1), otykchs(1), oykchor(1), qykchey(1), rfchykchey(1), | |
| scseykcheol(1), tchykchy(1), ychykchy(1), ykchaiin(1), ykchal(1), | |
| ykchdar(1), ykchdg(1), ykched(1), ykchedain(1), ykchedor(1), | |
| ykcheg(1), ykcheodain(1), ykcheody(1), ykcheshd(1), ykchhdy(1), | |
| ykchn(1), ykchochdy(1), ykchokeo(1), ykcholqod(1), ykcholy(1), | |
| ykchom(1), ykchon(1), ykchos(1), ykchotchy(1), ykchscheg(1), | |
| ykchyr(1), ykchys(1) | |
| ykchal(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dy(1) | |
| contains: dykchal(1) | |
| ykched(1): (word length: 6 / group items: 4) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: yk(3), ch(1) | |
| contains: ykchedy(7), chdykchedy(1), ykchedain(1), ykchedor(1) | |
| ykchedy(7): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: chdykchedy(1) | |
| ykchey(6): (word length: 6 / group items: 2) | |
| length: min=7, max=10, avg=8.5 | |
| top prefixes: qy(1), rf(1) | |
| contains: qykchey(1), rfchykchey(1) | |
| ykcho(6): (word length: 5 / group items: 12) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: yk(11), oy(1) | |
| contains: ykchol(6), ykchor(5), ykchody(4), oykchor(1), ykchochdy(1), | |
| ykchokeo(1), ykcholqod(1), ykcholy(1), ykchom(1), ykchon(1), | |
| ykchos(1), ykchotchy(1) | |
| ykchol(6): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: yk(2) | |
| contains: ykcholqod(1), ykcholy(1) | |
| ykchor(5): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: oy(1) | |
| contains: oykchor(1) | |
| ykchs(2): (word length: 5 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: ot(1), yk(1) | |
| contains: otykchs(1), ykchscheg(1) | |
| ykchy(22): (word length: 5 / group items: 11) | |
| length: min=6, max=10, avg=7.8 | |
| top prefixes: ch(2), dc(2), yk(2), dy(1), lk(1) | |
| contains: chykchy(3), dykchy(2), chodykchy(1), dchsykchy(1), | |
| dchykchy(1), lkshykchy(1), okeeeykchy(1), tchykchy(1), | |
| ychykchy(1), ykchyr(1), ykchys(1) | |
| ykechey(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: cheykechey(1) | |
| ykecho(2): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: yk(2) | |
| contains: ykechod(1), ykechody(1) | |
| ykechod(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yk(1) | |
| contains: ykechody(1) | |
| ykeda(1): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: yk(2) | |
| contains: ykedaiin(1), ykedar(1) | |
| ykedy(23): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: dy(1), ch(1), py(1) | |
| contains: dykedy(2), cheykedy(1), pykedy(1) | |
| ykeea(1): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.2 | |
| top prefixes: yk(4) | |
| contains: ykeear(2), ykeealar(1), ykeealkey(1), ykeeam(1) | |
| ykeed(1): (word length: 5 / group items: 10) | |
| length: min=6, max=9, avg=7.4 | |
| top prefixes: yk(6), dy(2), ch(1), oy(1) | |
| contains: ykeedy(30), dykeedy(2), ykeedain(2), chykeedy(1), | |
| dykeedain(1), oykeedy(1), ykeedaiin(1), ykeedal(1), ykeedar(1), | |
| ykeedl(1) | |
| ykeedain(2): (word length: 8 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: dy(1) | |
| contains: dykeedain(1) | |
| ykeedy(30): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.3 | |
| top prefixes: dy(1), ch(1), oy(1) | |
| contains: dykeedy(2), chykeedy(1), oykeedy(1) | |
| ykeeey(6): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qo(1) | |
| contains: qoykeeey(1) | |
| ykeeo(7): (word length: 5 / group items: 14) | |
| length: min=6, max=10, avg=7.4 | |
| top prefixes: yk(12), ch(1), qy(1) | |
| contains: ykeeol(13), ykeeody(12), ykeeor(4), ykeeos(3), ykeeod(2), | |
| cheykeeoy(1), qykeeody(1), ykeeochody(1), ykeeodain(1), | |
| ykeeodam(1), ykeeodey(1), ykeeols(1), ykeeoly(1), ykeeory(1) | |
| ykeeod(2): (word length: 6 / group items: 5) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: yk(4), qy(1) | |
| contains: ykeeody(12), qykeeody(1), ykeeodain(1), ykeeodam(1), | |
| ykeeodey(1) | |
| ykeeody(12): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: qy(1) | |
| contains: qykeeody(1) | |
| ykeeol(13): (word length: 6 / group items: 2) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yk(2) | |
| contains: ykeeols(1), ykeeoly(1) | |
| ykeeor(4): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yk(1) | |
| contains: ykeeory(1) | |
| ykees(4): (word length: 5 / group items: 3) | |
| length: min=7, max=9, avg=7.7 | |
| top prefixes: yk(3) | |
| contains: ykeeshy(2), ykeesan(1), ykeeshedy(1) | |
| ykeey(58): (word length: 5 / group items: 6) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: ot(2), oy(1), qe(1), qo(1), yk(1) | |
| contains: oteeykeey(1), otykeey(1), oykeey(1), qeykeey(1), qoykeey(1), | |
| ykeeykeey(1) | |
| ykeo(3): (word length: 4 / group items: 21) | |
| length: min=5, max=12, avg=7.0 | |
| top prefixes: yk(16), ch(1), dy(1), py(1), qo(1) | |
| contains: ykeody(16), ykeol(15), ykeor(8), ykeos(3), ykeodar(2), | |
| ykeols(2), chykeor(1), dykeor(1), pykeor(1), qoekeeykeody(1), | |
| shykeody(1), ykeockhey(1), ykeod(1), ykeoda(1), ykeodaiin(1), | |
| ykeodain(1), ykeoees(1), ykeoeshy(1), ykeolal(1), ykeoldy(1), | |
| ykeoshe(1) | |
| ykeod(1): (word length: 5 / group items: 7) | |
| length: min=6, max=12, avg=8.0 | |
| top prefixes: yk(5), qo(1), sh(1) | |
| contains: ykeody(16), ykeodar(2), qoekeeykeody(1), shykeody(1), | |
| ykeoda(1), ykeodaiin(1), ykeodain(1) | |
| ykeoda(1): (word length: 6 / group items: 3) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: yk(3) | |
| contains: ykeodar(2), ykeodaiin(1), ykeodain(1) | |
| ykeody(16): (word length: 6 / group items: 2) | |
| length: min=8, max=12, avg=10.0 | |
| top prefixes: qo(1), sh(1) | |
| contains: qoekeeykeody(1), shykeody(1) | |
| ykeol(15): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.7 | |
| top prefixes: yk(3) | |
| contains: ykeols(2), ykeolal(1), ykeoldy(1) | |
| ykeor(8): (word length: 5 / group items: 3) | |
| length: min=6, max=7, avg=6.3 | |
| top prefixes: ch(1), dy(1), py(1) | |
| contains: chykeor(1), dykeor(1), pykeor(1) | |
| ykeos(3): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yk(1) | |
| contains: ykeoshe(1) | |
| ykes(1): (word length: 4 / group items: 3) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: yk(3) | |
| contains: ykesheo(1), ykeshy(1), ykesodarar(1) | |
| ykey(8): (word length: 4 / group items: 10) | |
| length: min=5, max=9, avg=6.8 | |
| top prefixes: ch(2), yk(2), dc(1), dy(1), op(1) | |
| contains: chykey(2), cheykey(1), dchykey(1), dykey(1), opykey(1), | |
| oteeykey(1), qodykey(1), shedykeyl(1), ykeydom(1), ykeydy(1) | |
| ykl(1): (word length: 3 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yk(1) | |
| contains: ykledey(1) | |
| ykol(14): (word length: 4 / group items: 10) | |
| length: min=5, max=10, avg=7.1 | |
| top prefixes: yk(8), ch(1), ot(1) | |
| contains: ykoly(2), chkchykoly(1), otykol(1), ykolaiin(1), ykolairol(1), | |
| ykoldam(1), ykoldy(1), ykolody(1), ykoloin(1), ykolor(1) | |
| ykoly(2): (word length: 5 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: chkchykoly(1) | |
| ykoo(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: yk(1) | |
| contains: ykooar(1) | |
| ykor(11): (word length: 4 / group items: 2) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: yk(1), yt(1) | |
| contains: ykory(1), ytedykor(1) | |
| yksh(1): (word length: 4 / group items: 9) | |
| length: min=5, max=9, avg=6.4 | |
| top prefixes: yk(6), dy(1), ot(1), oy(1) | |
| contains: yksheol(2), ykshy(2), dykshy(1), oteeykshy(1), oykshy(1), | |
| ykshedy(1), yksheey(1), yksho(1), ykshol(1) | |
| yksho(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: yk(1) | |
| contains: ykshol(1) | |
| ykshy(2): (word length: 5 / group items: 3) | |
| length: min=6, max=9, avg=7.0 | |
| top prefixes: dy(1), ot(1), oy(1) | |
| contains: dykshy(1), oteeykshy(1), oykshy(1) | |
| yky(18): (word length: 3 / group items: 18) | |
| length: min=4, max=8, avg=5.9 | |
| top prefixes: yk(5), ch(2), ot(2), qo(2), dy(1) | |
| contains: chyky(6), dyky(5), cheyky(3), ykykaiin(2), daikhyky(1), | |
| dchyky(1), kolyky(1), otchyky(1), otyky(1), pykydal(1), | |
| qokchyky(1), qoyky(1), sheyky(1), syky(1), ykychy(1), ykyd(1), | |
| ykyka(1), ykyral(1) | |
| ykyd(1): (word length: 4 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: py(1) | |
| contains: pykydal(1) | |
| ykyka(1): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yk(1) | |
| contains: ykykaiin(2) | |
| ylor(1): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: ok(1) | |
| contains: okylor(1) | |
| yly(2): (word length: 3 / group items: 5) | |
| length: min=4, max=9, avg=6.0 | |
| top prefixes: ot(2), ar(1), ok(1), sy(1) | |
| contains: aryly(1), okchedyly(1), otaryly(1), otyly(1), syly(1) | |
| yokal(1): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yo(1) | |
| contains: yokalod(1) | |
| yokeey(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sh(1) | |
| contains: shyokeey(1) | |
| yol(2): (word length: 3 / group items: 4) | |
| length: min=4, max=8, avg=6.0 | |
| top prefixes: yo(3), te(1) | |
| contains: tedyol(1), yolkol(1), yols(1), yolsheey(1) | |
| yols(1): (word length: 4 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yo(1) | |
| contains: yolsheey(1) | |
| yor(2): (word length: 3 / group items: 4) | |
| length: min=6, max=7, avg=6.2 | |
| top prefixes: ch(2), yo(2) | |
| contains: chedyor(1), cheyor(1), yorain(1), yoraly(1) | |
| ypaiin(3): (word length: 6 / group items: 1) | |
| length: min=11, max=11, avg=11.0 | |
| top prefixes: fc(1) | |
| contains: fchedypaiin(1) | |
| ypal(2): (word length: 4 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chypaldy(1) | |
| ypch(1): (word length: 4 / group items: 36) | |
| length: min=5, max=15, avg=7.6 | |
| top prefixes: yp(26), ch(3), qo(2), dy(1), ot(1) | |
| contains: ypchedy(12), ypchdy(6), ypchey(5), ypchy(4), ypchol(3), | |
| ypchor(2), chypcham(1), chypchey(1), chypchy(1), dypchy(1), | |
| otcheypchedy(1), qopchypcho(1), qoypchol(1), shypchedy(1), | |
| typchey(1), ypchaiin(1), ypchal(1), ypchar(1), ypchd(1), | |
| ypchdaiin(1), ypchdair(1), ypchdar(1), ypcheddy(1), ypchedpy(1), | |
| ypcheedy(1), ypcheeey(1), ypcheey(1), ypcheg(1), ypcher(1), | |
| ypchery(1), ypchocfy(1), ypchocpheosaiin(1), ypcholdy(1), | |
| ypcholy(1), ypchseds(1), yteechypchy(1) | |
| ypchd(1): (word length: 5 / group items: 4) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: yp(4) | |
| contains: ypchdy(6), ypchdaiin(1), ypchdair(1), ypchdar(1) | |
| ypchedy(12): (word length: 7 / group items: 2) | |
| length: min=9, max=12, avg=10.5 | |
| top prefixes: ot(1), sh(1) | |
| contains: otcheypchedy(1), shypchedy(1) | |
| ypcher(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yp(1) | |
| contains: ypchery(1) | |
| ypchey(5): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ch(1), ty(1) | |
| contains: chypchey(1), typchey(1) | |
| ypchol(3): (word length: 6 / group items: 3) | |
| length: min=7, max=8, avg=7.7 | |
| top prefixes: yp(2), qo(1) | |
| contains: qoypchol(1), ypcholdy(1), ypcholy(1) | |
| ypchy(4): (word length: 5 / group items: 3) | |
| length: min=6, max=11, avg=8.0 | |
| top prefixes: ch(1), dy(1), yt(1) | |
| contains: chypchy(1), dypchy(1), yteechypchy(1) | |
| ypod(1): (word length: 4 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yp(1) | |
| contains: ypodaiin(1) | |
| ypshedy(1): (word length: 7 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ch(1) | |
| contains: choypshedy(1) | |
| yry(1): (word length: 3 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: da(1) | |
| contains: daryry(1) | |
| ysaiin(4): (word length: 6 / group items: 1) | |
| length: min=9, max=9, avg=9.0 | |
| top prefixes: py(1) | |
| contains: pysaiinor(1) | |
| yshe(1): (word length: 4 / group items: 33) | |
| length: min=5, max=10, avg=6.9 | |
| top prefixes: ys(28), sy(2), qo(1), fy(1), oy(1) | |
| contains: yshey(12), yshedy(10), ysheey(10), ysheedy(6), ysheor(4), | |
| qotyshey(2), ysheeo(2), ysheeody(2), ysheo(2), ysheod(2), | |
| fyshey(1), oyshey(1), syshees(1), sysheos(1), ysheal(1), | |
| yshealdy(1), yshealkair(1), yshear(1), yshedaiin(1), yshedair(1), | |
| ysheed(1), ysheedal(1), ysheees(1), ysheeoaiin(1), ysheeod(1), | |
| yshees(1), ysheoar(1), ysheockhy(1), ysheody(1), ysheol(1), | |
| ysheos(1), yshesos(1), yshesy(1) | |
| ysheal(1): (word length: 6 / group items: 2) | |
| length: min=8, max=10, avg=9.0 | |
| top prefixes: ys(2) | |
| contains: yshealdy(1), yshealkair(1) | |
| ysheed(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: ys(2) | |
| contains: ysheedy(6), ysheedal(1) | |
| ysheeo(2): (word length: 6 / group items: 3) | |
| length: min=7, max=10, avg=8.3 | |
| top prefixes: ys(3) | |
| contains: ysheeody(2), ysheeoaiin(1), ysheeod(1) | |
| ysheeod(1): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ys(1) | |
| contains: ysheeody(2) | |
| yshees(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sy(1) | |
| contains: syshees(1) | |
| ysheo(2): (word length: 5 / group items: 8) | |
| length: min=6, max=9, avg=6.8 | |
| top prefixes: ys(7), sy(1) | |
| contains: ysheor(4), ysheod(2), sysheos(1), ysheoar(1), ysheockhy(1), | |
| ysheody(1), ysheol(1), ysheos(1) | |
| ysheod(2): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: ys(1) | |
| contains: ysheody(1) | |
| ysheos(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: sy(1) | |
| contains: sysheos(1) | |
| yshey(12): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=6.7 | |
| top prefixes: qo(1), fy(1), oy(1) | |
| contains: qotyshey(2), fyshey(1), oyshey(1) | |
| ysho(3): (word length: 4 / group items: 9) | |
| length: min=5, max=8, avg=6.2 | |
| top prefixes: ys(6), sh(2), dy(1) | |
| contains: yshol(2), yshor(2), dyshol(1), shysho(1), shyshol(1), | |
| yshoain(1), yshoiin(1), ysholshy(1), yshos(1) | |
| yshol(2): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: dy(1), sh(1), ys(1) | |
| contains: dyshol(1), shyshol(1), ysholshy(1) | |
| yshy(1): (word length: 4 / group items: 3) | |
| length: min=5, max=7, avg=6.0 | |
| top prefixes: ot(1), oy(1), po(1) | |
| contains: otyshy(1), oyshy(1), polyshy(1) | |
| yta(1): (word length: 3 / group items: 37) | |
| length: min=4, max=11, avg=6.4 | |
| top prefixes: yt(24), ch(3), dy(3), ok(2), ot(1) | |
| contains: ytaiin(43), ytar(26), ytal(19), ytain(13), ytam(13), ytaly(5), | |
| ytair(3), otytam(2), cheytal(1), chtedytar(1), chytaroiin(1), | |
| dalkalytam(1), dcheytain(1), dytain(1), dytal(1), dytary(1), | |
| okeytam(1), okytaiin(1), teodyteytar(1), ycheeytal(1), ytaiim(1), | |
| ytaiir(1), ytaim(1), ytaipom(1), ytairal(1), ytalar(1), | |
| ytalchos(1), ytalody(1), ytapy(1), ytarar(1), ytarem(1), | |
| ytarody(1), ytary(1), ytas(1), ytasal(1), ytashy(1), ytasr(1) | |
| ytaiin(43): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ok(1) | |
| contains: okytaiin(1) | |
| ytain(13): (word length: 5 / group items: 2) | |
| length: min=6, max=9, avg=7.5 | |
| top prefixes: dc(1), dy(1) | |
| contains: dcheytain(1), dytain(1) | |
| ytair(3): (word length: 5 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yt(1) | |
| contains: ytairal(1) | |
| ytal(19): (word length: 4 / group items: 7) | |
| length: min=5, max=9, avg=6.7 | |
| top prefixes: yt(4), ch(1), dy(1), yc(1) | |
| contains: ytaly(5), cheytal(1), dytal(1), ycheeytal(1), ytalar(1), | |
| ytalchos(1), ytalody(1) | |
| ytam(13): (word length: 4 / group items: 3) | |
| length: min=6, max=10, avg=7.7 | |
| top prefixes: ot(1), da(1), ok(1) | |
| contains: otytam(2), dalkalytam(1), okeytam(1) | |
| ytar(26): (word length: 4 / group items: 8) | |
| length: min=5, max=11, avg=7.5 | |
| top prefixes: yt(4), ch(2), dy(1), te(1) | |
| contains: chtedytar(1), chytaroiin(1), dytary(1), teodyteytar(1), | |
| ytarar(1), ytarem(1), ytarody(1), ytary(1) | |
| ytary(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: dy(1) | |
| contains: dytary(1) | |
| ytas(1): (word length: 4 / group items: 3) | |
| length: min=5, max=6, avg=5.7 | |
| top prefixes: yt(3) | |
| contains: ytasal(1), ytashy(1), ytasr(1) | |
| ytch(1): (word length: 4 / group items: 42) | |
| length: min=5, max=13, avg=7.2 | |
| top prefixes: yt(32), dy(3), sh(2), ch(2), ot(2) | |
| contains: ytchy(20), ytchor(13), ytchey(12), ytchdy(10), ytchedy(10), | |
| ytchol(6), ytchody(5), ytchoy(3), dytchy(2), shytchy(2), | |
| ytcho(2), ytchos(2), chotcheytchol(1), chytchy(1), dchytchy(1), | |
| dytchdy(1), dytchor(1), otytchol(1), otytchy(1), sheytchdy(1), | |
| ytchaiin(1), ytchaly(1), ytchar(1), ytchas(1), ytchchy(1), | |
| ytchcseey(1), ytchdam(1), ytcheas(1), ytched(1), ytchedal(1), | |
| ytcheear(1), ytcheeky(1), ytcheey(1), ytcheo(1), ytcheodar(1), | |
| ytcheodytor(1), ytchl(1), ytchodaiin(1), ytchodyy(1), ytchoky(1), | |
| ytchom(1), ytchyd(1) | |
| ytchdy(10): (word length: 6 / group items: 2) | |
| length: min=7, max=9, avg=8.0 | |
| top prefixes: dy(1), sh(1) | |
| contains: dytchdy(1), sheytchdy(1) | |
| ytched(1): (word length: 6 / group items: 2) | |
| length: min=7, max=8, avg=7.5 | |
| top prefixes: yt(2) | |
| contains: ytchedy(10), ytchedal(1) | |
| ytcheo(1): (word length: 6 / group items: 2) | |
| length: min=9, max=11, avg=10.0 | |
| top prefixes: yt(2) | |
| contains: ytcheodar(1), ytcheodytor(1) | |
| ytcho(2): (word length: 5 / group items: 12) | |
| length: min=6, max=13, avg=7.5 | |
| top prefixes: yt(9), ch(1), dy(1), ot(1) | |
| contains: ytchor(13), ytchol(6), ytchody(5), ytchoy(3), ytchos(2), | |
| chotcheytchol(1), dytchor(1), otytchol(1), ytchodaiin(1), | |
| ytchodyy(1), ytchoky(1), ytchom(1) | |
| ytchody(5): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yt(1) | |
| contains: ytchodyy(1) | |
| ytchol(6): (word length: 6 / group items: 2) | |
| length: min=8, max=13, avg=10.5 | |
| top prefixes: ch(1), ot(1) | |
| contains: chotcheytchol(1), otytchol(1) | |
| ytchor(13): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: dy(1) | |
| contains: dytchor(1) | |
| ytchy(20): (word length: 5 / group items: 6) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: dy(1), sh(1), ch(1), dc(1), ot(1) | |
| contains: dytchy(2), shytchy(2), chytchy(1), dchytchy(1), otytchy(1), | |
| ytchyd(1) | |
| ytedy(24): (word length: 5 / group items: 2) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: dy(1), yt(1) | |
| contains: dytedy(2), ytedykor(1) | |
| yteed(1): (word length: 5 / group items: 4) | |
| length: min=6, max=10, avg=7.8 | |
| top prefixes: yt(2), ok(1), os(1) | |
| contains: yteedy(28), okeeyteedy(1), oshyteed(1), yteedar(1) | |
| yteedy(28): (word length: 6 / group items: 1) | |
| length: min=10, max=10, avg=10.0 | |
| top prefixes: ok(1) | |
| contains: okeeyteedy(1) | |
| yteeed(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yt(1) | |
| contains: yteeedy(1) | |
| yteeo(3): (word length: 5 / group items: 9) | |
| length: min=6, max=11, avg=7.2 | |
| top prefixes: yt(8), ot(1) | |
| contains: yteeody(9), otyteeodain(1), yteeod(1), yteeodal(1), | |
| yteeoey(1), yteeol(1), yteeoldy(1), yteeor(1), yteeos(1) | |
| yteeod(1): (word length: 6 / group items: 3) | |
| length: min=7, max=11, avg=8.7 | |
| top prefixes: yt(2), ot(1) | |
| contains: yteeody(9), otyteeodain(1), yteeodal(1) | |
| yteeol(1): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: yt(1) | |
| contains: yteeoldy(1) | |
| yteey(28): (word length: 5 / group items: 4) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: dy(1), ch(1), ok(1), oy(1) | |
| contains: dyteey(2), chyteey(1), okeyteey(1), oyteey(1) | |
| yteo(1): (word length: 4 / group items: 16) | |
| length: min=5, max=12, avg=7.0 | |
| top prefixes: yt(13), ch(2), or(1) | |
| contains: yteody(14), yteol(6), yteor(3), yteos(3), yteod(2), | |
| chedyteokain(1), chyteody(1), oraryteop(1), yteochy(1), | |
| yteodaiin(1), yteodain(1), yteodam(1), yteokar(1), yteold(1), | |
| yteoldy(1), yteoor(1) | |
| yteod(2): (word length: 5 / group items: 5) | |
| length: min=6, max=9, avg=7.6 | |
| top prefixes: yt(4), ch(1) | |
| contains: yteody(14), chyteody(1), yteodaiin(1), yteodain(1), yteodam(1) | |
| yteody(14): (word length: 6 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: ch(1) | |
| contains: chyteody(1) | |
| yteol(6): (word length: 5 / group items: 2) | |
| length: min=6, max=7, avg=6.5 | |
| top prefixes: yt(2) | |
| contains: yteold(1), yteoldy(1) | |
| yteold(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yt(1) | |
| contains: yteoldy(1) | |
| ytey(13): (word length: 4 / group items: 6) | |
| length: min=5, max=11, avg=8.0 | |
| top prefixes: ch(3), dy(1), op(1), te(1) | |
| contains: chedytey(1), cheeytey(1), cheytey(1), dytey(1), opsheytey(1), | |
| teodyteytar(1) | |
| yto(5): (word length: 3 / group items: 33) | |
| length: min=4, max=11, avg=6.3 | |
| top prefixes: yt(26), dy(2), oy(2), ol(1), qo(1) | |
| contains: ytor(14), ytol(12), ytody(9), ytoldy(5), ytoiin(4), | |
| ytodaiin(3), ytoy(2), dytoly(1), dytory(1), olytol(1), oytor(1), | |
| oytoyd(1), qotchytor(1), shdytody(1), ytcheodytor(1), ytoaiin(1), | |
| ytoar(1), ytod(1), ytoda(1), ytodal(1), ytodaly(1), | |
| ytoeopchey(1), ytoetear(1), ytoiiin(1), ytokar(1), ytolaiin(1), | |
| ytolaiir(1), ytolkal(1), ytom(1), ytorory(1), ytory(1), | |
| ytoryd(1), ytos(1) | |
| ytod(1): (word length: 4 / group items: 6) | |
| length: min=5, max=8, avg=6.5 | |
| top prefixes: yt(5), sh(1) | |
| contains: ytody(9), ytodaiin(3), shdytody(1), ytoda(1), ytodal(1), | |
| ytodaly(1) | |
| ytoda(1): (word length: 5 / group items: 3) | |
| length: min=6, max=8, avg=7.0 | |
| top prefixes: yt(3) | |
| contains: ytodaiin(3), ytodal(1), ytodaly(1) | |
| ytodal(1): (word length: 6 / group items: 1) | |
| length: min=7, max=7, avg=7.0 | |
| top prefixes: yt(1) | |
| contains: ytodaly(1) | |
| ytody(9): (word length: 5 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: sh(1) | |
| contains: shdytody(1) | |
| ytol(12): (word length: 4 / group items: 6) | |
| length: min=6, max=8, avg=6.8 | |
| top prefixes: yt(4), dy(1), ol(1) | |
| contains: ytoldy(5), dytoly(1), olytol(1), ytolaiin(1), ytolaiir(1), | |
| ytolkal(1) | |
| ytor(14): (word length: 4 / group items: 7) | |
| length: min=5, max=11, avg=7.0 | |
| top prefixes: yt(4), dy(1), oy(1), qo(1) | |
| contains: dytory(1), oytor(1), qotchytor(1), ytcheodytor(1), ytorory(1), | |
| ytory(1), ytoryd(1) | |
| ytory(1): (word length: 5 / group items: 2) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: dy(1), yt(1) | |
| contains: dytory(1), ytoryd(1) | |
| ytoy(2): (word length: 4 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: oy(1) | |
| contains: oytoyd(1) | |
| ytshedy(2): (word length: 7 / group items: 1) | |
| length: min=8, max=8, avg=8.0 | |
| top prefixes: dy(1) | |
| contains: dytshedy(1) | |
| ytshy(3): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: dy(1) | |
| contains: dytshy(1) | |
| yty(24): (word length: 3 / group items: 17) | |
| length: min=4, max=13, avg=5.9 | |
| top prefixes: yt(4), ch(3), dy(2), da(1), ky(1) | |
| contains: chyty(4), dyty(2), chedyty(1), cheyty(1), dayty(1), dytydy(1), | |
| kyty(1), okeyty(1), oyty(1), qoteytyqoky(1), shoyty(1), syty(1), | |
| ycheeytydaiin(1), ytychy(1), ytyda(1), ytydy(1), ytyl(1) | |
| ytyda(1): (word length: 5 / group items: 1) | |
| length: min=13, max=13, avg=13.0 | |
| top prefixes: yc(1) | |
| contains: ycheeytydaiin(1) | |
| ytydy(1): (word length: 5 / group items: 1) | |
| length: min=6, max=6, avg=6.0 | |
| top prefixes: dy(1) | |
| contains: dytydy(1) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ycheol(14): (word length: 6 / group items: 2)
length: min=7, max=11, avg=9.0
top prefixes: fc(1), yc(1)
contains: fchodycheol(1), ycheolk(1)
ycheor(9): (word length: 6 / group items: 1)
length: min=10, max=10, avg=10.0
top prefixes: yc(1)
contains: ycheoraiin(1)
ydal(3): (word length: 4 / group items: 7)
length: min=5, max=9, avg=6.6
top prefixes: py(2), da(1), of(1), ot(1), sh(1)
contains: dalydal(1), ofyskydal(1), otydal(1), pydaly(1), pykydal(1),
shydal(1), ydals(1)
ydar(2): (word length: 4 / group items: 9)
length: min=5, max=9, avg=7.6
top prefixes: yd(3), dy(1), od(1), ot(1), oy(1)
contains: dydariin(1), odalydary(1), otydary(1), oydar(1), shorydar(1),
sydarary(1), ydaraishy(1), ydaral(1), ydarchom(1)
teeol(5): (word length: 5 / group items: 10)
length: min=6, max=10, avg=7.9
top prefixes: ot(5), te(2), yt(2), qo(1)
contains: oteeol(9), qoteeol(5), oteeolchor(1), oteeolkeey(1),
oteeols(1), oteeoly(1), teeolain(1), teeolteedy(1), yteeol(1),
yteeoldy(1)
teeor(1): (word length: 5 / group items: 3)
length: min=6, max=7, avg=6.3
top prefixes: ot(1), ch(1), yt(1)
contains: oteeor(4), chteeor(1), yteeor(1)
There’s often these pairs with an l or r suffix, sometimes just one