forked from codespell-project/codespell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmine_dictionary.txt
30243 lines (30243 loc) · 648 KB
/
mine_dictionary.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
accessiblerolte->accessiblerole
alowinserts->allowinserts
applicationevnet->applicationevent
areal->aerial
ate->eight
atemptively->attemptively
atevents->atevent
autogrowwith->autogrowwidth
autoutline->autooutline
backed->backend
backtransparant->backtransparent
ballonmode->balloonmode
bandaid->band-aid
basicmanger->basicmanager
basidide->basicide
beasties->beasts
beseclass->baseclass
bnelow->below
bufering->buffering
cachlines->cachelines
caseingore->caseignore
caseinlie->caseinline
cashes->caches
causalities->casualties
ceding->cedeing
citivate->ctivate
cloded->closed
closelistners->closelisteners
cokes->coax
concur->conquer
contend->content
couarpoint->cougarpoint
#cout->count
cyrptoapi->cryptoapi
dam->damn
datadefintion->datadefinition
datasereis->dataseries
datasourfce->datasource
datefiled->datefilled
datta->data
dbacess->dbaccess
defuncs->death
documentserivce->documentservice
dsiplayinfo->displayinfo
dynaminresultset->dynamicresultset
ehcin->ohcin
embedfield->embeddedfield
esthetic->aesthetic
evenpoll->eventpoll
filing->filling
filo->phyllo
ftranspareny->ftransparency
fugly->ugly
funtionkeys->functionkeys
girdcols->gridcols
identiifers->identifiers
imager->image
juunit->junit
koject->kobject
likable->likeable
mailinglist->mailing list
manikin->mannequin
marshall->marshal
masstif->mastiff
mast->must
memorys->memories
mmaping->mmapping
modest->modeset
mongolianlayou->mongolianlayout
morover->moreover
musst->must
nanokenrel->nanokernel
nite->night
noermalsinvert->normalsinvert
nsplitt->nsplit
ntransfering->ntransferring
oft->of the
orientatoin->orientation
out-of-bound->out-of-band
picknick->picnic
pimagesufface->pimagesurface
pneumonic->mnemonic
quire->choir
reourcesn->resourcesn
reources->resources
socked->socket
unmarkalllobj->unmarkallobj
walkong->walkon
wasy->ways
wesal->weasel
wichid->whichid
xelementacces->xelementaccess
yamaka->yarmulke
prifles->profiles
approciate->appropriate
blocsk->blocks
compressiability->compressibility
differentia->difference
eailer->earlier
exclsuive->exclusive
forgo->forgot
fuer->for
leaft->leaf
resreve->reserve
spache->space
umounting->unmounting
bookend->booked
coping->copying
dellaloc->delalloc
anobject->an object
suppplier->supplier
ouf->of
assumably->assumedly
eny->any
celete->delete
reltaive->relative
wents->went
havt->have
dor->for
stared->started
onéy->only
hiorizontal->horizontal
informm->inform
langueg->language
respoitory->repository
ling->link
testdocuemts->testdocuments
docuemts->documents
foldnig->folding
nec->neg
enlargening->enlarging
belarussian->belarusian
tablre->table
oparation->operation
rom->from
trak->track
detectect->detected
uregntly->urgently
indepedant->independent
invisbile->invisible
nad->and
otherwiese->otherwise
accessiblility->accessibility
initialitation->initialization
batter->better
buts->but
formalar->formular
geomeztry->geometry
geristers->registers
glean->clean
gleaned->cleaned
higjlighted->highlighted
glidled->idled
highhest->highest
hyphention->hyphenation
patchres->patches
interpretended->interpreted
interjected->intersected
malfrom->malform
malformatted->malformed
propertyvlaue->propertyvalue
properyvalue->propertyvalue
puffer->buffer
reification->ratification
rrue->true
scipped->skipped
seclection->selection
securitry->security
selectged->selected
shappened->happened
statemnet->statement
speification->specification
treading->threading
tolarances->tolerances
truthy->true
varienty->variety
vsisibility->visibility
vsiualisation->visualisation
libatomic-ops->libatomic_ops
msexcell->msexcel
overhide->override
alligment->alignment
differt->different
pairty->parity
restartign->restarting
biffer->bigger
fautly->faulty
existign->existing
architectured->architectures
deve->devel
devie->device
haveo->have
invertory->inventory
manageing->managing
precisey->precisely
providew->provide
recan->rescan
sensibe->sensible
sisze->size
syupport->support
tcontainer->container
terrabytes->terabytes
argumentment->argument
abor->abort
acesss->access
allcated->allocated
allocing->allocating
allowr->allow
alwo->also
ater->after
autconf->autoconf
backrefrences->backreferences
blck->block
bnaries->binaries
botoom->bottom
chaacters->characters
checkso->checks
coipes->copies
concatanating->concatenating
consumpption->consumption
crrupted->corrupted
decompressiion->decompression
determint->determine
differemt->different
drammatically->dramatically
enahced->enhanced
filesystm->filesystem
flesystem->filesystem
hehavior->behavior
indefinetelly->indefinitely
initialzied->initialized
initlized->initialized
loookup->lookup
malformated->malformed
messagese->messages
objecitd->objectid
objecteid->objectid
opptinally->optionally
oprhan->orphan
othat->that
overalpping->overlapping
overflap->overlap
paritical->partial
parsting->parsing
pinnned->pinned
profided->provided
rbree->rtbree
referrening->referencing
regerneate->regenerate
regrex->regex
reresents->represents
rescure->rescue
separeate->separate
smililarly->similarly
sopies->copies
strpie->stripe
subvolum->subvolume
subvoolume->subvolume
supeblocks->superblocks
superbloc->superblock
supreblock->superblock
tailling->tailing
treeblocl->treeblock
unalianged->unaligned
ungliend->unaligned
uniquenes->uniqueness
unmatch->mismatch
unwrittent->unwritten
verifictaion->verification
heir->hier
evironmnet->environment
execmple->example
exiter->exit
facitily->facility
granulity->granularity
hihg->high
logicla->logical
mainatned->maintained
parititon->partition
passwdfile->passwordfile
permitir->permite
recomennded->recommended
recomented->recommended
transofrmar->transformar
unchnaged->unchanged
unitilisable->inutilisable
unpartitions->unpartitioned
zerozied->zeroed
tswitch->switch
a'ready->already
abbott->abort
accoutrements->accouterments
avoidpaste->avoid_paste
contentionz->contentions
cpecial->special
derivate->derivative
derivates->derivatives
documentdescription->document_description
documentencoding->document_encoding
exponentials->exponential
factorisation->factorization
hundredsof->hundreds_of
programmes->programmers
recurrency->recurrence
seraliz->serializ
seriliz->serializ
wellformed->well formed
alreadyy->already
arounded->around
asynchronic->asynchronous
badbocks->badblocks
badding->padding
bassed->passed
bblock->block
bevice->device
bookkeepping->bookkeeping
cannoicalize->canonicalize
characgters->characters
cirmcustances->circumstances
cirucmstances->circumstances
clena->clean
commutted->committed
concicse->concise
concurrancy->concurrency
conherency->coherency
consisstent->consistent
correctl->correctly
corrpt->corrupt
countaining->containing
coveriy->coverity
daeomn->daemon
dangerouse->dangerous
dellocate->deallocate
derferences->dereferences
descriptros->descriptors
descripts->descriptors
determinthe->determine
devncie->device
directoryt->directory
durings->during
egain->eagain
emeregency->emergency
emory->memory
epsecially->especially
erport->report
experimently->experimentally
facilited->facilitated
fck->fsck
fedore->fedora
filestype->filetype
filesysmte->filesystem
filesystsem->filesystem
filetyle->filetype
filspec->filespec
floopies->floppies
forwever->forever
fsk->fsck
fsprosg->fsprogs
ggroupe->groupe
ggrupp->grupp
gression->regression
guielines->guidelines
hugarian->hungarian
hypthens->hyphens
incomat->incompat
incorrectl->incorrectly
indirecto->indirect
indoe->inode
inhance->enhance
inlut->input
inods->inodes
interarting->interacting
intrudced->introduced
leackages->leakages
librares->libraries
liks->like
lirbary->library
loadsers->loaders
mdoule->module
megabites->megabytes
mesasage->message
minimimum->minimum
mnultiply->multiply
modo->nodo
mouinted->mounted
multiplition->multiplication
newsly->newly
noitceably->noticeably
ocotober->october
optiosn->options
ownernship->ownership
paraemter->parameter
pathnams->pathnames
percompiled->precompiled
performanace->performance
pessessing->possessing
phiscal->physical
poteintial->potential
preparataion->preparation
prepratory->preparatory
priary->primary
prinitng->printing
readine->readline
rebuiliding->rebuilding
refocunt->refcount
reforced->forced
relcating->relocating
rellocate->reallocate
requiste->requested
resizde->resize
reubuild->rebuild
robuest->robust
salvange->salvage
secondiory->secondary
sectoin->section
sessoin->session
simulaneous->simultaneous
sourcefroge->sourceforge
ssystems->systems
subection->subsection
subections->subsections
suitible->suitable
superblc->superblock
swampped->swapped
sweedish->swedish
terrabyte->terabyte
theosore->theodore
tidyed->tidied
transanction->transaction
unfortuntaely->unfortunately
unpappable->unmappable
uperblock->superblock
witih->with
imag->image
acitivies->activities
adjudst->adjust
administratos->administrators
apha->alpha
asas->as
ativate->activate
canfigured->configured
casssandra->cassandra
causew->cause
cipehr->cipher
clu->cli
clusermgr->clustermgr
colliquially->colloquially
comf->conf
commanda->commands
configurde->configure
conhesive->cohesive
csr->crt
curcumvent->circumvent
deaemons->daemons
dedicatd->dedicated
defautldev->defaultdev
denided->denied
desidered->desired
dhcpcd->dhcpd
discrection->discretion
distr->distro
domaain->domain
ecrypted->encrypted
edirot->editor
envicornment->environment
estart->restart
feports->reports
fooh->foo
geame->game
gudie->guide
gudielines->guidelines
hostames->hostnames
htpgroup->htgroup
ideat->idea
idstrubutions->distributions
indesx->index
initiatize->initialize
interctive->interactive
iptabes->iptables
iptop->iotop
janaury->january
keepalives->keepalive
latestet->latest
lindoes->linodes
linodee->linode
linpde->linode
liode->linode
lionde->linode
longiew->longview
longivew->longview
lookback->loopback
maillbox->mailbox
mmanage->manage
modeule->module
monotany->monotony
mstmp->msmtp
mysqlttuner->mysqltuner
nessicary->necessary
networding->networking
newely->newly
nodesm->nodes
ntpong->ntopng
ournaling->journaling
ourside->outside
owneship->ownership
pagepeed->pagespeed
paravirtualizaion->paravirtualization
permenatly->permanently
personlization->personalization
picured->pictured
postix->postfix
precist->precise
prililedges->privileges
priviges->privileges
protocoal->protocol
pyintotify->pyinotify
qualifed->qualified
recoevery->recovery
rehat->redhat
repisitory->repository
scalabe->scalable
scalibility->scalability
servehs->serves
severlimit->serverlimit
solutiontion->solution
stackscritps->stackscripts
stadards->standards
sudp->sudo
taskwarriror->taskwarrior
terria->terraria
thursdsay->thursday
truew->true
tunneblick->tunnelblick
ucomplicated->uncomplicated
uing->using
umame->uname
versatilte->versatile
viop->voip
withj->with
yourcomain->yourdomain
aeg->arg
catlink->taglink
codee->code
commentcoun->commentcount
fsoxkopen->fsockopen
matchedcontrol->matchedcontrols
newuserconfimation->newuserconfirmation
normalizelist->normalizelists
olpml->opml
owpbody->wpbody
periodicalexecutor->periodicalexecuter
sanitiation->sanitisation
scheduletracing->schedulertracing
stypes->styles
svalues->values
tinymcs->tinymce
tooglecomparetwocheckbox->togglecomparetwocheckbox
tracbackquery->trackbackquery
trailingshashit->trailingslashit
unaccurate->inaccurate
unsetplayer->unsetplayers
uti->uri
wbdp->wpdb
wpb->wpdb
wpdialod->wpdialog
detectrename->detectrenames
exacta->exacte
gitattribute->gitattributes
gitmodule->gitmodules
solang->solange
startls->starttls
unreferenzierte->unreferenziertes
usuallmente->usualmente
asisan->asian
affetcs->affects
auxiallary->auxiliary
caugh->caught
charsacter->character
classig->classic
conincidan->coincidan
dfault->default
encooded->encoded
incremete->increment
insensivity->insensitivity
itemzied->itemized
pritnf->printf
reuquired->required
reypling->replying
simluate->simulate
simpple->simple
ssince->since
stuffes->stuffs
subeject->subject
subtrace->subtract
subtread->subthread
themseves->themselves
typograhical->typographical
uncommen->uncomment
unmodifyed->unmodified
valididy->validity
wherin->wherein
althopugh->although
currentley->currently
fuuny->funny
layouot->layout
prinsection->printsection
coed->code
instacne->instance
assignemt->assignment
delaing->dealing
accless->access
alowable->allowable
ambiguousp->ambiguous
ame->same
asciz->ascii
attomic->atomic
axplicit->explicit
ayuthentication->authentication
caclculate->calculate
capitabl->capital
consisits->consists
coount->count
defineition->definition
demonsration->demonstration
diagnosiic->diagnostic
differentr->different
dirst->first
downstram->downstream
emualated->emulated
emuilated->emulated
emulatior->emulator
emulaton->emulation
emv->env
endianesses->endiannesses
endianned->endianness
enulates->emulates
epill->epoll
exired->expired
farly->fairly
filenamee->filename
fload->float
frramework->framework
galilleo->galileo
gemu->qemu
hardwared->hardwired
haredware->hardware
hetergeneous->heterogeneous
hogh->high
hotpug->hotplug
imeplement->implement
immedaiate->immediate
immeriately->immediately
incrememnt->increment
infinband->infiniband
instructon->instruction
interrnally->internally
interrypt->interrupt
invvalidate->invalidate
ismousegrabed->ismousegrabbed
keberos->kerberos
leight->height
lonfoff->longoff
longet->longer
lowere->lower
marvel->marvell
memort->memory
microbaze->microblaze
necessry->necessary
ntroduced->introduced
nusing->using
objectclas->objectclass
oice->voice
partinal->partial
pchost->pcihost
peripherans->peripherals
prefech->prefetch
pridge->bridge
primariy->primarily
projevt->project
relaim->reclaim
segmant->segment
solaries->solaris
telll->tell
tranfert->transfert
ulocking->unlocking
undocuented->undocumented
unfinyshed->unfinished
unknowm->unknown
unsupportted->unsupported
untermintated->unterminated
unwriteable->unwritable
valloc->vmalloc
venctors->vectors
virutualization->virtualization
vmmmouse->vmmouse
workding->working
ymaha->yamaha
abolsute->absolute
assocatiated->associated
asynchrously->asynchronously
brdige->bridge
clientds->client
diagnotistic->diagnostic
dsiables->disables
emualtion->emulation
enoutered->encountered
failuting->faulting
grapihcs->graphics
hoptlug->hotplug
inejct->inject
initofy->inotify
microblazeel->microblaze
mittle->middle
parameres->parameters
precisition->precision
preipherals->peripherals
realizefn->realize
satruating->saturating
sbumodule->submodule
togglefullscreen->dotogglefullscreen
tubale->tunable
unrealizefn->unrealize
unreasobale->unreasonable
wrottn->wrote
cernter->center
clipe->clip
contribuated->contributed
launnched->launched
openshop->openshot
thunbnail->thumbnail
anmiated->animated
cilps->clips
moutpoint->mountpoint
connectiontimeout->connecttimeout
prest->preset
encoode->encode
scrubbe->scrubber
santiy->sanity
courrpted->corrupted
contanis->contains
fragmetation->fragmentation
anbother->another
rearrannged->rearranged
instantianted->instantiated
guesssing->guessing
unprivilaged->unprivileged
freeg->free
evitable->evictable
fragmenation->fragmentation
communitate->communicate
compresseed->compressed
requirenments->requirements
maintin->maintain
adjustmnt->adjustment
quiesing->quiescing
checkfuncs->checkfunc
pooname->poolname
contigeous->contiguous
memry->memory
immdiate->immediate
maintaines->maintains
undercore->underscore
horific->horrific
vaired->varied
heriarchy->hierarchy
perfetch->prefetch
conumsers->consumers
comprar->comparar
fazer->faz
checkinunique->checkingunique
represnting->representing
rotateion->rotation
shareffilesets->sharedfilesets
desacriptors->descriptors
desacriptor->descriptor
bebugging->debugging
brizen->bryzen
conflcting->conflicting
discretio->discretion
emoves->removes
globalss->globals
goooglecode->googlecode
litet->lite
logfe->logfs
mghz->mhz
revission->revision
xfcie->xfce
befroe->before
cinnom->cinnamon
selectiion->selection
wortart->wordart
acceptabelt->acceptable
accepterad->accepted
africas->africans
applicates->applicants
assesement->assessment
assestment->assessment
asshates->asshats
asshatts->asshats
assimalate->assimilate
assimialted->assimilate
assimilant->assimilate
assimilare->assimilate
assimilatie->assimilate
assimile->assimilate
assimilerat->assimilate
assimiliate->assimilate
assimliate->assimilate
assimliated->assimilate
assimulate->assimilate
assissinated->assassinated
assistanat->assistants
assistans->assistants
assistanse->assistants
assistante->assistance
assistantes->assistants
assistat->assistants
assistendo->assisted
assistsnt->assistants
assmebled->assembled
assnage->assange
associaiton->associations
associationg->associating
associationthis->associations
associato->association
associaton->association
associatons->associations
associsted->associates
asssasin->assassin
asssasins->assassins
asssits->assists
assualts->assaults
assulated->assaulted
assumptious->assumptions
assupmtion->assumptions
asteorid->asteroid
asteorids->asteroids
astericks->asterisk
asteriods->asteroids
asteroides->asteroids
asterois->asteroids
astersik->asterisk
astonashing->astonishing
astonising->astonishing
astonoshing->astonishing
astornauts->astronauts
astranauts->astronauts
astranomical->astronomical
astroanut->astronaut
astromonical->astronomical
astronat->astronaut
astronatus->astronauts
astronaught->astronaut
astronaunt->astronaut
astronaunts->astronaut
astronautas->astronauts
astronautes->astronauts
astronautlis->astronauts
astronimical->astronomical
astronomia->astronomical
astronomicly->astronomical
astronouts->astronauts
astronuat->astronaut
astronuats->astronauts
astrounat->astronaut
asuterity->austerity
asutralian->australian
asutria->austria
asutrian->austrian
atcualy->actually
atelast->atleast
atheisim->atheism
atheistc->atheistic
atheistisch->atheistic
atheltes->athletes
atheltic->athletic
athelticism->athleticism
atheltics->athletics
athesim->atheism
athesitic->atheistic
athesits->atheists
athetlic->athletic
athetlics->athletics
athients->athiest
athiestic->atheistic
athiets->athiest
athletecism->athleticism
athleticisim->athleticism
athleticm->athleticism
athleticos->athletics
athleticsim->athleticism
athleticsm->athleticism
athletiscm->athleticism
athletisicm->athleticism
athletisim->athleticism
athletisism->athleticism
athlets->athletes
atittude->attitude
atlantc->atlantic
atlantia->atlanta
atleats->atleast
atlesat->atleast
atmoizer->atomizer
atmopshere->atmosphere
atmopsheric->atmospheric
atmoshpere->atmosphere
atmoshperic->atmospheric
atmosoheric->atmospheric
atmosphereic->atmospheric
atmosphir->atmospheric
atomsphere->atmosphere
atomspheric->atmospheric
atomzier->atomizer
atremis->artemis
atriculate->articulate
atrifact->artifact
atrifacts->artifacts
atrillery->artillery
atrittion->attrition
atrocitites->atrocities
atrocoties->atrocities
atrosities->atrocities
attachmet->attachments
attackeras->attackers
attackerasu->attackers
attackerats->attackers
attackes->attackers
attactment->attachment
attactments->attachments
attidute->attitude
attirtion->attrition
attracs->attracts
attracters->attracts
attractes->attracts
attractice->attractive
attracties->attracts
attractifs->attracts
attractin->attraction
attraktion->attraction
attraktive->attractive
attribuito->attribution
attributo->attribution
attributted->attribute
aucitons->auctions
auctioners->auctions
auctionrs->auctions
audactiy->audacity
audbile->audible
audcaity->audacity
audibel->audible
audiobok->audiobook
audiobookas->audiobooks
audiobookmrs->audiobooks
audioboook->audiobook
audioboooks->audiobook
audioboost->audiobooks
audomoderator->automoderator
auidobook->audiobook
auidobooks->audiobooks
auotattack->autoattack
auotcorrect->autocorrect
austeriy->austerity
austira->austria
austiran->austrian
austitic->autistic
austrai->austria
austrailan->australian
austrailans->australians
austrain->austrian
australa->australian
australain->australians
australiaan->australians
australiams->australians
australianas->australians
australianess->australians
australianos->australians
australiens->australians
australina->australians
australin->australians
australlian->australian
austrija->austria
austrila->austria
authenticiy->authenticity
authenticor->authenticator
authenticty->authenticity
authenticy->authenticity
authentisity->authenticity
authoratitive->authoritative
authoritate->authoritative
authoritatian->authoritarian
authoritation->authorization
authoritay->authority
authorithies->authorities
authoritorian->authoritarian
authorizaton->authorization
authorotative->authoritative
authoroties->authorities
autisitc->autistic
autistc->autistic
autistisch->autistic