[sword-svn] r85 - in trunk: . flashtools

scribe at www.crosswire.org scribe at www.crosswire.org
Tue May 22 11:24:39 MST 2007


Author: scribe
Date: 2007-05-22 11:24:38 -0700 (Tue, 22 May 2007)
New Revision: 85

Added:
   trunk/flashtools/
   trunk/flashtools/Makefile
   trunk/flashtools/flash.cpp
   trunk/flashtools/gdefs.conf
   trunk/flashtools/gwords.conf
Log:
Added facility to collate words from sword module


Added: trunk/flashtools/Makefile
===================================================================
--- trunk/flashtools/Makefile	                        (rev 0)
+++ trunk/flashtools/Makefile	2007-05-22 18:24:38 UTC (rev 85)
@@ -0,0 +1,10 @@
+TARGETS= flash
+all: $(TARGETS)
+
+clean:
+	rm $(TARGETS)
+
+.cpp:
+	g++ -g `pkg-config --cflags sword` $< -o $@ `pkg-config --libs sword`
+
+

Added: trunk/flashtools/flash.cpp
===================================================================
--- trunk/flashtools/flash.cpp	                        (rev 0)
+++ trunk/flashtools/flash.cpp	2007-05-22 18:24:38 UTC (rev 85)
@@ -0,0 +1,131 @@
+#include <map>
+#include <vector>
+#include <iostream>
+#include <sstream>
+
+#include <swmgr.h>
+#include <swbuf.h>
+#include <swmodule.h>
+#include <utf8utf16.h>
+
+using namespace sword;
+using namespace std;
+
+class Word {
+public:
+Word()
+	: utf8("")
+	, strong(0)
+	, freq(0)
+	, kjvTrans("")
+{}
+SWBuf utf8;
+int strong;
+int freq;
+// from stongs lex
+SWBuf kjvTrans;
+// computed ourselves
+map<SWBuf, int> kjvFreq;
+};
+
+string itoa(int v) { stringstream str; str << v; return str.str(); }
+
+bool compareFreq(const Word *w1, const Word *w2) {
+	return w1->freq > w2->freq;
+}
+
+bool compareKJVFreq(const map<SWBuf, int>::const_iterator &i1, const map<SWBuf, int>::const_iterator &i2) {
+	return i1->second > i2->second;
+}
+
+SWBuf prettyKJVFreq(map<SWBuf, int> &in) {
+	SWBuf retVal;
+	vector<map<SWBuf, int>::const_iterator> sorted;
+	for (map<SWBuf, int>::const_iterator it = in.begin(); it != in.end(); it++) {
+		// combine cap words with lowercase, if exists
+		if (toupper(it->first[0]) == it->first[0]) {
+			SWBuf key = it->first;
+			key[0] = tolower(key[0]);
+			if (key != it->first) {
+				map<SWBuf, int>::iterator i = in.find(key);
+				if (i != in.end()) {
+					i->second += it->second;
+					// don't include us in the list cuz we added out freq to another
+					continue;
+				}
+			}
+		}
+		sorted.push_back(it);
+	}
+	sort(sorted.begin(), sorted.end(), compareKJVFreq);
+	for (vector<map<SWBuf, int>::const_iterator>::const_iterator it = sorted.begin(); it != sorted.end(); it++) {
+		if (retVal.size()) retVal += "; ";
+		retVal.appendFormatted("%s (%d)", (*it)->first.c_str(), (*it)->second);
+	}
+	return retVal;
+}
+
+SWBuf escapedUTF8(SWBuf inText) {
+	static UTF8UTF16 convert;
+	convert.processText(inText);
+	SWBuf retBuf;
+	for (unsigned short *i = (unsigned short *)inText.getRawData(); *i; i++) {
+		if (*i < 128) {
+			retBuf += (char)*i;
+		}
+		else {
+			retBuf.appendFormatted("\\u%.4x", *i);
+			// change hex alpha values to upper case
+			for (int i = retBuf.size()-1; i > retBuf.size() - 4; i--) {
+				retBuf[i] = toupper(retBuf[i]);
+			}
+		}
+	}
+	return retBuf;
+}
+
+
+int main(int argc, char **argv)
+{
+	
+	SWMgr manager;
+	SWModule *bible;
+	SWConfig utf8("gwords.conf");
+	SWConfig defs("gdefs.conf");
+	map<int, Word> wordList;
+
+	bible = manager.getModule("KJV");
+
+	for (bible->setKey("matt.1.1"); !bible->Error(); (*bible)++) {
+		bible->RenderText();		// force an entry lookup to resolve key to something in the index
+
+		AttributeList &words = bible->getEntryAttributes()["Word"];
+		for (AttributeList::iterator word = words.begin(); word != words.end(); word++) {
+			SWBuf strong = word->second["Lemma"];
+			SWBuf text = word->second["Text"];
+			text.trim();
+			if (!text.size()) text = "[Untranslated]";
+			strong << 1;
+			wordList[atoi(strong.c_str())].freq++;
+			wordList[atoi(strong.c_str())].kjvFreq[text]++;
+//			cout << strong << "\n";
+		}
+	}
+	vector<Word *> sorted;
+	for (map<int, Word>::iterator it = wordList.begin(); it != wordList.end(); it++) {
+		it->second.strong = it->first;
+		it->second.kjvTrans = defs["defs"][itoa(it->first).c_str()];
+		it->second.utf8 = utf8["words"][itoa(it->first).c_str()];
+		sorted.push_back(&it->second);
+	}
+	
+	sort(sorted.begin(), sorted.end(), compareFreq);
+
+	for (vector<Word *>::iterator it = sorted.begin(); it != sorted.end(); it++) {
+		Word *w = (*it);
+//		cout << w->freq << "|" << escapedUTF8(w->utf8).c_str() << "|" << w->strong << "|" << prettyKJVFreq(w->kjvFreq).c_str() << "\n";
+		cout << w->freq << "|" << w->utf8.c_str() << "|" << w->strong << "|" << prettyKJVFreq(w->kjvFreq).c_str() << "\n";
+	}
+	std::cout << std::endl;
+	return 0;
+}

Added: trunk/flashtools/gdefs.conf
===================================================================
--- trunk/flashtools/gdefs.conf	                        (rev 0)
+++ trunk/flashtools/gdefs.conf	2007-05-22 18:24:38 UTC (rev 85)
@@ -0,0 +1,5521 @@
+[defs]
+1=Alpha.
+2=Aaron.
+3=Abaddon.
+4=from being burdensome.
+5=Abba.
+6=Abel.
+7=Abia.
+8=Abiathar.
+9=Abilene.
+10=Abiud.
+11=Abraham.
+12=deep, (bottomless) pit.
+13=Agabus.
+14=do good.
+15=(when) do good (well).
+16=well-doing.
+17=them that do well.
+18=benefit, good(-s, things), well.
+19=goodness.
+20=gladness, (exceeding) joy.
+21=be (exceeding) glad, with exceeding joy, rejoice (greatly).
+22=unmarried.
+23=be much (sore) displeased, have (be moved with, with) indignation.
+24=indignation.
+25=(be-)love(-ed).
+26=(feast of) charity(-ably), dear, love.
+27=(dearly, well) beloved, dear.
+28=Hagar.
+29=compel (to go).
+30=vessel.
+31=message.
+32=angel, messenger.
+33=go to.
+34=herd.
+35=without descent.
+36=base things.
+37=hallow, be holy, sanctify.
+38=holiness, sanctification.
+39=holiest (of all), holy place, sanctuary.
+40=(most) holy (one, thing), saint.
+41=holiness.
+42=holiness.
+43=arm.
+44=hook.
+45=anchor.
+46=new.
+47=purity.
+48=purify (self).
+49=purification.
+50=(be) ignorant(-ly), not know, not understand, unknown.
+51=error.
+52=ignorance.
+53=chaste, clean, pure.
+54=pureness.
+55=sincerely.
+56=ignorance, not the knowledge.
+57=unknown.
+58=market(-place), street.
+59=buy, redeem.
+60=baser sort, low.
+61=draught.
+62=unlearned.
+63=abide in the field.
+64=catch.
+65=olive tree (which is) wild.
+66=wild, raging.
+67=Agrippa.
+68=country, farm, piece of ground, land.
+69=watch.
+70=watch.
+71=be, bring (forth), carry, (let) go, keep, lead away, be open.
+72=manner of life.
+73=conflict, contention, fight, race.
+74=agony.
+75=fight, labor fervently, strive.
+76=Adam.
+77=without expense.
+78=Addi.
+79=sister.
+80=brother.
+81=brethren, brotherhood.
+82=appear not, uncertain.
+83=X uncertain.
+84=uncertainly.
+85=be full of heaviness, be very heavy.
+86=grave, hell.
+87=without partiality.
+88=without ceasing, continual.
+89=without ceasing.
+90=uncorruptness.
+91=hurt, injure, be an offender, be unjust, (do, suffer, take) wrong.
+92=evil doing, iniquity, matter of wrong.
+93=iniquity, unjust, unrighteousness, wrong.
+94=unjust, unrighteous.
+95=wrongfully.
+96=castaway, rejected, reprobate.
+97=sincere.
+98=of Adramyttium.
+99=Adria.
+100=abundance.
+101=be impossible.
+102=could not do, impossible, impotent, not possible, weak.
+103=sing.
+104=always, ever.
+105=eagle.
+106=unleavened (bread).
+107=Azorigin 
+108=Azotus.
+109=air.
+110=immortality.
+111=abominable, unlawful thing.
+112=without God.
+113=wicked.
+114=cast off, despise, disannul, frustrate, bring to nought, reject.
+115=disannulling, put away.
+116=Athens.
+117=Athenian.
+118=strive.
+119=fight.
+120=be dismayed.
+121=innocent.
+122=goat.
+123=shore.
+124=Egyptian.
+125=Ægyptus, the land of the Nile:--Egypt.
+126=eternal, everlasting.
+127=reverence, shamefacedness.
+128=Ethiopian.
+129=blood.
+130=shedding of blood.
+131=diseased with an issue of blood.
+132=Aeneas.
+133=praise.
+134=praise.
+135=X darkly.
+136=praise.
+137=Ænon.
+138=choose.
+139=heresy (which is the Greek word itself), sect.
+140=choose.
+141=heretic (the Greek word itself).
+142=away with, bear (up), carry, lift up, loose, make to doubt, put away, remove, take (away, up).
+143=perceive.
+144=judgment.
+145=senses.
+146=given to (greedy of) filthy lucre.
+147=for filthy lucre's sake.
+148=filthy communication.
+149=shame.
+150=filthy.
+151=filthiness.
+152=dishonesty, shame.
+153=be ashamed.
+154=ask, beg, call for, crave, desire, require.
+155=petition, request, required.
+156=accusation, case, cause, crime, fault, (wh-)ere(-fore).
+157=complaint.
+158=cause, fault.
+159=author.
+160=sudden, unawares.
+161=captivity.
+162=lead captive.
+163=lead away captive, bring into captivity.
+164=captive.
+165=age, course, eternal, (for) ever(-more), (n-)ever, (beginning of the , while the) world (began, without end).
+166=eternal, for ever, everlasting, world (began).
+167=uncleanness.
+168=filthiness.
+169=foul, unclean.
+170=lack opportunity.
+171=out of season.
+172=harmless, simple.
+173=thorn.
+174=of thorns.
+175=without fruit, unfruitful.
+176=that cannot be condemned.
+177=uncovered.
+178=uncondemned.
+179=endless.
+180=that cannot cease.
+181=commotion, confusion, tumult.
+182=unstable.
+183=unruly.
+184=Aceldama.
+185=harmless, simple.
+186=without wavering.
+187=be fully ripe.
+188=yet.
+189=audience, ear, fame, which ye heard, hearing, preached, report, rumor.
+190=follow, reach.
+191=give (in the) audience (of), come (to the ears), (shall) hear(-er, -ken), be noised, be reported, understand.
+192=excess, incontinency.
+193=incontinent.
+194=without mixture.
+195=perfect manner.
+196=most straitest.
+197=more perfect(-ly).
+198=enquire diligently.
+199=circumspectly, diligently, perfect(-ly).
+200=locust.
+201=place of hearing.
+202=hearer.
+203=not circumcised, uncircumcised (with 
+204=chief corner.
+205=spoils.
+206=one end.
+207=Aquila.
+208=disannul, make of none effect.
+209=no man forbidding him.
+210=against the will.
+211=(alabaster) box.
+212=boasting, pride.
+213=boaster.
+214=tinkle, wail.
+215=unutterable, which cannot be uttered.
+216=dumb.
+217=salt.
+218=anoint.
+219=cockcrowing.
+220=cock.
+221=of Alexandria, Alexandrian.
+222=of Alexandria.
+223=Alexander.
+224=meal.
+225=true, X truly, truth, verity.
+226=speak (tell) the truth.
+227=true, truly, truth.
+228=true.
+229=grind.
+230=indeed, surely, of a surety, truly, of a (in) truth, verily, very.
+231=fisher(-man).
+232=go a-fishing.
+233=salt.
+234=pollution.
+235=and, but (even), howbeit, indeed, nay, nevertheless, no, notwithstanding, save, therefore, yea, yet.
+236=change.
+237=some other way.
+238=be an allegory (the Greek word itself).
+239=alleluiah.
+240=each other, mutual, one another, (the other), (them-, your-)selves, (selves) together
+241=stranger.
+242=leap, spring up.
+243=more, one (another), (an-, some an-)other(-s, -wise).
+244=busybody in other men's matters.
+245=alien, (an-)other (man's, men's), strange(-r).
+246=one of another nation.
+247=otherwise.
+248=thresh, tread out the corn.
+249=brute, unreasonable.
+250=aloes.
+251=salt.
+252=salt.
+253=less sorrowful.
+254=bonds, chain.
+255=unprofitable.
+256=Alpheus.
+257=floor.
+258=fox.
+259=also, and, together, with(-al).
+261=unlearned.
+262=that fadeth not away.
+263=that fadeth not away.
+264=for your faults, offend, sin, trespass.
+265=sin.
+266=offence, sin(-ful).
+267=without witness.
+268=sinful, sinner.
+269=not a brawler.
+270=reap down.
+271=amethyst.
+272=make light of, neglect, be negligent, no regard.
+273=blameless, faultless, unblamable.
+274=blameless, unblamably.
+275=without care(-fulness), secure.
+276=immutable(-ility).
+277=unmovable.
+278=without repentance, not to be repented of.
+279=impenitent.
+280=(thing) without measure.
+281=amen, verily.
+282=without mother.
+283=undefiled.
+284=Aminadab.
+285=sand.
+286=lamb.
+287=requite.
+288=vine.
+289=vine-dresser.
+290=vineyard.
+291=Amplias.
+292=defend.
+293=net.
+294=clothe.
+295=Amphipolis.
+296=where two ways meet.
+297=both.
+298=blameless.
+299=without blame (blemish, fault, spot), faultless, unblamable.
+300=Amon.
+301=Amos.
+302=(what-, where-, wither-, who-)soever.
+303=and, apiece, by, each, every (man), in, through.
+304=stairs.
+305=arise, ascend (up), climb (go, grow, rise, spring) up, come (up).
+306=defer.
+307=draw.
+308=look (up), see, receive sight.
+309=recovery of sight.
+310=cry (aloud, out).
+311=delay.
+312=declare, rehearse, report, show, speak, tell.
+313=beget, (bear) X (again).
+314=read.
+315=compel, constrain.
+316=near, necessary, necessity, needful.
+317=by constraint.
+318=distress, must needs, (of) necessity(-sary), needeth, needful.
+319=be made known.
+320=reading.
+321=bring (again, forth, up again), depart, launch (forth), lead (up), loose, offer, sail, set forth, take up.
+322=appoint, shew.
+323=shewing.
+324=receive.
+325=deliver.
+326=(be a-)live again, revive.
+327=seek.
+328=gird up.
+329=stir up.
+330=flourish again.
+331=accused, anathema, curse, X great.
+332=(bind under a) curse, bind with an oath.
+333=behold, consider.
+334=gift.
+335=importunity.
+336=death.
+337=put to death, kill, slay, take away, take up.
+338=blameless, guiltless.
+339=sit up.
+340=renew.
+341=renew.
+342=renewing.
+343=open, (un-)taken away.
+344=(re-)turn.
+345=guest, lean, lie, sit (down, at meat), at the table.
+346=briefly comprehend, gather together in one.
+347=lay, (make) sit down.
+348=hinder.
+349=cry out.
+350=ask, question, discern, examine, judge, search.
+351=examination.
+352=lift up, look up.
+353=receive up, take (in, unto, up).
+354=taking up.
+355=consume.
+356=proportion.
+357=consider.
+358=X lose saltness.
+359=departure.
+360=depart, return.
+361=that is without sin.
+362=wait for.
+363=call to mind, (bring to , call to, put in), remember(-brance).
+364=remembrance (again).
+365=renew.
+366=recover self.
+367=Ananias.
+368=cannot be spoken against.
+369=without gainsaying.
+370=unworthy.
+371=unworthily.
+372=rest.
+373=take ease, refresh, (give, take) rest.
+374=persuade.
+375=send (again).
+376=maimed.
+377=lean, sit down (to meat).
+378=fill up, fulfill, occupy, supply.
+379=without an excuse, inexcusable.
+380=open.
+381=kindle, light.
+382=innumerable.
+383=move, stir up.
+384=subvert.
+385=draw up, pull out.
+386=raised to life again, resurrection, rise from the dead, that should rise, rising again.
+387=trouble, turn upside down, make an uproar.
+388=crucify afresh.
+389=sigh deeply.
+390=abide, behave self, have conversation, live, overthrow, pass, return, be used.
+391=conversation.
+392=set in order.
+393=(a-, make to) rise, at the rising of, spring (up), be up.
+394=communicate, declare.
+395=dayspring, east, rising.
+396=overthrow, subvert.
+397=bring up, nourish (up).
+398=(should) appear, discover.
+399=bear, bring (carry, lead) up, offer (up).
+400=speak out.
+401=excess.
+402=depart, give place, go (turn) aside, withdraw self.
+403=revival.
+404=refresh.
+405=menstealer.
+406=Andrew.
+407=quit like men.
+408=Adronicus.
+409=manslayer.
+410=blameless.
+411=unspeakable.
+412=unspeakable.
+413=that faileth not.
+414=more tolerable.
+415=unmerciful.
+416=drive with the wind.
+417=wind.
+418=impossible.
+419=unsearchable.
+420=patient.
+421=past finding out; unsearchable.
+422=that needeth not to be ashamed.
+423=blameless, unrebukeable.
+424=go up.
+425=eased, liberty, rest.
+426=(should have) examined(-d).
+427=without.
+428=not commodious.
+429=find.
+430=bear with, endure, forbear, suffer.
+431=sister's son.
+432=anise.
+433=convenient, be fit.
+434=fierce.
+435=fellow, husband, man, sir.
+436=resist, withstand.
+437=give thanks.
+438=flower.
+439=fire of coals.
+440=coal of fire.
+441=men-pleaser.
+442=human, common to man, man(-kind), (man-)kind, men's, after the manner of men.
+443=murderer.
+444=certain, man.
+445=be the deputy.
+446=deputy.
+447=forbear, leave, loose.
+448=without mercy.
+449=unwashen.
+450=arise, lift up, raise up (again), rise (again), stand up(-right).
+451=Anna.
+452=Annas.
+453=fool(-ish), unwise.
+454=folly, madness.
+455=open.
+456=build again.
+457=X open.
+458=iniquity, X transgress(-ion of) the law, unrighteousness.
+459=without law, lawless, transgressor, unlawful, wicked.
+460=without law.
+461=lift (set) up, make straight.
+462=unholy.
+463=forbearance.
+464=strive against.
+465=in exchange.
+466=fill up.
+467=recompense, render, repay.
+468=recompense.
+469=reward.
+470=answer again, reply against.
+471=gainsay, say against.
+472=hold fast, hold to, support.
+473=for, in the room of.
+474=have.
+475=that oppose themselves.
+476=adversary.
+477=opposition.
+478=resist.
+479=bid again.
+480=adversary, be contrary, oppose.
+481=over against.
+482=help, partaker, support.
+483=answer again, contradict, deny, gainsay(-er), speak against.
+484=help.
+485=contradiction, gainsaying, strife.
+486=revile again.
+487=ransom.
+488=measure again.
+489=recompense.
+490=Antioch.
+491=of Antioch.
+492=pass by on the other side.
+493=Antipas.
+494=Antipatris.
+495=over against.
+496=resist.
+497=war against.
+498=oppose themselves, resist.
+499=(like) figure (whereunto).
+500=antichrist.
+501=draw (out).
+502=thing to draw with.
+503=bear up into.
+504=dry, without water.
+505=without dissimulation (hypocrisy), unfeigned.
+506=disobedient, that is not put under, unruly.
+507=above, brim, high, up.
+508=upper room.
+509=from above, again, from the beginning (very first), the top.
+510=upper.
+511=above, higher.
+512=unprofitable(-ness).
+513=axe.
+514=due reward, meet, (un-)worthy.
+515=desire, think good, count (think) worthy.
+516=as becometh, after a godly sort, worthily(-thy).
+517=invisible (thing).
+518=bring word (again), declare, report, shew (again), tell.
+519=hang himself.
+520=bring, carry away, lead (away), put to death, take away.
+521=unlearned.
+522=take (away).
+523=ask again, require.
+524=be past feeling.
+525=deliver, depart.
+526=alienate, be alien.
+527=tender.
+528=meet.
+529=meet.
+530=once.
+531=unchangeable.
+532=unprepared.
+533=deny.
+534=from henceforth.
+535=finishing.
+536=first-fruits.
+537=all (things), every (one), whole.
+538=deceive.
+539=deceit(-ful, -fulness), deceivableness(-ving).
+540=without father.
+541=brightness.
+542=see.
+543=disobedience, unbelief.
+544=not believe, disobedient, obey not, unbelieving.
+545=disobedient.
+546=threaten.
+547=X straitly, threatening.
+548=be absent.
+549=go.
+550=renounce.
+551=not to be tempted.
+552=unskilful.
+553=look (wait) for.
+554=put off, spoil.
+555=putting off.
+556=drive.
+557=nought.
+558=freeman.
+559=Apelles.
+560=hope for again.
+561=before, contrary, over against, in the presence of.
+562=endless.
+563=without distraction.
+564=uncircumcised.
+565=come, depart, go (aside, away, back, out, .
+566=it is enough.
+567=abstain.
+568=be, have, receive.
+569=believe not.
+570=unbelief.
+571=that believeth not, faithless, incredible thing, infidel, unbeliever(-ing).
+572=bountifulness, liberal(-ity), simplicity, singleness.
+573=single.
+574=liberally.
+575=(X here-)after, ago, at, because of, before, by (the space of), for(-th), from, in, (out) of, off, (up-)on(-ce), since, with.
+576=become, go out, turn.
+577=cast away.
+578=have respect.
+579=be refused.
+580=casting away, loss.
+581=being dead.
+582=taxing.
+583=tax, write.
+584=(ap-)prove, set forth, shew.
+585=demonstration.
+586=(give, pay, take) tithe.
+587=acceptable.
+588=accept, receive (gladly).
+589=go (travel) into a far country, journey.
+590=taking a far journey.
+591=deliver (again), give (again), (re-)pay(-ment be made), perform, recompense, render, requite, restore, reward, sell, yield.
+592=separate.
+593=disallow, reject.
+594=acceptation.
+595=putting away (off).
+596=barn, garner.
+597=lay up in store.
+598=press.
+599=be dead, death, die, lie a-dying, be slain (X with).
+600=restore (again).
+601=reveal.
+602=appearing, coming, lighten, manifestation, be revealed, revelation.
+603=earnest expectation.
+604=reconcile.
+605=restitution.
+606=be appointed, (be) laid up.
+607=behead.
+608=shut up.
+609=cut off.
+610=sentence.
+611=answer.
+612=answer.
+613=hide.
+614=hid, kept secret.
+615=put to death, kill, slay.
+616=beget, produce.
+617=roll away (back).
+618=receive, take.
+619=enjoy(-ment).
+620=leave, remain.
+621=lick.
+622=destroy, die, lose, mar, perish.
+623=Apollyon.
+624=Apollonia.
+625=Apollos.
+626=answer (for self), make defence, excuse (self), speak for self.
+627=answer (for self), clearing of self, defence.
+628=wash (away).
+629=deliverance, redemption.
+630=(let) depart, dismiss, divorce, forgive, let go, loose, put (send) away, release, set at liberty.
+631=wipe off.
+632=give.
+633=wash.
+634=fall.
+635=err, seduce.
+636=sail away.
+637=wash.
+638=choke.
+639=(stand in) doubt, be perplexed.
+640=perplexity.
+641=cast.
+642=take.
+643=take up.
+644=shadow.
+645=(with-)draw (away), after we were gotten from.
+646=falling away, forsake.
+647=(writing of) divorcement.
+648=uncover.
+649=put in, send (away, forth, out), set (at liberty).
+650=defraud, destitute, kept back by fraud.
+651=apostleship.
+652=apostle, messenger, he that is sent.
+653=provoke to speak.
+654=bring again, pervert, turn away (from).
+655=abhor.
+656=(put) out of the synagogue(-s).
+657=bid farewell, forsake, take leave, send away.
+658=finish.
+659=cast off, lay apart (aside, down), put away (off).
+660=shake off.
+661=repay.
+662=be very bold.
+663=severity.
+664=sharply(-ness).
+665=turn away.
+666=absence.
+667=bring, carry (away).
+668=escape.
+669=say, speak forth, utterance.
+670=unlade.
+671=using.
+672=depart.
+673=depart (asunder).
+674=hearts failing.
+675=Appii.
+676=which no man can approach.
+677=none (void of, without) offence.
+678=without respect of persons.
+679=from falling.
+680=touch.
+681=kindle, light.
+682=Apphia.
+683=cast away, put away (from), thrust away (from).
+684=damnable(-nation), destruction, die, perdition, X perish, pernicious ways, waste.
+685=curse.
+686=haply, (what) manner (of man), no doubt, perhaps, so be, then, therefore, truly, wherefore.
+687=therefore.
+688=Arabia.
+689=Aram.
+690=Arabian.
+691=linger.
+692=barren, idle, slow.
+693=(of) silver.
+694=money, (piece of) silver (piece).
+695=silversmith.
+696=silver.
+697=Areopagus, Mars' Hill.
+698=Areopagite.
+699=pleasing.
+700=please.
+701=(things that) please(-ing), reason.
+702=Aretas.
+703=praise, virtue.
+704=lamb.
+705=number.
+706=number.
+707=Arimathaea.
+708=Aristarchus.
+709=dine.
+710=left (hand).
+711=Aristobulus.
+712=dinner.
+713=enough, suffice (-ient).
+714=be content, be enough, suffice, be sufficient.
+715=bear.
+716=chariot.
+717=Armageddon.
+718=espouse.
+719=joint.
+720=deny, refuse.
+721=lamb.
+722=plough.
+723=plough.
+724=extortion, ravening, spoiling.
+725=robbery.
+726=catch (away, up), pluck, pull, take (by force).
+727=extortion, ravening.
+728=earnest.
+729=without seam.
+730=male, man.
+731=unspeakable.
+732=sick (folk, -ly).
+733=abuser of (that defile) self with mankind.
+734=Artemas.
+735=Diana.
+736=mainsail.
+737=this day (hour), hence(-forth), here(-after), hither(-to), (even) now, (this) present.
+738=new born.
+739=perfect.
+740=(shew-)bread, loaf.
+741=season.
+742=Arphaxad.
+743=archangel.
+744=(them of) old (time).
+745=Archelaus.
+746=beginning, corner, (at the, the) first (estate), magistrate, power, principality, principle, rule.
+747=author, captain, prince.
+748=of the high-priest.
+749=chief (high) priest, chief of the priests.
+750=chief shepherd.
+751=Archippus.
+752=(chief) ruler of the synagogue.
+753=masterbuilder.
+754=chief among the publicans.
+755=governor (ruler) of the feast.
+756=(rehearse from the) begin(-ning).
+757=reign (rule) over.
+758=chief (ruler), magistrate, prince, ruler.
+759=(sweet) spice.
+760=Asa.
+761=which cannot be moved, unmovable.
+762=not to be quenched, unquenchable.
+763=ungodly(-liness).
+764=commit (live, that after should live) ungodly.
+765=ungodly (man).
+766=filthy, lasciviousness, wantonness.
+767=mean.
+768=Aser.
+769=disease, infirmity, sickness, weakness.
+770=be diseased, impotent folk (man), (be) sick, (be, be made) weak.
+771=infirmity.
+772=more feeble, impotent, sick, without strength, weak(-er, -ness, thing).
+773=Asia.
+774=of Asia.
+775=chief of Asia.
+776=abstinence.
+777=fasting.
+778=exercise.
+779=bottle.
+780=gladly.
+781=fool.
+782=embrace, greet, salute, take leave.
+783=greeting, salutation.
+784=without spot, unspotted.
+785=asp.
+786=implacable, truce-breaker.
+787=farthing.
+788=close.
+789=Assos.
+790=have no certain dwelling-place.
+791=fair.
+792=star.
+793=unstable.
+794=without natural affection.
+795=err, swerve.
+796=lightning, bright shining.
+797=lighten, shine.
+798=star.
+799=Asyncritos.
+800=agree not.
+801=foolish, without understanding.
+802=covenant-breaker.
+803=certainty, safety.
+804=certain(-ty), safe, sure.
+805=make fast (sure).
+806=assuredly, safely.
+807=behave self uncomely (unseemly).
+808=shame, that which is unseemly.
+809=uncomely.
+810=excess, riot.
+811=riotous.
+812=behave self disorderly.
+813=unruly.
+814=disorderly.
+815=childless, without children.
+816=behold earnestly (stedfastly), fasten (eyes), look (earnestly, stedfastly, up stedfastly), set eyes.
+817=in the absence of, without.
+818=despise, dishonour, suffer shame, entreat shamefully.
+819=dishonour, reproach, shame, vile.
+820=despised, without honour, less honourable (comparative degree).
+821=handle shamefully.
+822=vapour.
+823=moment.
+824=amiss, harm, unreasonable.
+825=Attalia.
+826=shine.
+827=break of day.
+828=Augustus.
+829=self-willed.
+830=of own accord, willing of self.
+831=usurp authority over.
+832=pipe.
+833=court, (sheep-)fold, hall, palace.
+834=minstrel, piper.
+835=abide, lodge.
+836=pipe.
+837=grow (up), (give the) increase.
+838=increase.
+839=(to-)morrow, next day.
+840=austere.
+841=contentment, sufficiency.
+842=content.
+843=condemned of self.
+844=of own accord, of self.
+845=eye-witness.
+846=her, it(-self), one, the other, (mine) own, said, (self-), the same, (him-, my-, thy-)self, (your-)selves, she, that, their(-s), them(-selves), there(-at, - by, -in, -into, -of, -on, -with), they, (these) things, this (man), those, together, very, which.
+847=(t-)here.
+848=her (own), (of) him(-self), his (own), of it, thee, their (own), them(-selves), they.
+849=with .
+850=dark.
+851=cut (smite) off, take away.
+852=that is not manifest.
+853=corrupt, disfigure, perish, vanish away.
+854=vanish away.
+855=vanished out of sight.
+856=draught.
+857=neglecting.
+858=singleness.
+859=deliverance, forgiveness, liberty, remission.
+860=joint.
+861=immortality, incorruption, sincerity.
+862=not (in-, un-)corruptible, immortal.
+863=cry, forgive, forsake, lay aside, leave, let (alone, be, go, have), omit, put (send) away, remit, suffer, yield up.
+864=come abroad.
+865=despiser of those that are good.
+866=without covetousness, not greedy of filthy lucre.
+867=departing.
+868=depart, draw (fall) away, refrain, withdraw self.
+869=suddenly.
+870=without fear.
+871=make like.
+872=look.
+873=divide, separate, sever.
+874=occasion.
+875=foam.
+876=foaming.
+877=folly, foolishly(-ness).
+878=fool(-ish), unwise.
+879=fall asleep.
+880=dumb, without signification.
+881=Achaz.
+882=Achaia.
+883=Achaicus.
+884=unthankful.
+885=Achim.
+886=made without (not made with) hands.
+887=mist.
+888=unprofitable.
+889=become unprofitable.
+890=unprofitable.
+891=as far as, for, in(-to), till, (even, un-)to, until, while.
+892=chaff.
+893=that cannot lie.
+894=wormwood.
+895=without life.
+896=Baal.
+897=Babylon.
+898=degree.
+899=deep(-ness, things), depth.
+900=deep.
+901=deep, very early.
+902=branch.
+903=Balaam.
+904=Balac.
+905=bag, purse.
+906=arise, cast (out), X dung, lay, lie, pour, put (up), send, strike, throw (down), thrust.
+907=Baptist, baptize, wash.
+908=baptism.
+909=baptism, washing.
+910=Baptist.
+911=dip.
+912=Barabbas.
+913=Barak.
+914=Barachias.
+915=barbarian(-rous).
+916=burden, charge, heavy, press.
+917=dull.
+918=Bartholomeus.
+919=Barjesus.
+920=Bar-jona.
+921=Barnabas.
+922=burden(-some), weight.
+923=Barsabas.
+924=Bartimaeus.
+925=overcharge.
+926=grievous, heavy, weightier.
+927=very precious.
+928=pain, toil, torment, toss, vex.
+929=torment.
+930=tormentor.
+931=torment.
+932=kingdom, + reign.
+933=king's court.
+934=royal.
+935=king.
+936=king, reign.
+937=king's, nobleman, royal.
+938=queen.
+939=foot.
+940=bewitch.
+941=bear, carry, take up.
+942=bramble, bush.
+943=measure.
+944=frog.
+945=use vain repetitions.
+946=abomination.
+947=abominable.
+948=abhor, abominable.
+949=firm, of force, stedfast, sure.
+950=confirm, (e-)stablish.
+951=confirmation.
+952=profane (person).
+953=profane.
+954=Beelzebub.
+955=Belial.
+956=dart.
+957=very well.
+958=Benjamin.
+959=Bernice.
+960=Berea.
+961=of Berea.
+962=Bethabara.
+963=Bethany.
+964=Bethesda.
+965=Bethlehem.
+966=Bethsaida.
+967=Bethphage.
+968=judgment-seat, set (foot) on, throne.
+969=beryl.
+970=violence.
+971=press, suffer violence.
+972=mighty.
+973=violent.
+974=little book.
+975=bill, book, scroll, writing.
+976=book.
+977=eat.
+978=Bithynia.
+979=good, life, living.
+980=live.
+981=manner of life.
+982=of (pertaining to, things that pertain to) this life.
+983=hurtful.
+984=hurt.
+985=bring forth, bud, spring (up).
+986=Blastus.
+987=(speak) blaspheme(-er, -mously, -my), defame, rail on, revile, speak evil.
+988=blasphemy, evil speaking, railing.
+989=blasphemer(-mous), railing.
+990=seeing.
+991=behold, beware, lie, look (on, to), perceive, regard, see, sight, take heed.
+992=must be put.
+993=Boanerges.
+994=cry.
+995=cry.
+996=help.
+997=help, succor.
+998=helper.
+999=ditch, pit.
+1000=cast.
+1001=sound.
+1002=dart.
+1003=Booz.
+1004=mire.
+1005=north.
+1006=feed, keep.
+1007=Bosor.
+1008=herb.
+1009=(vine) cluster (of the vine).
+1010=counsellor.
+1011=consult, take counsel, determine, be minded, purpose.
+1012=advise, counsel, will.
+1013=purpose, will.
+1014=be disposed, minded, intend, list, (be, of own) will (-ing).
+1015=hill.
+1016=ox.
+1017=prize.
+1018=rule.
+1019=be slack, tarry.
+1020=sail slowly.
+1021=slow.
+1022=slackness.
+1023=arm.
+1024=few words, little (space, while).
+1025=babe, (young) child, infant.
+1026=(send) rain, wash.
+1027=thunder(-ing).
+1028=rain.
+1029=snare.
+1030=gnashing.
+1031=gnash.
+1032=send forth.
+1033=meat, victuals.
+1034=meat.
+1035=eating, food, meat.
+1036=begin to sink, drown.
+1037=deep.
+1038=tanner.
+1039=fine linen.
+1040=fine linen.
+1041=altar.
+1042=Gabbatha.
+1043=Gabriel.
+1044=canker.
+1045=Gad.
+1046=Gadarene.
+1047=treasure.
+1048=Gaza.
+1049=treasury.
+1050=Gaius.
+1051=milk.
+1052=Galatian.
+1053=Galatia.
+1054=of Galatia.
+1055=calm.
+1056=Galilee.
+1057=Galilean, of Galilee.
+1058=Gallio.
+1059=Gamaliel.
+1060=marry (a wife).
+1061=give in marriage.
+1062=marriage, wedding.
+1063=and, as, because (that), but, even, for, indeed, no doubt, seeing, then, therefore, verily, what, why, yet.
+1064=belly, + with child, womb.
+1065=and besides, doubtless, at least, yet.
+1066=Gedeon (in the King James Version).
+1067=hell.
+1068=Gethsemane.
+1069=neighbour.
+1070=laugh.
+1071=laughter.
+1072=fill (be) full.
+1073=be full.
+1074=age, generation, nation, time.
+1075=count by descent.
+1076=genealogy.
+1077=birthday.
+1078=generation, nature(-ral).
+1079=birth.
+1080=bear, beget, be born, bring forth, conceive, be delivered of, gender, make, spring.
+1081=fruit, generation.
+1082=Gennesaret.
+1083=birth.
+1084=they that are born.
+1085=born, country(-man), diversity, generation, kind(-red), nation, offspring, stock.
+1086=Gergesene.
+1087=senate.
+1088=old.
+1089=eat, taste.
+1090=dress.
+1091=husbandry.
+1092=husbandman.
+1093=country, earth(-ly), ground, land, world.
+1094=old age.
+1095=be (wax) old.
+1096=arise, be assembled, be(-come, -fall, -have self), be brought (to pass), (be)come (to pass), continue, be divided, draw, be ended, fall, be finished, follow, be found, be fulfilled, + God forbid, grow, happen, have, be kept, be made, be married, be ordained to be, partake, pass, be performed, be published, require, seem, be showed, X soon as it was, sound, be taken, be turned, use, wax, will, would, be wrought.
+1097=allow, be aware (of), feel, (have) know(-ledge), perceived, be resolved, can speak, be sure, understand.
+1098=new wine.
+1099=sweet, fresh.
+1100=tongue.
+1101=bag.
+1102=fuller.
+1103=own, sincerity, true.
+1104=naturally.
+1105=blackness.
+1106=advice, + agree, judgment, mind, purpose, will.
+1107=certify, declare, make known, give to understand, do to wit, wot.
+1108=knowledge, science.
+1109=expert.
+1110=acquaintance, (which may be) known, notable.
+1111=murmur.
+1112=grudging, murmuring.
+1113=murmurer.
+1114=seducer.
+1115=Golgotha.
+1116=Gomorrha.
+1117=burden, merchandise.
+1118=parent.
+1119=knee(X -l).
+1120=bow the knee, kneel down.
+1121=bill, learning, letter, scripture, writing, written.
+1122=scribe, town-clerk.
+1123=written.
+1124=scripture.
+1125=describe, write(-ing, -ten).
+1126=old wives'.
+1127=be vigilant, wake, (be) watch(-ful).
+1128=exercise.
+1129=exercise.
+1130=be naked.
+1131=naked.
+1132=nakedness.
+1133=silly woman.
+1134=wife.
+1135=wife, woman.
+1136=Gog.
+1137=corner, quarter.
+1138=David.
+1139=have a (be vexed with, be possessed with) devil(-s).
+1140=devil, god.
+1141=devilish.
+1142=devil.
+1143=bite.
+1144=tear.
+1145=weep.
+1146=ring.
+1147=finger.
+1148=Dalmanutha.
+1149=Dalmatia.
+1150=tame.
+1151=heifer.
+1152=Damaris.
+1153=Damascene.
+1154=Damascus.
+1155=borrow, lend.
+1156=debt.
+1157=creditor.
+1158=Daniel.
+1159=be at charges, consume, spend.
+1160=cost.
+1161=also, and, but, moreover, now (often unexpressed in English).
+1162=prayer, request, supplication.
+1163=behoved, be meet, must (needs), (be) need(-ful), ought, should.
+1164=example.
+1165=make a shew.
+1166=shew.
+1167=fear.
+1168=be afraid.
+1169=fearful.
+1170=such a man.
+1171=grievously, vehemently.
+1172=sup (X -er).
+1173=feast, supper.
+1174=too superstitious.
+1175=superstition.
+1176=(eight-)een, ten.
+1177=twelve.
+1178=fifteen.
+1179=Decapolis.
+1180=fourteen.
+1181=tenth (part), tithe.
+1182=tenth.
+1183=pay (receive) tithes.
+1184=accepted(-table).
+1185=allure, beguile, entice.
+1186=tree.
+1187=spearman.
+1188=right (hand, side).
+1189=beseech, pray (to), make request.
+1190=of Derbe.
+1191=Derbe.
+1192=skin.
+1193=leathern, of a skin.
+1194=beat, smite.
+1195=bind.
+1196=bind.
+1197=bundle.
+1198=in bonds, prisoner.
+1199=band, bond, chain, string.
+1200=jailor, keeper of the prison.
+1201=prison.
+1202=prisoner.
+1203=Lord, master.
+1204=come (hither), hither(-to).
+1205=come, X follow.
+1206=next day.
+1207=second .
+1208=afterward, again, second(-arily, time).
+1209=accept, receive, take.
+1210=bind, be in bonds, knit, tie, wind.
+1211=also, and, doubtless, now, therefore.
+1212=bewray, certain, evident, manifest.
+1213=declare, shew, signify.
+1214=Demas.
+1215=make an oration.
+1216=Demetrius.
+1217=maker.
+1218=people.
+1219=common, openly, publickly.
+1220=pence, penny(-worth).
+1221=(what-)soever.
+1222=verily.
+1223=after, always, among, at, to avoid, because of (that), briefly, by, for (cause) .
+1224=come over, pass (through).
+1225=accuse.
+1226=affirm constantly.
+1227=see clearly.
+1228=false accuser, devil, slanderer.
+1229=declare, preach, signify.
+1230=X after, be past, be spent.
+1231=(would) enquire, know the uttermost.
+1232=make known.
+1233=hearing.
+1234=murmur.
+1235=be awake.
+1236=lead life, living.
+1237=come after.
+1238=crown.
+1239=(make) distribute(-ion), divide, give.
+1240=room.
+1241=gird.
+1242=covenant, testament.
+1243=difference, diversity.
+1244=divide.
+1245=thoroughly purge.
+1246=convince.
+1247=(ad-)minister (unto), serve, use the office of a deacon.
+1248=(ad-)minister(-ing, -tration, -try), office, relief, service(-ing).
+1249=deacon, minister, servant.
+1250=two hundred.
+1251=hear.
+1252=contend, make (to) differ(-ence), discern, doubt, judge, be partial, stagger, waver.
+1253=discern(-ing), disputation.
+1254=forbid.
+1255=commune, noise abroad.
+1256=dispute, preach (unto), reason (with), speak.
+1257=cease.
+1258=language, tongue.
+1259=reconcile.
+1260=cast in mind, consider, dispute, muse, reason, think.
+1261=dispute, doubtful(-ing), imagination, reasoning, thought.
+1262=scatter.
+1263=charge, testify (unto), witness.
+1264=strive.
+1265=continue, remain.
+1266=cloven, divide, part.
+1267=division.
+1268=spread.
+1269=beckon.
+1270=thought.
+1271=imagination, mind, understanding.
+1272=open.
+1273=continue all night.
+1274=finish.
+1275=alway(-s), continually.
+1276=go over, pass (over), sail over.
+1277=sail over.
+1278=be grieved.
+1279=go through, journey in, pass by.
+1280=(be in) doubt, be (much) perplexed.
+1281=gain by trading.
+1282=cut (to the heart).
+1283=spoil.
+1284=break, rend.
+1285=tell unto.
+1286=do violence to.
+1287=disperse, scatter (abroad), strew, waste.
+1288=pluck asunder, pull in pieces.
+1289=scatter abroad.
+1290=(which are) scattered (abroad).
+1291=charge, that which was (give) commanded(-ment).
+1292=space.
+1293=difference, distinction.
+1294=perverse(-rt), turn away.
+1295=bring safe, escape (safe), heal, make perfectly whole, save.
+1296=instrumentality.
+1297=commandment.
+1298=trouble.
+1299=appoint, command, give, (set in) order, ordain.
+1300=continue.
+1301=keep.
+1302=wherefore, why.
+1303=appoint, make, testator.
+1304=abide, be, continue, tarry.
+1305=food.
+1306=dawn.
+1307=transparent.
+1308=be better, carry, differ from, drive up and down, be (more) excellent, make matter, publish, be of more value.
+1309=escape.
+1310=blaze abroad, commonly report, spread abroad, fame.
+1311=corrupt, destroy, perish.
+1312=corruption.
+1313=differing, divers, more excellent.
+1314=keep.
+1315=kill, slay.
+1316=depart.
+1317=apt to teach.
+1318=taught, which .
+1319=doctrine, learning, teaching.
+1320=doctor, master, teacher.
+1321=teach.
+1322=doctrine, hath been taught.
+1323=tribute.
+1324=Didymus.
+1325=adventure, bestow, bring forth, commit, deliver (up), give, grant, hinder, make, minister, number, offer, have power, put, receive, set, shew, smite (+ with the hand), strike (+ with the palm of the hand), suffer, take, utter, yield.
+1326=arise, awake, raise, stir up.
+1327=highway.
+1328=interpreter.
+1329=expound, interpret(-ation).
+1330=come, depart, go (about, abroad, everywhere, over, through, throughout), pass (by, over, through, throughout), pierce through, travel, walk through.
+1331=make enquiry for.
+1332=two years old.
+1333=two years.
+1334=declare, shew, tell.
+1335=declaration.
+1336=continually, for ever.
+1337=where two seas meet.
+1338=pierce.
+1339=go further, be parted, after the space of.
+1340=confidently (constantly) affirm.
+1341=righteous judgment.
+1342=just, meet, right(-eous).
+1343=righteousness.
+1344=free, justify(-ier), be righteous.
+1345=judgment, justification, ordinance, righteousness.
+1346=justly, (to) righteously(-ness).
+1347=justification.
+1348=judge.
+1349=judgment, punish, vengeance.
+1350=net.
+1351=double-tongued.
+1352=for which cause, therefore, wherefore.
+1353=go throughout, pass through.
+1354=Dionysius.
+1355=wherefore.
+1356=which fell down from Jupiter.
+1357=reformation.
+1358=break through (up).
+1359=Castor and Pollux.
+1360=because (that), for, therefore.
+1361=Diotrephes.
+1362=double, two-fold more.
+1363=double.
+1364=again, twice.
+1365=doubt.
+1366=with two edges, two-edged.
+1367=two thousand.
+1368=strain at (probably by misprint).
+1369=set at variance.
+1370=division, sedition.
+1371=cut asunder (in sunder).
+1372=(be, be a-)thirst(-y).
+1373=thirst.
+1374=double minded.
+1375=persecution.
+1376=persecutor.
+1377=ensue, follow (after), given to, (suffer) persecute(-ion), press forward.
+1378=decree, ordinance.
+1379=be subject to ordinances.
+1380=be accounted, (of own) please(-ure), be of reputation, seem (good), suppose, think, trow.
+1381=allow, discern, examine, X like, (ap-)prove, try.
+1382=experience(-riment), proof, trial.
+1383=trial, trying.
+1384=approved, tried.
+1385=beam.
+1386=deceitful.
+1387=use deceit.
+1388=craft, deceit, guile, subtilty.
+1389=handle deceitfully.
+1390=gift.
+1391=dignity, glory(-ious), honour, praise, worship.
+1392=(make) glorify(-ious), full of (have) glory, honour, magnify.
+1393=Dorcas.
+1394=gift, giving.
+1395=giver.
+1396=bring into subjection.
+1397=bondage.
+1398=be in bondage, (do) serve(-ice).
+1399=handmaid(-en).
+1400=servant.
+1401=bond(-man), servant.
+1402=bring into (be under) bondage, X given, become (make) servant.
+1403=feast.
+1404=dragon.
+1405=take.
+1406=piece (of silver).
+1407=sickle.
+1408=course.
+1409=Drusilla.
+1410=be able, can (do, + -not), could, may, might, be possible, be of power.
+1411=ability, abundance, meaning, might(-ily, -y, -y deed), (worker of) miracle(-s), power, strength, violence, mighty (wonderful) work.
+1412=strengthen.
+1413=of great authority, mighty, potentate.
+1414=be mighty.
+1415=able, could, (that is) mighty (man), possible, power, strong.
+1416=set.
+1417=both, twain, two.
+1418=hard, + grievous, etc.
+1419=grievous to be borne.
+1420=bloody flux.
+1421=hard to be uttered.
+1422=hard.
+1423=hardly.
+1424=west.
+1425=hard to be understood.
+1426=evil report.
+1427=twelve.
+1428=twelfth.
+1429=twelve tribes.
+1430=housetop.
+1431=gift.
+1432=without a cause, freely, for naught, in vain.
+1433=give.
+1434=gift.
+1435=gift, offering.
+1436=let alone.
+1437=before, but, except, (and) if, (if) so, (what-, whither-)soever, though, when (-soever), whether (or), to whom, (who-)so(-ever).
+1438=alone, her (own, -self), (he) himself, his (own), itself, one (to) another, our (thine) own(-selves), + that she had, their (own, own selves), (of) them(-selves), they, thyself, you, your (own, own conceits, own selves, -selves).
+1439=commit, leave, let (alone), suffer.
+1440=seventy, three score and ten.
+1441=seventy times.
+1442=seventh.
+1443=Eber.
+1444=Hebrew.
+1445=Hebrew.
+1446=Hebrew.
+1447=in (the) Hebrew (tongue).
+1448=approach, be at hand, come (draw) near, be (come, draw) nigh.
+1449=write (in).
+1450=surety.
+1451=from , at hand, near, nigh (at hand, unto), ready.
+1452=nearer.
+1453=awake, lift (up), raise (again, up), rear up, (a-)rise (again, up), stand, take up.
+1454=resurrection.
+1455=spy.
+1456=dedication.
+1457=consecrate, dedicate.
+1458=accuse, call in question, implead, lay to the charge.
+1459=forsake, leave.
+1460=dwell among.
+1461=graff in(-to).
+1462=crime laid against, laid to charge.
+1463=be clothed with.
+1464=X hinder.
+1465=hinder, be tedious unto.
+1466=temperance.
+1467=can(-not) contain, be temperate.
+1468=temperate.
+1469=make of the number.
+1470=hid in.
+1471=great with child.
+1472=anoint.
+1473=I, me.
+1474=lay even with the ground.
+1475=ground.
+1476=settled, stedfast.
+1477=ground.
+1478=Ezekias.
+1479=will worship.
+1480=custom.
+1481=ethnarch.
+1482=heathen (man).
+1483=after the manner of Gentiles.
+1484=Gentile, heathen, nation, people.
+1485=custom, manner, be wont.
+1486=be custom (manner, wont).
+1487=forasmuch as, if, that, (al-)though, whether.
+1488=art, be.
+1489=if (so be that, yet).
+1490=(or) else, if (not, otherwise), otherwise.
+1491=appearance, fashion, shape, sight.
+1492=be aware, behold, X can (+ not tell), consider, (have) know(-ledge), look (on), perceive, see, be sure, tell, understand, wish, wot.
+1493=idol's temple.
+1494=(meat, thing that is) offered (in sacrifice, sacrificed) to (unto) idols.
+1495=idolatry.
+1496=idolater.
+1497=idol.
+1498=mean, + perish, should be, was, were.
+1499=if (that), though.
+1500=without a cause, (in) vain(-ly).
+1501=twenty.
+1502=give place.
+1503=be like.
+1504=image.
+1505=sincerity.
+1506=pure, sincere.
+1507=roll together.
+1508=but, except (that), if not, more than, save (only) that, saving, till.
+1509=except.
+1510=am, have been, X it is I, was.
+1511=am, was.
+1512=if so be (that), seeing, though.
+1513=if by any means.
+1514=be at (have, live in) peace, live peaceably.
+1515=one, peace, quietness, rest, + set at one again.
+1516=peaceable.
+1517=make peace.
+1518=peacemaker.
+1519=(abundant-)ly, against, among, as, at, (back-)ward, before, by, concerning, + continual, + far more exceeding, for (intent, purpose), fore, + forth, in (among, at, unto, -so much that, -to), to the intent that, + of one mind, + never, of, (up-)on, + perish, + set at one again, (so) that, therefore(-unto), throughout, til, to (be, the end, -ward), (here-)until(-to)
+1520=a(-n, -ny, certain), + abundantly, man, one (another), only, other, some.
+1521=bring in(-to), (+ was to) lead into.
+1522=hear.
+1523=receive.
+1524=enter (go) into.
+1525=X arise, come (in, into), enter in(-to), go in (through).
+1526=agree, are, be, dure, X is, were.
+1527=one by one.
+1528=call in.
+1529=coming, enter(-ing) in (to).
+1530=run (spring) in.
+1531=come (enter) in, go into.
+1532=run in.
+1533=bring (in), lead into.
+1534=after that(-ward), furthermore, then.
+1535=if, or, whether.
+1536=he that, if a(-ny) man('s thing, from any, ought), whether any, whosoever.
+1537=after, among, X are, at, betwixt(-yond), by (the means of), exceedingly, (+ abundantly above), for(- th), from (among, forth, up), + grudgingly, + heartily, X heavenly, X hereby, + very highly, in
+1538=any, both, each (one), every (man, one, woman), particularly.
+1539=always.
+1540=hundred.
+1541=hundred years old.
+1542=hundredfold.
+1543=centurion.
+1544=bring forth, cast (forth, out), drive (out), expel, leave, pluck (pull, take, thrust) out, put forth (out), send away (forth, out).
+1545=end, way to escape.
+1546=lighten the ship.
+1547=give in marriage.
+1548=give in marriage.
+1549=nephew.
+1550=spend.
+1551=expect, look (tarry) for, wait (for).
+1552=manifest.
+1553=be absent.
+1554=let forth (out).
+1555=declare.
+1556=a (re-)venge.
+1557=(a-, re-)venge(-ance), punishment.
+1558=a (re-)venger.
+1559=persecute.
+1560=delivered.
+1561=looking for.
+1562=strip, take off from, unclothe.
+1563=there, thither(-ward), (to) yonder (place).
+1564=from that place, (from) thence, there.
+1565=he, it, the other (same), selfsame, that (same, very), X their, X them, they, this, those.
+1566=there.
+1567=en- (re-)quire, seek after (carefully, diligently).
+1568=affright, greatly (sore) amaze.
+1569=greatly wondering.
+1570=cast out.
+1571=purge (out).
+1572=burn.
+1573=faint, be weary.
+1574=pierce.
+1575=break off.
+1576=exclude.
+1577=assembly, church.
+1578=avoid, eschew, go out of the way.
+1579=swim out.
+1580=carry out.
+1581=cut down (off, out), hew down, hinder.
+1582=be very attentive.
+1583=tell.
+1584=shine forth.
+1585=forget.
+1586=make choice, choose (out), chosen.
+1587=fail.
+1588=chosen, elect.
+1589=chosen, election.
+1590=faint.
+1591=wipe.
+1592=deride.
+1593=convey self away.
+1594=awake.
+1595=willingly.
+1596=wilfully, willingly.
+1597=of a long time, of old.
+1598=tempt.
+1599=send away (forth).
+1600=stretch forth.
+1601=be cast, fail, fall (away, off), take none effect.
+1602=sail (away, thence).
+1603=fulfill.
+1604=accomplishment.
+1605=amaze, astonish.
+1606=give up the ghost.
+1607=come (forth, out of), depart, go (forth, out), issue, proceed (out of).
+1608=give self over to fornication.
+1609=reject.
+1610=pluck up by the root, root up.
+1611=be amazed, amazement, astonishment, trance.
+1612=subvert.
+1613=exceedingly trouble.
+1614=cast, put forth, stretch forth (out).
+1615=finish.
+1616=X instantly.
+1617=more earnestly.
+1618=without ceasing, fervent.
+1619=fervently.
+1620=cast out, expound.
+1621=shake (off).
+1622=but, except(-ed), other than, out of, outside, unless, without.
+1623=sixth.
+1624=avoid, turn (aside, out of the way).
+1625=bring up, nourish.
+1626=born out of due time.
+1627=bear, bring forth, carry forth (out).
+1628=escape, flee.
+1629=terrify.
+1630=sore afraid, exceedingly fear.
+1631=put forth.
+1632=gush (pour) out, run greedily (out), shed (abroad, forth), spill.
+1633=depart out.
+1634=give (yield) up the ghost.
+1635=willingly.
+1636=olive (berry, tree).
+1637=oil.
+1638=Olivet.
+1639=Elamite.
+1640=less, under, worse, younger.
+1641=have lack.
+1642=decrease, make lower.
+1643=carry, drive, row.
+1644=lightness.
+1645=light.
+1646=least, very little (small), smallest.
+1647=less than the least.
+1648=Eleazar.
+1649=rebuke.
+1650=evidence, reproof.
+1651=convict, convince, tell a fault, rebuke, reprove.
+1652=miserable.
+1653=have compassion (pity on), have (obtain, receive, shew) mercy (on).
+1654=alms(-deeds).
+1655=merciful.
+1656=(+ tender) mercy.
+1657=liberty.
+1658=free (man, woman), at liberty.
+1659=deliver, make free.
+1660=coming.
+1661=of ivory.
+1662=Eliakim.
+1663=Eliezer.
+1664=Eliud.
+1665=Elisabeth.
+1666=Elissaeus.
+1667=fold up.
+1668=sore.
+1669=full of sores.
+1670=draw.
+1671=Greece.
+1672=Gentile, Greek.
+1673=Greek.
+1674=Greek.
+1675=Grecian.
+1676=Greek.
+1677=impute, put on account.
+1678=Elmodam.
+1679=(have, thing) hope(-d) (for), trust.
+1680=faith, hope.
+1681=Elymas.
+1682=Eloi.
+1683=me, mine own (self), myself.
+1684=come (get) into, enter (into), go (up) into, step in, take ship.
+1685=cast into.
+1686=dip.
+1687=intrude into.
+1688=put in.
+1689=behold, gaze up, look upon, (could) see.
+1690=straitly charge, groan, murmur against.
+1691=I, me, my(-self).
+1692=(will) spue.
+1693=be mad against.
+1694=Emmanuel.
+1695=Emmaus.
+1696=continue.
+1697=Emmor.
+1698=I, me, mine, my.
+1699=of me, mine (own), my.
+1700=me, mine, my.
+1701=mocking.
+1702=mock.
+1703=mocker, scoffer.
+1704=walk in.
+1705=fill.
+1706=fall among (into).
+1707=entangle (in, self with).
+1708=plaiting.
+1709=breathe.
+1710=buy and sell, make merchandise.
+1711=merchandise.
+1712=merchandise.
+1713=merchant.
+1714=burn up.
+1715=against, at, before, (in presence, sight) of.
+1716=spit (upon).
+1717=manifest, openly.
+1718=appear, declare (plainly), inform, (will) manifest, shew, signify.
+1719=affrighted, afraid, tremble.
+1720=breathe on.
+1721=engrafted.
+1722=about, after, against, + almost, X altogether, among, X as, at, before, between, (here-)by (+ all means)
+1723=take up in arms.
+1724=thing in the sea.
+1725=before.
+1726=before, in the presence of.
+1727=(over) against, contrary.
+1728=rule (by mistake for 
+1729=lacking.
+1730=manifest token.
+1731=do, show (forth).
+1732=declare, evident token, proof.
+1733=eleven.
+1734=eleventh.
+1735=can (+ not) be.
+1736=be at home (present).
+1737=clothe in, wear.
+1738=just.
+1739=building.
+1740=glorify.
+1741=glorious, gorgeous(-ly), honourable.
+1742=clothing, garment, raiment.
+1743=enable, (increase in) strength(-en), be (make) strong.
+1744=creep.
+1745=putting on.
+1746=array, clothe (with), endue, have (put) on.
+1747=lay wait.
+1748=lay wait for.
+1749=lying in wait.
+1750=wrap in.
+1751=such things as .
+1752=because, for (cause, sake), (where-)fore, by reason of, that.
+1753=operation, strong, (effectual) working.
+1754=do, (be) effectual (fervent), be mighty in, shew forth self, work (effectually in).
+1755=operation, working.
+1756=effectual, powerful.
+1757=bless.
+1758=entangle with, have a quarrel against, urge.
+1759=(t-)here, hither.
+1760=think.
+1761=device, thought.
+1762=be, (there) is.
+1763=year.
+1764=come, be at hand, present.
+1765=strengthen.
+1766=ninth.
+1767=nine.
+1768=ninety and nine.
+1769=speechless.
+1770=make signs.
+1771=intent, mind.
+1772=lawful, under law.
+1773=before day.
+1774=dwell in.
+1775=unity.
+1776=trouble.
+1777=in danger of, guilty of, subject to.
+1778=commandment.
+1779=bury.
+1780=burying.
+1781=(give) charge, (give) command(-ments), injoin.
+1782=(from) hence, on either side.
+1783=intercession, prayer.
+1784=dear, more honourable, precious, in reputation.
+1785=commandment, precept.
+1786=of that place.
+1787=within.
+1788=regard, (give) reference, shame.
+1789=nourish up in.
+1790=X quake, X trembled.
+1791=shame.
+1792=sporting selves.
+1793=deal with, make intercession.
+1794=wrap in (together).
+1795=engrave.
+1796=do despite unto.
+1797=dream(-er).
+1798=dream.
+1799=before, in the presence (sight) of, to.
+1800=Enos.
+1801=hearken.
+1802=Enoch.
+1803=six.
+1804=shew forth.
+1805=redeem.
+1806=bring forth (out), fetch (lead) out.
+1807=deliver, pluck out, rescue.
+1808=put (take) away.
+1809=desire.
+1810=suddenly.
+1811=follow.
+1812=six hundred.
+1813=blot out, wipe away.
+1814=leap up.
+1815=resurrection.
+1816=spring up.
+1817=raise (rise) up.
+1818=beguile, deceive.
+1819=suddenly.
+1820=(in) despair.
+1821=send (away, forth, out).
+1822=accomplish, thoroughly furnish.
+1823=glistening.
+1824=by and by, immediately, presently, straightway.
+1825=raise up.
+1826=depart, get (to land), go out.
+1827=convince.
+1828=draw away.
+1829=vomit.
+1830=search diligently.
+1831=come (forth, out), depart (out of), escape, get out, go (abroad, away, forth, out, thence), proceed (forth), spread abroad.
+1832=be lawful, let, X may(-est).
+1833=ask, enquire, search.
+1834=declare, tell.
+1835=sixty(-fold), threescore.
+1836=after, following, X morrow, next.
+1837=sound forth.
+1838=use.
+1839=amaze, be (make) astonished, be beside self (selves), bewitch, wonder.
+1840=be able.
+1841=decease, departing.
+1842=destroy.
+1843=confess, profess, promise.
+1844=adjure.
+1845=exorcist.
+1846=break up, pluck out.
+1847=set at nought.
+1848=contemptible, despise, least esteemed, set at nought.
+1849=authority, jurisdiction, liberty, power, right, strength.
+1850=exercise authority upon, bring under the (have) power of.
+1851=principal.
+1852=awake out of sleep.
+1853=X out of sleep.
+1854=away, forth, (with-)out (of, -ward), strange.
+1855=out(-side, -ward, - wardly), (from) without.
+1856=drive out, thrust in.
+1857=outer.
+1858=keep the feast.
+1859=feast, holyday.
+1860=message, promise.
+1861=profess, (make) promise.
+1862=promise.
+1863=bring upon.
+1864=earnestly contend for.
+1865=gather thick together.
+1866=Epenetus.
+1867=commend, laud, praise.
+1868=praise.
+1869=exalt self, poise (lift, take) up.
+1870=be ashamed.
+1871=beg.
+1872=follow (after).
+1873=hear.
+1874=hear.
+1875=when.
+1876=necessary.
+1877=launch (thrust) out, return.
+1878=put in mind.
+1879=rest in (upon).
+1880=come again, return.
+1881=rise up against.
+1882=correction.
+1883=above, more than, (up-)on, over.
+1884=relieve.
+1885=province.
+1886=habitation.
+1887=day following, morrow, next day (after).
+1888=in the very act.
+1889=Epaphras.
+1890=foam out.
+1891=Epaphroditus.
+1892=raise, stir up.
+1893=because, else, for that (then, -asmuch as), otherwise, seeing that, since, when.
+1894=after that, because, for (that, -asmuch as), seeing, since.
+1895=forasmuch.
+1896=behold, look upon.
+1897=seeing.
+1898=bringing in.
+1899=after that(-ward), then.
+1900=beyond.
+1901=reach forth.
+1902=be clothed upon.
+1903=fisher's coat.
+1904=come (in, upon).
+1905=ask (after, questions), demand, desire, question.
+1906=answer.
+1907=give (take) heed unto, hold forth, mark, stay.
+1908=use despitefully, falsely accuse.
+1909=about (the times), above, after, against, among, as long as (touching), at, beside, X have charge of, (be-, (where-))fore, in (a place, as much as, the time of, -to), (because) of, (up-)on (behalf of), over, (by, for) the space of, through(-out), (un-)to(-ward), with.
+1910=come (into), enter into, go abroad, sit upon, take ship.
+1911=beat into, cast (up-)on, fall, lay (on), put (unto), stretch forth, think on.
+1912=be chargeable to, overcharge.
+1913=set on.
+1914=look upon, regard, have respect to.
+1915=piece.
+1916=cry.
+1917=laying (lying) in wait.
+1918=marry.
+1919=earthly, in earth, terrestrial.
+1920=blow.
+1921=(ac-, have, take)know(-ledge, well), perceive.
+1922=(ac-)knowledge(-ing, - ment).
+1923=superscription.
+1924=inscription, write in (over, thereon).
+1925=shew.
+1926=receive.
+1927=(be) dwelling (which were) there, stranger.
+1928=add to.
+1929=deliver unto, give, let (+ (her drive)), offer.
+1930=set in order.
+1931=go down.
+1932=clemency, gentleness.
+1933=gentle, moderation, patient.
+1934=desire, enquire, seek (after, for).
+1935=appointed to death.
+1936=laying (putting) on.
+1937=covet, desire, would fain, lust (after).
+1938=lust after.
+1939=concupiscence, desire, lust (after).
+1940=set on.
+1941=appeal (unto), call (on, upon), surname.
+1942=cloke.
+1943=cover.
+1944=accursed.
+1945=impose, be instant, (be) laid (there-, up-)on, (when) lay (on), lie (on), press upon.
+1946=Epicurean.
+1947=help.
+1948=give sentence.
+1949=catch, lay hold (up-)on, take (by, hold of, on).
+1950=(be) forget(-ful of).
+1951=call, choose.
+1952=fail.
+1953=forgetful.
+1954=rest.
+1955=interpretation.
+1956=determine, expound.
+1957=testify.
+1958=refresh self.
+1959=take care of.
+1960=diligently.
+1961=abide (in), continue (in), tarry.
+1962=consent.
+1963=thought.
+1964=forswear self.
+1965=perjured person.
+1966=following, next.
+1967=daily.
+1968=fall into (on, upon) lie on, press upon.
+1969=rebuke.
+1970=choke.
+1971=(earnestly) desire (greatly), (greatly) long (after), lust.
+1972=earnest (vehement) desire.
+1973=longed for.
+1974=great desire.
+1975=come.
+1976=sew on.
+1977=cast upon.
+1978=notable, of note.
+1979=victuals.
+1980=look out, visit.
+1981=rest upon.
+1982=overshadow.
+1983=look diligently, take the oversight.
+1984=the office of a "bishop", bishoprick, visitation.
+1985=bishop, overseer.
+1986=become uncircumcised.
+1987=know, understand.
+1988=master.
+1989=write (a letter, unto).
+1990=endued with knowledge.
+1991=confirm, strengthen.
+1992="epistle," letter.
+1993=stop mouths.
+1994=come (go) again, convert, (re-)turn (about, again).
+1995=conversion.
+1996=gather (together).
+1997=assembling (gathering) together.
+1998=come running together.
+1999=that which cometh upon, + raising up.
+2000=dangerous.
+2001=be the more fierce.
+2002=heap.
+2003=authority, commandment.
+2004=charge, command, injoin.
+2005=accomplish, do, finish, (make) (perfect), perform(X -ance).
+2006=things which are needful.
+2007=add unto, lade, lay upon, put (up) on, set on (up), + surname, X wound.
+2008=(straitly) charge, rebuke.
+2009=punishment.
+2010=give leave (liberty, license), let, permit, suffer.
+2011=commission.
+2012=steward, tutor.
+2013=obtain.
+2014=appear, give light.
+2015=appearing, brightness.
+2016=notable.
+2017=give light.
+2018=add, bring (against), take.
+2019=cry (against), give a shout.
+2020=begin to dawn, X draw on.
+2021=go about, take in hand (upon).
+2022=to pour upon:--pour in.
+2023=add, minister (nourishment, unto).
+2024=supply.
+2025=anoint.
+2026=build thereon (thereupon, on, upon).
+2027=run aground.
+2028=call.
+2029=behold.
+2030=eye-witness.
+2031=say.
+2032=celestial, (in) heaven(-ly), high.
+2033=seven.
+2034=seven times.
+2035=seven thousand.
+2036=answer, bid, bring word, call, command, grant, say (on), speak, tell.
+2037=Erastus.
+2038=commit, do, labor for, minister about, trade (by), work.
+2039=craft, diligence, gain, work.
+2040=labourer, worker(-men).
+2041=deed, doing, labour, work.
+2042=provoke.
+2043=stick fast.
+2044=utter.
+2045=search.
+2046=call, say, speak (of), tell.
+2047=desert, wilderness.
+2048=desert, desolate, solitary, wilderness.
+2049=(bring to, make) desolate(-ion), come to nought.
+2050=desolation.
+2051=strive.
+2052=contention(-ious), strife.
+2053=wool.
+2054=contention, debate, strife, variance.
+2055=goat.
+2056=goat, kid.
+2057=Hermas.
+2058=interpretation.
+2059=interpret.
+2060=Hermes, Mercury.
+2061=Hermogenes.
+2062=creeping thing, serpent.
+2063=red.
+2064=accompany, appear, bring, come, enter, fall out, go, grow, X light, X next, pass, resort, be set.
+2065=ask, beseech, desire, intreat, pray.
+2066=apparel, clothing, raiment, robe.
+2067=government.
+2068=devour, eat, live.
+2069=Esli.
+2070=are, be, have our being, X have hope, + (the gospel) was (preached unto) us.
+2071=shall (should) be (have), (shall) come (to pass), X may have, X fall, what would follow, X live long, X sojourn.
+2072=glass.
+2073=evening(-tide).
+2074=Esrom.
+2075=be, have been, belong.
+2076=are, be(-long), call, X can(-not), come, consisteth, X dure for a while, + follow, X have, (that) is (to say), make, meaneth, X must needs, + profit, + remaineth, + wrestle.
+2077=be.
+2078=ends of, last, latter end, lowest, uttermost.
+2079=point of death.
+2080=(with-)in(-ner, -to, -ward).
+2081=inward(-ly), (from) within, without.
+2082=inner, within.
+2083=fellow, friend.
+2084=man of other tongue.
+2085=teach other doctrine(-wise).
+2086=unequally yoke together with.
+2087=altered, else, next (day), one, (an-)other, some, strange.
+2088=otherwise.
+2089=after that, also, ever, (any) further, (t-)henceforth (more), hereafter, (any) longer, (any) more(-one), now, still, yet.
+2090=prepare, provide, make ready.
+2091=preparation.
+2092=prepared, (made) ready(-iness, to our hand).
+2093=ready.
+2094=year.
+2095=good, well (done).
+2096=Eve.
+2097=declare, bring (declare, show) glad (good) tidings, preach (the gospel).
+2098=gospel.
+2099=evangelist.
+2100=please (well).
+2101=acceptable(-ted), wellpleasing.
+2102=acceptably, + please well.
+2103=Eubulus.
+2104=more noble, nobleman.
+2105=fair weather.
+2106=think good, (be well) please(-d), be the good (have, take) pleasure, be willing.
+2107=desire, good pleasure (will), X seem good.
+2108=benefit, good deed done.
+2109=do good.
+2110=benefactor.
+2111=fit, meet.
+2112=anon, as soon as, forthwith, immediately, shortly, straightway.
+2113=(come) with a straight course.
+2114=be of good cheer (merry).
+2115=of good cheer, the more cheerfully.
+2116=governor, make straight.
+2117=anon, by and by, forthwith, immediately, straightway.
+2118=righteousness.
+2119=have leisure (convenient time), spend time.
+2120=opportunity.
+2121=convenient, in time of need.
+2122=conveniently, in season.
+2123=easier.
+2124=fear(-ed).
+2125=(moved with) fear.
+2126=devout.
+2127=bless, praise.
+2128=blessed.
+2129=blessing (a matter of) bounty (X -tifully), fair speech.
+2130=ready to distribute.
+2131=Eunice.
+2132=agree.
+2133=benevolence, good will.
+2134=make.
+2135=eunuch.
+2136=Euodias.
+2137=(have a) prosper(-ous journey).
+2138=easy to be intreated.
+2139=which doth so easily beset.
+2140=to do good.
+2141=ability.
+2142=wealth.
+2143=grace.
+2144=acceptable(-ted).
+2145=X attend upon.
+2146=make a fair show.
+2147=find, get, obtain, perceive, see.
+2148=Euroklydon.
+2149=broad.
+2150=godliness, holiness.
+2151=show piety, worship.
+2152=devout, godly.
+2153=godly.
+2154=easy to be understood.
+2155=pitiful, tender-hearted.
+2156=decently, honestly.
+2157=comeliness.
+2158=comely, honourable.
+2159=mightily, vehemently.
+2160=jesting.
+2161=Eutychus.
+2162=good report.
+2163=of good report.
+2164=bring forth abundantly.
+2165=fare, make glad, be (make) merry, rejoice.
+2166=Euphrates.
+2167=gladness, joy.
+2168=(give) thank(-ful, -s).
+2169=thankfulness, (giving of) thanks(-giving).
+2170=thankful.
+2171=prayer, vow.
+2172=pray, will, wish.
+2173=profitable, meet for use.
+2174=be of good comfort.
+2175=sweet savour (smell, -smelling).
+2176=(on the) left.
+2177=leap on.
+2178=(at) once (for all).
+2179=of Ephesus.
+2180=Ephesian, of Ephesus.
+2181=Ephesus.
+2182=inventor.
+2183=course.
+2184=daily.
+2185=reach.
+2186=assault, come (in, to, unto, upon), be at hand (instant), present, stand (before, by, over).
+2187=Ephraim.
+2188=Ephphatha.
+2189=enmity, hatred.
+2190=enemy, foe.
+2191=viper.
+2192=be (able, X hold, possessed with), accompany, + begin to amend, can(+ -not), X conceive, count, diseased, do + eat, + enjoy, + fear, following, have, hold, keep, + lack, + go to law, lie, + must needs, + of necessity, + need, next, + recover, + reign, + rest, + return, X sick, take for, + tremble, + uncircumcised, use.
+2193=even (until, unto), (as) far (as), how long, (un-)til(-l), (hither-, un-, up) to, while(-s).
+2194=Zabulon.
+2195=Zacchaeus.
+2196=Zara.
+2197=Zacharias.
+2198=life(-time), (a-)live(-ly), quick.
+2199=Zebedee.
+2200=hot.
+2201=yoke, pair.
+2202=band.
+2203=Jupiter.
+2204=be fervent.
+2205=emulation, envy(-ing), fervent mind, indignation, jealousy, zeal.
+2206=affect, covet (earnestly), (have) desire, (move with) envy, be jealous over, (be) zealous(-ly affect).
+2207=zealous.
+2208=Zelotes.
+2209=damage, loss.
+2210=be cast away, receive damage, lose, suffer loss.
+2211=Zenas.
+2212=be (go) about, desire, endeavour, enquire (for), require, (X will) seek (after, for, means).
+2213=question.
+2214=question.
+2215=tares.
+2216=Zorobabel.
+2217=blackness, darkness, mist.
+2218=pair of balances, yoke.
+2219=leaven.
+2220=leaven.
+2221=take captive, catch.
+2222=life(-time).
+2223=girdle, purse.
+2224=gird.
+2225=live, preserve.
+2226=beast.
+2227=make alive, give life, quicken.
+2228=and, but (either), (n-)either, except it be, (n-)or (else), rather, save, than, that, what, yea.
+2229=surely.
+2230=be governor.
+2231=reign.
+2232=governor, prince, ruler.
+2233=account, (be) chief, count, esteem, governor, judge, have the rule over, suppose, think.
+2234=gladly.
+2235=already, (even) now (already), by this time.
+2236=most (very) gladly.
+2237=lust, pleasure.
+2238=mint.
+2239=manners.
+2240=come.
+2241=Eli.
+2242=Heli.
+2243=Elias.
+2244=age, stature.
+2245=how (what) great.
+2246=east, sun.
+2247=nail.
+2248=our, us, we.
+2249=us, we (ourselves).
+2250=age, + alway, (mid-)day (by day, (-ly)), + for ever, judgment, (day) time, while, years.
+2251=our, your (by a different reading).
+2252=be, was.
+2253=half dead.
+2254=our, (for) us, we.
+2255=half.
+2256=half an hour.
+2257=our (company), us, we.
+2258=agree, be, X have (+ charge of), hold, use, was(-t), were.
+2259=when.
+2260=than.
+2261=gentle.
+2262=Er.
+2263=quiet.
+2264=Herod.
+2265=Herodians.
+2266=Herodias.
+2267=Herodion.
+2268=Esaias.
+2269=Esau.
+2270=cease, hold peace, be quiet, rest.
+2271=quietness, silence.
+2272=peaceable, quiet.
+2273=whether.
+2274=be inferior, overcome.
+2275=diminishing, fault.
+2276=less, worse.
+2277=let .
+2278=roar, sound.
+2279=fame, sound.
+2280=Thaddaeus.
+2281=sea.
+2282=cherish.
+2283=Thamar.
+2284=amaze, astonish.
+2285=X amazed, + astonished, wonder.
+2286=deadly.
+2287=deadly.
+2288=X deadly, (be.
+2289=become dead, (cause to be) put to death, kill, mortify.
+2290=bury.
+2291=Thara.
+2292=be bold, X boldly, have confidence, be confident.
+2293=be of good cheer (comfort).
+2294=courage.
+2295=admiration.
+2296=admire, have in admiration, marvel, wonder.
+2297=wonderful thing.
+2298=marvel(-lous).
+2299=goddess.
+2300=behold, look (upon), see.
+2301=make a gazing stock.
+2302=spectacle, theatre.
+2303=brimstone.
+2304=divine, godhead.
+2305=godhead.
+2306=brimstone.
+2307=desire, pleasure, will.
+2308=will.
+2309=desire, be disposed (forward), intend, list, love, mean, please, have rather, (be) will (have, -ling, - ling(-ly)).
+2310=foundation.
+2311=(lay the) found(- ation), ground, settle.
+2312=taught of God.
+2313=fight against God.
+2314=to fight against God.
+2315=given by inspiration of God.
+2316=X exceeding, God, god(-ly, -ward).
+2317=godliness.
+2318=worshipper of God.
+2319=hater of God.
+2320=godhead.
+2321=Theophilus.
+2322=healing, household.
+2323=cure, heal, worship.
+2324=servant.
+2325=reap.
+2326=harvest.
+2327=reaper.
+2328=(be) warm(-ed, self).
+2329=heat.
+2330=summer.
+2331=Thessalonian.
+2332=Thessalonica.
+2333=Theudas.
+2334=behold, consider, look on, perceive, see.
+2335=sight.
+2336=sheath.
+2337=(give) suck(-ling).
+2338=female, woman.
+2339=trap.
+2340=catch.
+2341=fight with wild beasts.
+2342=(venomous, wild) beast.
+2343=lay up (treasure), (keep) in store, (heap) treasure (together, up).
+2344=treasure.
+2345=handle, touch.
+2346=afflict, narrow, throng, suffer tribulation, trouble.
+2347=afflicted(-tion), anguish, burdened, persecution, tribulation, trouble.
+2348=be dead, die.
+2349=mortal(-ity).
+2350=make ado (a noise), trouble self, set on an uproar.
+2351=tumult, uproar.
+2352=bruise.
+2353=cattle.
+2354=lament, mourn.
+2355=lamentation.
+2356=religion, worshipping.
+2357=religious.
+2358=(cause) to triumph (over).
+2359=hair.
+2360=trouble.
+2361=great drop.
+2362=seat, throne.
+2363=Thyatira.
+2364=daughter.
+2365=little (young) daughter.
+2366=tempest.
+2367=thyine.
+2368=incense, odour.
+2369=censer.
+2370=burn incense.
+2371=be highly displeased.
+2372=fierceness, indignation, wrath.
+2373=be wroth.
+2374=door, gate.
+2375=shield.
+2376=window.
+2377=that kept the door, porter.
+2378=sacrifice.
+2379=altar.
+2380=kill, (do) sacrifice, slay.
+2381=Thomas.
+2382=breast-plate.
+2383=Jairus.
+2384=also an Israelite:--Jacob.
+2385=James.
+2386=healing.
+2387=Jambres.
+2388=Janna.
+2389=Jannes.
+2390=heal, make whole.
+2391=Jared.
+2392=cure, heal(-ing).
+2393=jasper.
+2394=Jason.
+2395=physician.
+2396=behold, lo, see.
+2397=countenance.
+2398=X his acquaintance, when they were alone, apart, aside, due, his (own, proper, several), home, (her, our, thine, your) own (business), private(-ly), proper, severally, their (own).
+2399=ignorant, rude, unlearned.
+2400=behold, lo, see.
+2401=Idumaea.
+2402=sweat.
+2403=Jezabel.
+2404=Hierapolis.
+2405=office of the priesthood, priest's office.
+2406=priesthood.
+2407=execute the priest's office.
+2408=Jeremiah.
+2409=(high) priest.
+2410=Jericho.
+2411=temple.
+2412=as becometh holiness.
+2413=holy.
+2414=Jerusalem.
+2415=of Jerusalem.
+2416=commit sacrilege.
+2417=robber of churches.
+2418=minister.
+2419=Jerusalem.
+2420=priesthood.
+2421=Jesse.
+2422=Jephthah.
+2423=Jechonias.
+2424=Jesus.
+2425=able, + content, enough, good, great, large, long (while), many, meet, much, security, sore, sufficient, worthy.
+2426=sufficiency.
+2427=make able (meet).
+2428=supplication.
+2429=moisture.
+2430=Iconium.
+2431=cheerful.
+2432=cheerfulness.
+2433=be merciful, make reconciliation for.
+2434=propitiation.
+2435=mercyseat, propitiation.
+2436=be it far, merciful.
+2437=Illyricum.
+2438=latchet, thong.
+2439=clothe.
+2440=apparel, cloke, clothes, garment, raiment, robe, vesture.
+2441=apparel (X -led), array, raiment, vesture.
+2442=be affectionately desirous.
+2443=albeit, because, to the intent (that), lest, so as, (so) that, (for) to.
+2444=wherefore, why.
+2445=Joppa.
+2446=Jordan.
+2447=poison, rust.
+2448=Judah.
+2449=Judaea.
+2450=live as the Jews.
+2451=Jewish.
+2452=as do the Jews.
+2453=Jew(-ess), of Judaea.
+2454=Jews' religion.
+2455=Juda(-h, -s); Jude.
+2456=Julia.
+2457=Julius.
+2458=Junias.
+2459=Justus.
+2460=horseman.
+2461=horse(-men).
+2462=horse.
+2463=rainbow.
+2464=Isaac.
+2465=equal unto the angels.
+2466=Issachar.
+2467=know.
+2468=agree, be, X give thyself wholly to.
+2469=Iscariot.
+2470=agree, as much, equal, like.
+2471=equal(-ity).
+2472=like precious.
+2473=likeminded.
+2474=Israel.
+2475=Israelite.
+2476=abide, appoint, bring, continue, covenant, establish, hold up, lay, present, set (up), stanch, stand (by, forth, still, up).
+2477=see.
+2478=boisterous, mighty(-ier), powerful, strong(-er, man), valiant.
+2479=ability, might(-ily), power, strength.
+2480=be able, avail, can do(-not), could, be good, might, prevail, be of strength, be whole, + much work.
+2481=it may be.
+2482=Italy.
+2483=Italian.
+2484=Ituraea.
+2485=little (small) fish.
+2486=fish.
+2487=step.
+2488=Joatham.
+2489=Joanna.
+2490=Joannas.
+2491=John.
+2492=Job.
+2493=Joel.
+2494=Jonan.
+2495=Jonas.
+2496=Joram.
+2497=Jorim.
+2498=Josaphat.
+2499=Jose.
+2500=Joses.
+2501=Joseph.
+2502=Josias.
+2503=jot.
+2504=(and, even, even so, so) I (also, in like wise), both me, me also.
+2505=as.
+2506=destruction, pulling down.
+2507=cast (pull, put, take) down, destroy.
+2508=purge.
+2509=(even, as well) as.
+2510=fasten on.
+2511=(make) clean(-se), purge, purify.
+2512=cleansing, + purge, purification(-fying).
+2513=clean, clear, pure.
+2514=purification.
+2515=seat.
+2516=sit.
+2517=after(-ward), by (in) order.
+2518=(be a-)sleep.
+2519=master.
+2520=convenient, fit.
+2521=dwell, sit (by, down).
+2522=daily.
+2523=continue, set, sit (down), tarry.
+2524=let down.
+2525=appoint, be, conduct, make, ordain, set.
+2526=according to that, (inasmuch) as.
+2527=at all.
+2528=arm.
+2529=clearly see.
+2530=(according, forasmuch) as, because (that).
+2531=according to, (according, even) as, how, when.
+2532=and, also, both, but, even, for, if, or, so, that, then, therefore, when, yet.
+2533=Caiaphas.
+2534=and, at least.
+2535=Cain.
+2536=Cainan.
+2537=new.
+2538=newness.
+2539=and yet, although.
+2540=X always, opportunity, (convenient, due) season, (due, short, while) time, a while.
+2541=Caesar.
+2542=Caesarea.
+2543=although.
+2544=nevertheless, though.
+2545=burn, light.
+2546=and there, there (thither) also.
+2547=and afterward (from) (thence), thence also.
+2548=and him (other, them), even he, him also, them (also), (and) they.
+2549=evil, malice(-iousness), naughtiness, wickedness.
+2550=malignity.
+2551=curse, speak evil of.
+2552=suffering affliction.
+2553=be afflicted, endure afflictions (hardness), suffer trouble.
+2554=do(ing) evil.
+2555=evil-doer, malefactor.
+2556=bad, evil, harm, ill, noisome, wicked.
+2557=evil-doer, malefactor.
+2558=which suffer adversity, torment.
+2559=make evil affected, entreat evil, harm, hurt, vex.
+2560=amiss, diseased, evil, grievously, miserably, sick, sore.
+2561=affliction.
+2562=stubble.
+2563=pen, reed.
+2564=bid, call (forth), (whose, whose sur-)name (was (called)).
+2565=good olive tree.
+2566=very well.
+2567=teacher of good things.
+2568=fair havens.
+2569=well doing.
+2570=X better, fair, good(-ly), honest, meet, well, worthy.
+2571=vail.
+2572=cover, hide.
+2573=(in a) good (place), honestly, + recover, (full) well.
+2574=camel.
+2575=furnace.
+2576=close.
+2577=faint, sick, be wearied.
+2578=bow.
+2579=and (also) if (so much as), if but, at the least, though, yet.
+2580=Cana.
+2581=Canaanite (by mistake for a derivative from 
+2582=Candace, an Egyptian queen:--Candace.
+2583=line, rule.
+2584=Capernaum.
+2585=corrupt.
+2586=smoke.
+2587=Cappadocia.
+2588=(+ broken-)heart(-ed).
+2589=which knowest the hearts.
+2590=fruit.
+2591=Carpus.
+2592=be (bear, bring forth) fruit(-ful).
+2593=fruitful.
+2594=endure.
+2595=mote.
+2596=about, according as (to), after, against, (when they were) X alone, among, and, X apart, (even, like) as (concerning, pertaining to touching), X aside, at, before, beyond, by, to the charge of, (charita-)bly, concerning, + covered, (dai-)ly, down, every, (+ far more) exceeding, X more excellent, for, from .
+2597=come (get, go, step) down, fall (down).
+2598=cast down, lay.
+2599=burden.
+2600=descent.
+2601=bring (thrust) down.
+2602=conceive, foundation.
+2603=beguile of reward.
+2604=setter forth.
+2605=declare, preach, shew, speak of, teach.
+2606=laugh to scorn.
+2607=blame, condemn.
+2608=break.
+2609=bring (down, forth), (bring to) land, touch.
+2610=subdue.
+2611=bind up.
+2612=far more evident.
+2613=condemn.
+2614=follow after.
+2615=bring into bondage.
+2616=oppress.
+2617=confound, dishonour, (be a-, make a-)shame(-d).
+2618=burn (up, utterly).
+2619=cover, hide.
+2620=boast (against), glory, rejoice against.
+2621=keep, lie, sit at meat (down).
+2622=break.
+2623=shut up.
+2624=divide by lot.
+2625=(make) sit down (at meat).
+2626=overflow.
+2627=flood.
+2628=follow (after).
+2629=cut.
+2630=cast down headlong.
+2631=condemnation.
+2632=condemn, damn.
+2633=condemn(-ation).
+2634=exercise dominion over (lordship), be lord over, overcome.
+2635=speak against (evil of).
+2636=backbiting, evil speaking.
+2637=backbiter.
+2638=apprehend, attain, come upon, comprehend, find, obtain, perceive, (over-)take.
+2639=take into the number.
+2640=remnant.
+2641=forsake, leave, reserve.
+2642=stone.
+2643=atonement, reconciliation(-ing).
+2644=reconcile.
+2645=residue.
+2646=guestchamber, inn.
+2647=destroy, dissolve, be guest, lodge, come to nought, overthrow, throw down.
+2648=consider.
+2649=witness against.
+2650=abide.
+2651=alone.
+2652=curse.
+2653=curse.
+2654=consume.
+2655=be burdensome (chargeable).
+2656=beckon.
+2657=behold, consider, discover, perceive.
+2658=attain, come.
+2659=slumber.
+2660=prick.
+2661=(ac-)count worthy.
+2662=trample, tread (down, underfoot).
+2663=rest.
+2664=cease, (give) rest(-rain).
+2665=vail.
+2666=devour, drown, swallow (up).
+2667=fall (down).
+2668=arrive.
+2669=oppress, vex.
+2670=drown, sink.
+2671=curse(-d, ing).
+2672=curse.
+2673=abolish, cease, cumber, deliver, destroy, do away, become (make) of no (none, without) effect, fail, loose, bring (come) to nought, put away (down), vanish away, make void.
+2674=number with.
+2675=fit, frame, mend, (make) perfect(-ly join together), prepare, restore.
+2676=perfection.
+2677=perfecting.
+2678=beckon.
+2679=dig down, ruin.
+2680=build, make, ordain, prepare.
+2681=lodge, rest.
+2682=nest.
+2683=shadow.
+2684=spy out.
+2685=spy.
+2686=deal subtilly with.
+2687=appease, quiet.
+2688=behaviour.
+2689=apparel.
+2690=overthrow.
+2691=begin to wax wanton against.
+2692=overthrow, subverting.
+2693=overthrow.
+2694=hale.
+2695=slay.
+2696=seal.
+2697=possession.
+2698=do, lay, shew.
+2699=concision.
+2700=thrust through.
+2701=run down.
+2702=fall, give, sink down.
+2703=flee.
+2704=corrupt, utterly perish.
+2705=kiss.
+2706=despise.
+2707=despiser.
+2708=pour.
+2709=under the earth.
+2710=abuse.
+2711=cool.
+2712=wholly given to idolatry.
+2713=before, over against.
+2714=before (the presence of), in the sight of.
+2715=exercise authority.
+2716=cause, to (deed), perform, work (out).
+2717=come (down), depart, descend, go down, land.
+2719=devour.
+2720=guide, direct.
+2721=make insurrection against.
+2722=have, hold (fast), keep (in memory), let, X make toward, possess, retain, seize on, stay, take, withhold.
+2723=accuse, object.
+2724=accusation (X -ed).
+2725=accuser.
+2726=heaviness.
+2727=inform, instruct, teach.
+2728=canker.
+2729=prevail (against).
+2730=dwell(-er), inhabitant(-ter).
+2731=dwelling.
+2732=habitation.
+2733=habitation.
+2734=behold as in a glass.
+2735=very worthy deed.
+2736=beneath, bottom, down, under.
+2737=lower.
+2738=heat.
+2739=scorch.
+2740=be burned.
+2741=fervent heat.
+2742=(burning) heat.
+2743=sear with a hot iron.
+2744=(make) boast, glory, joy, rejoice.
+2745=boasting, (whereof) to glory (of), glorying, rejoice(-ing).
+2746=boasting, whereof I may glory, glorying, rejoicing.
+2747=Cencrea.
+2748=Cedron.
+2749=be (appointed, laid up, made, set), lay, lie.
+2750=graveclothes.
+2751=shear(-er).
+2752=shout.
+2753=bid, (at, give) command(-ment).
+2754=vain-glory.
+2755=desirous of vain-glory.
+2756=empty, (in) vain.
+2757=vain.
+2758=make (of none effect, of no reputation, void), be in vain.
+2759=prick, sting.
+2760=centurion.
+2761=in vain.
+2762=tittle.
+2763=potter.
+2764=of a potter.
+2765=pitcher.
+2766=tiling.
+2767=fill, pour out.
+2768=horn.
+2769=husk.
+2770=(get) gain, win.
+2771=gain, lucre.
+2772=money.
+2773=changer of money.
+2774=sum.
+2775=wound in the head.
+2776=head.
+2777=volume.
+2778=tribute.
+2779=garden.
+2780=gardener.
+2781=(honey-)comb.
+2782=preaching.
+2783=preacher.
+2784=preacher(-er), proclaim, publish.
+2785=whale.
+2786=Cephas.
+2787=ark.
+2788=harp.
+2789=harp.
+2790=harper.
+2791=Cilicia.
+2792=cinnamon.
+2793=be in danger, be (stand) in jeopardy.
+2794=peril.
+2795=(re-)move(-r), way.
+2796=moving.
+2797=Cis.
+2798=branch.
+2799=bewail, weep.
+2800=breaking.
+2801=broken, fragment.
+2802=Clauda.
+2803=Claudia.
+2804=Claudius.
+2805=wailing, weeping, X wept.
+2806=break.
+2807=key.
+2808=shut (up).
+2809=theft.
+2810=Cleopas.
+2811=glory.
+2812=thief.
+2813=steal.
+2814=branch.
+2815=Clement.
+2816=be heir, (obtain by) inherit(-ance).
+2817=inheritance.
+2818=heir.
+2819=heritage, inheritance, lot, part.
+2820=obtain an inheritance.
+2821=calling.
+2822=called.
+2823=oven.
+2824=part, region.
+2825=bed, table.
+2826=bed.
+2827=bow (down), be far spent, lay, turn to flight, wear away.
+2828=company.
+2829=theft.
+2830=raging, wave.
+2831=toss to and fro.
+2832=Cleophas.
+2833=X itching.
+2834=Cnidus.
+2835=farthing.
+2836=belly, womb.
+2837=(be a-, fall a-, fall on) sleep, be dead.
+2838=taking of rest.
+2839=common, defiled, unclean, unholy.
+2840=call common, defile, pollute, unclean.
+2841=communicate, distribute, be partaker.
+2842=(to) communicate(-ation), communion, (contri-)distribution, fellowship.
+2843=willing to communicate.
+2844=companion, X fellowship, partaker, partner.
+2845=bed, chambering, X conceive.
+2846=chamberlain.
+2847=scarlet (colour, coloured).
+2848=corn, grain.
+2849=punish.
+2850=X flattering.
+2851=punishment, torment.
+2852=buffet.
+2853=cleave, join (self), keep company.
+2854=eyesalve.
+2855=(money-)changer.
+2856=shorten.
+2857=Colosse.
+2858=Colossian.
+2859=bosom, creek.
+2860=swim.
+2861=pool.
+2862=colony.
+2863=have long hair.
+2864=hair.
+2865=bring, receive.
+2866=began to amend.
+2867=whiten.
+2868=dust.
+2869=cease.
+2870=lamentation.
+2871=slaughter.
+2872=(bestow) labour, toil, be wearied.
+2873=labour, + trouble, weariness.
+2874=dung(-hill).
+2875=cut down, lament, mourn, (be-)wail.
+2876=raven.
+2877=damsel, maid.
+2878=Corban, treasury.
+2879=Core.
+2880=eat enough, full.
+2881=Corinthian.
+2882=Corinth.
+2883=Cornelius.
+2884=measure.
+2885=adorn, garnish, trim.
+2886=worldly.
+2887=of good behaviour, modest.
+2888=ruler.
+2889=adorning, world.
+2890=Quartus.
+2891=cumi.
+2892=watch.
+2893=lighten.
+2894=basket.
+2895=bed.
+2896=cry (out).
+2897=surfeiting.
+2898=Calvary, skull.
+2899=border, hem.
+2900=mighty.
+2901=be strengthened, be (wax) strong.
+2902=hold (by, fast), keep, lay hand (hold) on, obtain, retain, take (by).
+2903=most excellent (noble).
+2904=dominion, might(-ily), power, strength.
+2905=cry out.
+2906=clamour, cry(-ing).
+2907=flesh.
+2908=better.
+2909=best, better.
+2910=hang.
+2911=steep place.
+2912=Crete, Cretian.
+2913=Crescens.
+2914=Crete.
+2915=barley.
+2916=barley.
+2917=avenge, condemned, condemnation, damnation, + go to law, judgment.
+2918=lily.
+2919=avenge, conclude, condemn, damn, decree, determine, esteem, judge, go to (sue at the) law, ordain, call in question, sentence to, think.
+2920=accusation, condemnation, damnation, judgment.
+2921=Crispus.
+2922=to judge, judgment (seat).
+2923=judge.
+2924=discerner.
+2925=knock.
+2926=secret.
+2927=hid(-den), inward(-ly), secret.
+2928=hide (self), keep secret, secret(-ly).
+2929=be clear as crystal.
+2930=crystal.
+2931=in secret.
+2932=obtain, possess, provide, purchase.
+2933=possession.
+2934=beast.
+2935=possessor.
+2936=create, Creator, make.
+2937=building, creation, creature, ordinance.
+2938=creature.
+2939=Creator.
+2940=sleight.
+2941=government.
+2942=(ship) master.
+2943=(round) about.
+2944=compass (about), come (stand) round about.
+2945=round about.
+2946=wallowing.
+2947=wallow.
+2948=maimed.
+2949=wave.
+2950=cymbal.
+2951=cummin.
+2952=dog.
+2953=of Cyprus.
+2954=Cyprus.
+2955=stoop (down).
+2956=of Cyrene, Cyrenian.
+2957=Cyrene.
+2958=Cyrenius.
+2959=lady.
+2960=Lord's.
+2961=have dominion over, lord, be lord of, exercise lordship over.
+2962=God, Lord, master, Sir.
+2963=dominion, government.
+2964=confirm.
+2965=dog.
+2966=carcase.
+2967=forbid, hinder, keep from, let, not suffer, withstand.
+2968=town, village.
+2969=town.
+2970=revelling, rioting.
+2971=gnat.
+2972=Cos.
+2973=Cosam.
+2974=deaf, dumb, speechless.
+2975=his lot be, cast lots, obtain.
+2976=Lazarus.
+2977=privily, secretly.
+2978=storm, tempest.
+2979=kick.
+2980=preach, say, speak (after), talk, tell, utter.
+2981=saying, speech.
+2982=lama.
+2983=accept, + be amazed, assay, attain, bring, X when I call, catch, come on (X unto), + forget, have, hold, obtain, receive (X after), take (away, up).
+2984=Lamech.
+2985=lamp, light, torch.
+2986=bright, clear, gay, goodly, gorgeous, white.
+2987=brightness.
+2988=sumptuously.
+2989=give light, shine.
+2990=be hid, be ignorant of, unawares.
+2991=hewn in stone.
+2992=people.
+2993=Laodicea.
+2994=Laodicean.
+2995=throat.
+2996=Lasea.
+2997=burst asunder.
+2998=hew.
+2999=(divine) service.
+3000=serve, do the service, worship(-per).
+3001=herb.
+3002=Lebbaeus.
+3003=legion.
+3004=ask, bid, boast, call, describe, give out, name, put forth, say(-ing, on), shew, speak, tell, utter.
+3005=remnant.
+3006=smooth.
+3007=be destitute (wanting), lack.
+3008=minister.
+3009=ministration(-try), service.
+3010=ministering.
+3011=minister(-ed).
+3012=towel.
+3013=scale.
+3014=leprosy.
+3015=leper.
+3016=mite.
+3017=Levi.
+3018=Levi.
+3019=Levite.
+3020=Levitical.
+3021=make white, whiten.
+3022=white.
+3023=lion.
+3024=forget.
+3025=winepress.
+3026=idle tale.
+3027=robber, thief.
+3028=receiving.
+3029=exceeding, great(-ly), sore, very (+ chiefest).
+3030=frankincense.
+3031=censer.
+3032=Libertine.
+3033=Libya.
+3034=stone.
+3035=of stone.
+3036=stone, cast stones.
+3037=(mill-, stumbling-)stone.
+3038=Pavement.
+3039=grind to powder.
+3040=haven.
+3041=lake.
+3042=dearth, famine, hunger.
+3043=linen.
+3044=Linus.
+3045=dainty.
+3046=pound.
+3047=southwest.
+3048=collection, gathering.
+3049=conclude, (ac-)count (of), + despise, esteem, impute, lay, number, reason, reckon, suppose, think (on).
+3050=reasonable, of the word.
+3051=oracle.
+3052=eloquent.
+3053=imagination, thought.
+3054=strive about words.
+3055=strife of words.
+3056=account, cause, communication, X concerning, doctrine, fame, X have to do, intent, matter, mouth, preaching, question, reason, + reckon, remove, say(-ing), shew, X speaker, speech, talk, thing, + none of these things move me, tidings, treatise, utterance, word, work.
+3057=spear.
+3058=revile.
+3059=railing, reproach(-fully).
+3060=railer, reviler.
+3061=pestilence(-t).
+3062=other, which remain, remnant, residue, rest.
+3063=besides, finally, furthermore, (from) henceforth, moreover, now, + it remaineth, then.
+3064=from henceforth.
+3065=Lucas, Luke.
+3066=Lucius.
+3067=washing.
+3068=wash.
+3069=Lydda.
+3070=Lydia.
+3071=Lycaonia.
+3072=in the speech of Lycaonia.
+3073=Lycia.
+3074=wolf.
+3075=make havock of.
+3076=cause grief, grieve, be in heaviness, (be) sorrow(-ful), be (make) sorry.
+3077=grief, grievous, + grudgingly, heaviness, sorrow.
+3078=Lysanias.
+3079=Lysias.
+3080=to be loosed.
+3081=it is better.
+3082=Lystra.
+3083=ransom.
+3084=redeem.
+3085=redeemed, redemption.
+3086=deliverer.
+3087=candlestick.
+3088=candle, light.
+3089=break (up), destroy, dissolve, (un-)loose, melt, put off.
+3090=Lois.
+3091=Lot.
+3092=Maath.
+3093=Magdala.
+3094=Magdalene.
+3095=sorcery.
+3096=use sorcery.
+3097=sorcerer, wise man.
+3098=Magog.
+3099=Madian.
+3100=be disciple, instruct, teach.
+3101=disciple.
+3102=disciple.
+3103=Mathusala.
+3104=Mainan.
+3105=be beside self (mad).
+3106=call blessed, count happy.
+3107=blessed, happy(X -ier).
+3108=blessedness.
+3109=Macedonia.
+3110=of Macedonia, Macedonian.
+3111=shambles.
+3112=(a-)far (off), good (great) way off.
+3113=afar off, from far.
+3114=bear (suffer) long, be longsuffering, have (long) patience, be patient, patiently endure.
+3115=longsuffering, patience.
+3116=patiently.
+3117=far, long.
+3118=live long.
+3119=disease.
+3120=effeminate, soft.
+3121=Maleleel.
+3122=chiefly, most of all, (e-)specially.
+3123=better, X far, (the) more (and more), (so) much (the more), rather.
+3124=Malchus.
+3125=grandmother.
+3126=mammon.
+3127=Manaen.
+3128=Manasses.
+3129=learn, understand.
+3130=(+ make) X mad.
+3131=manna.
+3132=by soothsaying.
+3133=fade away.
+3134=Maran-atha.
+3135=pearl.
+3136=Martha.
+3137=Mary.
+3138=Marcus, Mark.
+3139=marble.
+3140=charge, give (evidence), bear record, have (obtain, of) good (honest) report, be well reported of, testify, give (have) testimony, (be, bear, give, obtain) witness.
+3141=record, report, testimony, witness.
+3142=to be testified, testimony, witness.
+3143=take to record, testify.
+3144=martyr, record, witness.
+3145=gnaw.
+3146=scourge.
+3147=scourge.
+3148=plague, scourging.
+3149=pap.
+3150=vain jangling.
+3151=vain talker.
+3152=vain, vanity.
+3153=vanity.
+3154=become vain.
+3155=in vain.
+3156=Matthew.
+3157=Matthan.
+3158=Mathat.
+3159=Matthias.
+3160=Mattatha.
+3161=Mattathias.
+3162=sword.
+3163=fighting, strive, striving.
+3164=fight, strive.
+3165=I, me, my.
+3166=boast great things.
+3167=great things, wonderful works.
+3168=magnificence, majesty, mighty power.
+3169=excellent.
+3170=enlarge, magnify, shew great.
+3171=greatly.
+3172=majesty.
+3173=(+ fear) exceedingly, great(-est), high, large, loud, mighty, + (be) sore (afraid), strong, X to years.
+3174=greatness.
+3175=great men, lords.
+3176=exceeding great.
+3177=(by) interpret(-ation).
+3178=drunkenness.
+3179=put out, remove, translate, turn away.
+3180=wile, lie in wait.
+3181=border.
+3182=be drunk(-en).
+3183=drunkard.
+3184=drink well, make (be) drunk(-en).
+3185=the more.
+3186=greater.
+3187=elder, greater(-est), more.
+3188=ink.
+3189=black.
+3190=Meleas.
+3191=imagine, (pre-)meditate.
+3192=honey.
+3193=honeycomb.
+3194=Melita.
+3195=about, after that, be (almost), (that which is, things, + which was for) to come, intend, was to (be), mean, mind, be at the point, (be) ready, + return, shall (begin), (which, that) should (after, afterwards, hereafter) tarry, which was for, will, would, be yet.
+3196=member.
+3197=Melchi.
+3198=Melchisedec.
+3199=(take) care.
+3200=parchment.
+3201=find fault.
+3202=complainer.
+3203=even, indeed, so, some, truly, verily.
+3304=nay but, yea doubtless (rather, verily).
+3305=also, but, howbeit, nevertheless, yet.
+3306=abide, continue, dwell, endure, be present, remain, stand, tarry (for), X thine own.
+3307=deal, be difference between, distribute, divide, give participle
+3308=care.
+3309=(be, have) care(-ful), take thought.
+3310=part (X -akers).
+3311=dividing asunder, gift.
+3312=divider.
+3313=behalf, course, coast, craft, particular (+ -ly), part (+ -ly), piece, portion, respect, side, some sort(-what).
+3314=noon, south.
+3315=confirm.
+3316=mediator.
+3317=midnight.
+3318=Mesopotamia.
+3319=among, X before them, between, + forth, mid(-day, -night), midst, way.
+3320=middle wall.
+3321=midst of heaven.
+3322=be about the midst.
+3323=Messias.
+3324=replete (literally or figuratively):--full.
+3325=fill.
+3326=after(-ward), X that he again, against, among, X and, + follow, hence, hereafter, in, of, (up-)on, + our, X and setting, since, (un-)to, + together, when, with (+ -out).
+3327=depart, go, pass, remove.
+3328=change mind.
+3329=turn about.
+3330=give, impart.
+3331=change, removing, translation.
+3332=depart.
+3333=call (for, hither).
+3334=move away.
+3335=eat, have, be partaker, receive, take.
+3336=taking.
+3337=change.
+3338=repent (self).
+3339=change, transfigure, transform.
+3340=repent.
+3341=repentance.
+3342=between, mean while, next.
+3343=call (send) for.
+3344=pervert, turn.
+3345=transfer, transform (self).
+3346=carry over, change, remove, translate, turn.
+3347=afterward.
+3348=be partaker, pertain, take part, use.
+3349=be of doubtful mind.
+3350=X brought, carried(-ying) away (in-)to.
+3351=carry away, remove into.
+3352=fellowship.
+3353=fellow, partaker, partner.
+3354=figuratively, to estimate:--measure, mete.
+3355=firkin.
+3356=have compassion.
+3357=a little.
+3358=measure.
+3359=forehead.
+3360=till, (un-)to, until.
+3361=any but (that), X forbear, + God forbid, + lack, lest, neither, never, no (X wise in), none, nor, (can-)not, nothing, that not, un(-taken), without.
+3362=X before, but, except, if, no, (if, + whosoever) not.
+3363=albeit not, lest, that, no(-t, (-thing)).
+3364=any more, at all, by any (no) means, neither, never, no (at all), in no case (wise), nor ever, not (at all, in any wise).
+3365=not so.
+3366=neither, nor (yet), (no) not (once, so much as).
+3367=any (man, thing), no (man), none, not (at all, any man, a whit), nothing, + without delay.
+3368=never.
+3369=not yet.
+3370=Mede.
+3371=any longer, (not) henceforth, hereafter, no henceforward (longer, more, soon), not any more.
+3372=grow up.
+3374=sheepskin.
+3375=surely.
+3376=month.
+3377=shew, tell.
+3378=neither (followed by no), + never, not.
+3379=if peradventure, lest (at any time, haply), not at all, whether or not.
+3380=not yet.
+3381=lest (by any means, by some means, haply, perhaps).
+3382=thigh.
+3383=neither, (n-)or, so as much.
+3384=mother.
+3385=not (the particle usually not expressed, except by the form of the question).
+3386=how much more.
+3387=any (sometimes unexpressed except by the simple interrogative form of the sentence).
+3388=womb.
+3389=murderer of mothers.
+3390=chiefest city.
+3391=a (certain), + agree, first, one, X other.
+3392=defile.
+3393=pollution.
+3394=uncleanness.
+3395=mixture.
+3396=mingle.
+3397=a (little) (while).
+3398=least, less, little, small.
+3399=Miletus.
+3400=mile.
+3401=follow.
+3402=follower.
+3403=be mindful, remember.
+3404=hate(-ful).
+3405=recompence of reward.
+3406=rewarder.
+3407=hired servant.
+3408=hire, reward, wages.
+3409=hire.
+3410=hired house.
+3411=hired servant, hireling.
+3412=Mitylene.
+3413=Michael.
+3414=pound.
+3415=be mindful, remember, come (have) in remembrance.
+3416=Mnason.
+3417=mention, remembrance.
+3418=grave, sepulchre, tomb.
+3419=grave, sepulchre, tomb.
+3420=remembrance.
+3421=make mention; be mindful, remember.
+3422=memorial.
+3423=espouse.
+3424=having an impediment in his speech.
+3425=hardly.
+3426=bushel.
+3427=I, me, mine, my.
+3428=adulteress(-ous, -y).
+3429=commit adultery.
+3430=adultery.
+3431=commit adultery.
+3432=adulterer.
+3433=hardly, scarce(-ly), + with much work.
+3434=Moloch.
+3435=defile.
+3436=filthiness.
+3437=quarrel.
+3438=abode, mansion.
+3439=only (begotten, child).
+3440=alone, but, only.
+3441=alone, only, by themselves.
+3442=with one eye.
+3443=be desolate.
+3444=form.
+3445=form.
+3446=form.
+3447=make a calf.
+3448=calf.
+3449=painfulness, travail.
+3450=I, me, mine (own), my.
+3451=musician.
+3452=marrow.
+3453=instruct.
+3454=fable.
+3455=roar.
+3456=mock.
+3457=mill(-stone).
+3458=millstone.
+3459=mill.
+3460=Myra.
+3461=ten thousand.
+3462=anoint.
+3463=ten thousand.
+3464=ointment.
+3465=Mysia.
+3466=mystery.
+3467=cannot see far off.
+3468=stripe.
+3469=blame.
+3470=blemish.
+3471=become fool, make foolish, lose savour.
+3472=foolishness.
+3473=foolish talking.
+3474=fool(-ish, X -ishness).
+3475=Moses.
+3476=Naasson.
+3477=Nagge.
+3478=Nazareth.
+3479=of Nazareth.
+3480=Nazarene, of Nazareth.
+3481=Nathan.
+3482=Nathanael.
+3483=even so, surely, truth, verily, yea, yes.
+3484=Nain.
+3485=shrine, temple.
+3486=Naum.
+3487=(spike-)nard.
+3488=Narcissus.
+3489=make (suffer) shipwreck.
+3490=owner of a ship.
+3491=ship.
+3492=sailor, shipman.
+3493=Nachor.
+3494=young man.
+3495=young man.
+3496=Neapolis.
+3497=Naaman.
+3498=dead.
+3499=be dead, mortify.
+3500=deadness, dying.
+3501=new, young.
+3502=young.
+3503=youth.
+3504=novice.
+3505=Nero.
+3506=beckon.
+3507=cloud.
+3508=Nephthalim.
+3509=cloud.
+3510=reins.
+3511=worshipper.
+3512=youthful.
+3513=I protest by.
+3514=spin.
+3515=be a child.
+3516=babe, child (+ -ish).
+3517=Nereus.
+3518=Neri.
+3519=island.
+3520=island, isle.
+3521=fast(-ing).
+3522=fast.
+3523=fasting.
+3524=sober.
+3525=be sober, watch.
+3526=Niger.
+3527=Nicanor.
+3528=conquer, overcome, prevail, get the victory.
+3529=victory.
+3530=Nicodemus.
+3531=Nicolaitane.
+3532=Nicolaus.
+3533=Nicopolis.
+3534=victory.
+3535=Nineve.
+3536=of Nineve, Ninevite.
+3537=bason.
+3538=wash.
+3539=consider, perceive, think, understand.
+3540=device, mind, thought.
+3541=bastard.
+3542=X eat, pasture.
+3543=suppose, thing, be wont.
+3544=about the law, lawyer.
+3545=lawfully.
+3546=money.
+3547=doctor (teacher) of the law.
+3548=giving of the law.
+3549=establish, receive the law.
+3550=lawgiver.
+3551=law.
+3552=dote.
+3553=disease.
+3554=disease, infirmity, sickness.
+3555=brood.
+3556=chicken.
+3557=keep back, purloin.
+3558=south (wind).
+3559=admonition.
+3560=admonish, warn.
+3561=new moon.
+3562=discreetly.
+3563=mind, understanding.
+3564=Nymphas.
+3565=bride, daughter in law.
+3566=bridegroom.
+3567=bridechamber.
+3568=henceforth, + hereafter, of late, soon, present, this (time).
+3569=(but) now.
+3570=now.
+3571=(mid-)night.
+3572=pierce.
+3573=slumber.
+3574=night and day.
+3575=Noe.
+3576=dull, slothful.
+3577=back.
+3578=lodging.
+3579=entertain, lodge, (think it) strange.
+3580=lodge strangers.
+3581=host, strange(-r).
+3582=pot.
+3583=dry up, pine away, be ripe, wither (away).
+3584=dry land, withered.
+3585=of wood.
+3586=staff, stocks, tree, wood.
+3587=shave.
+3588=the, this, that, one, he, she, it, etc.
+3589=fourscore.
+3590=eighth.
+3591=weight.
+3592=he, she, such, these, thus.
+3593=journey.
+3594=guide, lead.
+3595=guide, leader.
+3596=go on a journey.
+3597=journey(-ing).
+3598=journey, (high-)way.
+3599=tooth.
+3600=sorrow, torment.
+3601=sorrow.
+3602=mourning.
+3603=called, which is (make), that is (to say).
+3604=Ozias.
+3605=stink.
+3606=from thence, (from) whence, where(-by, -fore, -upon).
+3607=sheet.
+3608=linen clothes.
+3609=(those) of the (his own) house(-hold).
+3610=(household) servant.
+3611=dwell.
+3612=prison.
+3613=habitation, house.
+3614=home, house(-hold).
+3615=they (them) of (his own) household.
+3616=guide the house.
+3617=goodman (of the house), householder, master of the house.
+3618=(be in) build(-er, -ing, up), edify, embolden.
+3619=building, edify(-ication, -ing).
+3620=edifying.
+3621=be steward.
+3622=dispensation, stewardship.
+3623=chamberlain, governor, steward.
+3624=home, house(-hold), temple.
+3625=earth, world.
+3626=keeper at home.
+3627=have compassion on.
+3628=mercy.
+3629=merciful, of tender mercy.
+3630=winebibber.
+3631=wine.
+3632=excess of wine.
+3633=suppose, think.
+3634=so (as), such as, what (manner of), which.
+3635=delay.
+3636=grievous, slothful.
+3637=the eighth day.
+3638=eight.
+3639=destruction.
+3640=of little faith.
+3641=almost, brief(-ly), few, (a) little, + long, a season, short, small, a while.
+3642=feebleminded.
+3643=despise.
+3644=destroyer.
+3645=destroy.
+3646=(whole) burnt offering.
+3647=perfect soundness.
+3648=entire, whole.
+3649=howl.
+3650=all, altogether, every whit, + throughout, whole.
+3651=wholly.
+3652=Olympas.
+3653=untimely fig.
+3654=at all, commonly, utterly.
+3655=shower.
+3656=commune, talk.
+3657=communication.
+3658=company.
+3659=eye.
+3660=swear.
+3661=with one accord (mind).
+3662=agree.
+3663=of (subject to) like passions.
+3664=like, + manner.
+3665=like as, similitude.
+3666=be (make) like, (in the) liken(-ess), resemble.
+3667=made like to, likeness, shape, similitude.
+3668=likewise, so.
+3669=similitude.
+3670=con- (pro-)fess, confession is made, give thanks, promise.
+3671=con- (pro-)fession, professed.
+3672=without controversy.
+3673=of the same craft.
+3674=together.
+3675=of one mind.
+3676=and even, nevertheless, though but.
+3677=dream.
+3678=young ass.
+3679=cast in teeth, (suffer) reproach, revile, upbraid.
+3680=reproach.
+3681=reproach.
+3682=Onesimus.
+3683=Onespiphorus.
+3684=millstone.
+3685=have joy.
+3686=called, (+ sur-)name(-d).
+3687=call, name.
+3688=an ass.
+3689=certainly, clean, indeed, of a truth, verily.
+3690=vinegar.
+3691=sharp, swift.
+3692=cave, place.
+3693=after, backside, behind.
+3694=after, back(-ward), (+ get) behind, + follow.
+3695=arm self.
+3696=armour, instrument, weapon.
+3697=what manner (sort) of, such as whatsoever.
+3698=when.
+3699=in what place, where(-as, -soever), whither (+ soever).
+3700=appear, look, see, shew self.
+3701=vision.
+3702=broiled.
+3703=fruit.
+3704=because, how, (so) that, to, when.
+3705=sight, vision.
+3706=sight, vision.
+3707=visible.
+3708=behold, perceive, see, take heed.
+3709=anger, indignation, vengeance, wrath.
+3710=be angry (wroth).
+3711=soon angry.
+3712=fathom.
+3713=covet after, desire.
+3714=hill country.
+3715=lust.
+3716=walk uprightly.
+3717=straight, upright.
+3718=rightly divide.
+3719=come early in the morning.
+3720=morning.
+3721=early.
+3722=early in the morning.
+3723=plain, right(-ly).
+3724=declare, determine, limit, ordain.
+3725=border, coast.
+3726=adjure, charge.
+3727=oath.
+3728=oath.
+3729=run (violently), rush.
+3730=assault.
+3731=violence.
+3732=bird, fowl.
+3733=hen.
+3734=bound.
+3735=hill, mount(-ain).
+3736=dig.
+3737=comfortless, fatherless.
+3738=dance.
+3739=one, (an-, the) other, some, that, what, which, who(-m, -se), etc.
+3740=as oft(-en) as.
+3741=holy, mercy, shalt be.
+3742=holiness.
+3743=holily.
+3744=odour, savour.
+3745=all (that), as (long, many, much) (as), how great (many, much), (in-)asmuch as, so many as, that (ever), the more, those things, what (great, -soever), wheresoever, wherewithsoever, which, X while, who(-soever).
+3746=whomsoever.
+3747=bone.
+3748=X and (they), (such) as, (they) that, in that they, what(-soever), whereas ye, (they) which, who(-soever).
+3749=of earth, earthen.
+3750=smelling.
+3751=loin.
+3752=as long (soon) as, that, + till, when(-soever), while.
+3753=after (that), as soon as, that, when, while.
+3754=as concerning that, as though, because (that), for (that), how (that), (in) that, though, why.
+3755=whiles.
+3756=long, nay, neither, never, no (X man), none, (can-)not, + nothing, + special, un(-worthy), when, + without, + yet but.
+3757=where(-in), whither(-soever).
+3758=ah.
+3759=alas, woe.
+3760=not.
+3761=neither (indeed), never, no (more, nor, not), nor (yet), (also, even, then) not (even, so much as), + nothing, so much as.
+3762=any (man), aught, man, neither any (thing), never (man), no (man), none (+ of these things), not (any, at all, -thing), nought.
+3763=neither at any time, never, nothing at any time.
+3764=as yet not, never before (yet), (not) yet.
+3765=after that (not), (not) any more, henceforth (hereafter) not, no longer (more), not as yet (now), now no more (not), yet (not).
+3766=then.
+3767=and (so, truly), but, now (then), so (likewise then), then, therefore, verily, wherefore.
+3768=hitherto not, (no.
+3769=tail.
+3770=heavenly.
+3771=from heaven.
+3772=air, heaven(-ly), sky.
+3773=Urbanus.
+3774=Urias.
+3775=ear.
+3776=goods, substance.
+3777=neither, none, nor (yet), (no, yet) not, nothing.
+3778=he (it was that), hereof, it, she, such as, the same, these, they, this (man, same, woman), which, who.
+3779=after that, after (in) this manner, as, even (so), for all that, like(-wise), no more, on this fashion(-wise), so (in like manner), thus, what.
+3780=nay, not.
+3781=debtor, which owed, sinner.
+3782=debt, due.
+3783=debt.
+3784=behove, be bound, (be) debt(-or), (be) due(-ty), be guilty (indebted), (must) need(-s), ought, owe, should.
+3785=would (to God).
+3786=advantageth, profit.
+3787=eye-service.
+3788=eye, sight.
+3789=serpent.
+3790=brow.
+3791=vex.
+3792=gather a company.
+3793=company, multitude, number (of people), people, press.
+3794=stronghold.
+3795=fish.
+3796=(at) even, in the end.
+3797=latter.
+3798=even(-ing, (-tide)).
+3799=appearance, countenance, face.
+3800=wages.
+3801=which art (is, was), and (which) wast (is, was), and art (is) to come (shalt be).
+3802=entangle.
+3803=snare.
+3804=affection, affliction, motion, suffering.
+3805=suffer.
+3806=(inordinate) affection, lust.
+3807=instructor, schoolmaster.
+3808=child, lad.
+3809=chastening, chastisement, instruction, nurture.
+3810=which corrected, instructor.
+3811=chasten(-ise), instruct, learn, teach.
+3812=of a child.
+3813=(little, young) child, damsel.
+3814=bondmaid(-woman), damsel, maid(-en).
+3815=play.
+3816=child, maid(-en), (man) servant, son, young man.
+3817=smite, strike.
+3818=Pacatiana.
+3819=any while, a great while ago, (of) old, in time past.
+3820=old.
+3821=oldness.
+3822=decay, make (wax) old.
+3823=wrestle.
+3824=regeneration.
+3825=again.
+3826=all at once.
+3827=very great.
+3828=Pamphylia.
+3829=inn.
+3830=host.
+3831=general assembly.
+3832=with all his house.
+3833=all (whole) armour.
+3834=(cunning) craftiness, subtilty.
+3835=crafty.
+3836=from every quarter.
+3837=in all places, everywhere.
+3838=in (no) wise, uttermost.
+3839=always.
+3840=on every side, round about.
+3841=Almighty, Omnipotent.
+3842=alway(-s), ever(-more).
+3843=by all means, altogether, at all, needs, no doubt, in (no) wise, surely.
+3844=above, against, among, at, before, by, contrary to, X friend, from, + give (such things as they), + that (she) had, X his, in, more than, nigh unto, (out) of, past, save, side.
+3845=(by) transgress(-ion).
+3846=arrive, compare.
+3847=breaking, transgression.
+3848=breaker, transgress(-or).
+3849=constrain.
+3850=comparison, figure, parable, proverb.
+3851=not (to) regard(-ing).
+3852=charge, command.
+3853=(give in) charge, (give) command(-ment), declare.
+3854=come, go, be present.
+3855=depart, pass (away, by, forth).
+3856=make a public example, put to an open shame.
+3857=paradise.
+3858=receive.
+3859=perverse disputing.
+3860=betray, bring forth, cast, commit, deliver (up), give (over, up), hazard, put in prison, recommend.
+3861=strange.
+3862=ordinance, tradition.
+3863=provoke to emulation (jealousy).
+3864=upon the sea coast.
+3865=neglect.
+3866=committed unto.
+3867=admonish, exhort.
+3868=avoid, (make) excuse, intreat, refuse, reject.
+3869=sit.
+3870=beseech, call for, (be of good) comfort, desire, (give) exhort(-ation), intreat, pray.
+3871=hide.
+3872=that (thing) which is committed (un-)to (trust).
+3873=be present.
+3874=comfort, consolation, exhortation, intreaty.
+3875=advocate, comforter.
+3876=disobedience.
+3877=attain, follow, fully know, have understanding.
+3878=neglect to hear.
+3879=look (into), stoop down.
+3880=receive, take (unto, with).
+3881=pass, sail by.
+3882=sea coast.
+3883=variableness.
+3884=beguile, deceive.
+3885=that had (sick of) the palsy.
+3886=feeble, sick of the (taken with) palsy.
+3887=abide, continue.
+3888=comfort.
+3889=comfort.
+3890=comfort.
+3891=contrary to law.
+3892=iniquity.
+3893=provoke.
+3894=provocation.
+3895=fall away.
+3896=sail by.
+3897=nigh unto.
+3898=likewise.
+3899=go, pass (by).
+3900=fall, fault, offence, sin, trespass.
+3901=let slip.
+3902=sign.
+3903=prepare self, be (make) ready.
+3904=preparation.
+3905=continue.
+3906=observe, watch.
+3907=obervation.
+3908=allege, commend, commit (the keeping of), put forth, set before.
+3909=meet with.
+3910=but for a moment.
+3911=remove, take away.
+3912=as a fool.
+3913=madness.
+3914=winter.
+3915=winter in.
+3916=forthwith, immediately, presently, straightway, soon.
+3917=leopard.
+3918=come, X have, be here, + lack, (be here) present.
+3919=privily bring in.
+3920=unawares brought in.
+3921=creep in unawares.
+3922=come in privily, enter.
+3923=give.
+3924=except, saving, without.
+3925=army, camp, castle.
+3926=trouble.
+3927=pilgrim, stranger.
+3928=come (forth), go, pass (away, by, over), past, transgress.
+3929=remission.
+3930=bring, do, give, keep, minister, offer, shew, + trouble.
+3931=comfort.
+3932=virginity.
+3933=virgin.
+3934=Parthian.
+3935=hang down.
+3936=assist, bring before, command, commend, give presently, present, prove, provide, shew, stand (before, by, here, up, with), yield.
+3937=Parmenas.
+3938=way.
+3939=sojourn in, be a stranger.
+3940=sojourning, X as strangers.
+3941=foreigner, sojourn, stranger.
+3942=parable, proverb.
+3943=given to wine.
+3944=past.
+3945=be like unto.
+3946=like.
+3947=easily provoke, stir.
+3948=contention, provoke unto.
+3949=anger, provoke to wrath.
+3950=wrath.
+3951=stir up.
+3952=coming, presence.
+3953=platter.
+3954=bold (X -ly, -ness, -ness of speech), confidence, X freely, X openly, X plainly(-ness).
+3955=be (wax) bold, (preach, speak) boldly.
+3956=all (manner of, means), alway(-s), any (one), X daily, + ever, every (one, way), as many as, + no(-thing), X thoroughly, whatsoever, whole, whosoever.
+3957=Easter, Passover.
+3958=feel, passion, suffer, vex.
+3959=Patara.
+3960=smite, strike.
+3961=tread (down, under foot).
+3962=father, parent.
+3963=Patmos.
+3964=murderer of fathers.
+3965=family, kindred, lineage.
+3966=patriarch.
+3967=of fathers.
+3968=(own) country.
+3969=Patrobas.
+3970=received by tradition from fathers.
+3971=of fathers.
+3972=Paul, Paulus.
+3973=cease, leave, refrain.
+3974=Paphos.
+3975=wax gross.
+3976=fetter.
+3977=plain.
+3978=go afoot.
+3979=a- (on) foot.
+3980=hearken, obey (magistrates).
+3981=enticing.
+3982=agree, assure, believe, have confidence, be (wax) conflent, make friend, obey, persuade, trust, yield.
+3983=be an hungered.
+3984=assaying, trial.
+3985=assay, examine, go about, prove, tempt(-er), try.
+3986=temptation, X try.
+3987=assay.
+3988=persuasion.
+3989=depth, sea.
+3990=behead.
+3991=fifth.
+3992=send, thrust in.
+3993=poor.
+3994=mother in law, wife's mother.
+3995=father in law.
+3996=mourn, (be-)wail.
+3997=mourning, sorrow.
+3998=poor.
+3999=five times.
+4000=five thousand.
+4001=five hundred.
+4002=five.
+4003=fifteenth.
+4004=fifty.
+4005=Pentecost.
+4006=confidence, trust.
+4007=(whom-)soever.
+4008=beyond, farther (other) side, over.
+4009=end, ut-(ter-)most participle 
+4010=Pergamos.
+4011=Perga.
+4012=(there-)about, above, against, at, on behalf of, X and his company, which concern, (as) concerning, for, X how it will go with, ((there-, where-)) of, on, over, pertaining (to), for sake, X (e-)state, (as) touching, (where-)by (in), with.
+4013=compass, go (round) about, lead about.
+4014=take away (up).
+4015=shine round (about).
+4016=array, cast about, clothe(-d me), put on.
+4017=look (round) about (on).
+4018=covering, vesture.
+4019=bind about.
+4020=be a busybody.
+4021=busybody, curious arts.
+4022=fetch a compass, vagabond, wandering about.
+4023=astonished, contain, after (this manner).
+4024=gird (about, self).
+4025=wearing.
+4026=avoid, shun, stand by (round about).
+4027=filth.
+4028=blindfold, cover, overlay.
+4029=be bound (compassed) with, hang about.
+4030=helmet.
+4031=come by.
+4032=hide.
+4033=compass round.
+4034=shine round about.
+4035=remain.
+4036=exceeding (very) sorry(-owful).
+4037=wait for.
+4038=round about.
+4039=dwell round about.
+4040=neighbour.
+4041=peculiar.
+4042=place.
+4043=go, be occupied with, walk (about).
+4044=pierce through.
+4045=fall among (into).
+4046=purchase.
+4047=obtain(-ing), peculiar, purchased, possession, saving.
+4048=rend off.
+4049=cumber.
+4050=abundance(-ant, (-ly)), superfluity.
+4051=abundance, that was left, over and above.
+4052=(make, more) abound, (have, have more) abundance (be more) abundant, be the better, enough and to spare, exceed, excel, increase, be left, redound, remain (over and above).
+4053=exceeding abundantly above, more abundantly, advantage, exceedingly, very highly, beyond measure, more, superfluous, vehement(-ly).
+4054=more abundantly, a great deal, far more.
+4055=more abundant, greater (much) more, overmuch.
+4056=more abundant(-ly), X the more earnest, (more) exceedingly, more frequent, much more, the rather.
+4057=exceedingly, out of measure, the more.
+4058=dove, pigeon.
+4059=circumcise.
+4060=bestow upon, hedge round about, put about (on, upon), set about.
+4061=X circumcised, circumcision.
+4062=make mad.
+4063=run through.
+4064=bear (carry) about.
+4065=despise.
+4066=country (round) about, region (that lieth) round about.
+4067=offscouring.
+4068=vaunt itself.
+4069=Persis.
+4070=a year ago.
+4071=bird, fowl.
+4072=fly(-ing).
+4073=rock.
+4074=Peter, rock.
+4075=stony.
+4076=rue.
+4077=fountain, well.
+4078=pitch.
+4079=rudder.
+4080=how great (large).
+4081=clay.
+4082=scrip.
+4083=cubit.
+4084=apprehend, catch, lay hand on, take.
+4085=press down.
+4086=enticing words.
+4087=be (make) bitter.
+4088=bitterness.
+4089=bitter.
+4090=bitterly.
+4091=Pilate.
+4092=be (X should have) swollen.
+4093=writing table.
+4094=charger, platter.
+4095=drink.
+4096=fatness.
+4097=sell.
+4098=fail, fall (down), light on.
+4099=Pisidia.
+4100=believe(-r), commit (to trust), put in trust with.
+4101=spike-(nard).
+4102=assurance, belief, believe, faith, fidelity.
+4103=believe(-ing, -r), faithful(-ly), sure, true.
+4104=assure of.
+4105=go astray, deceive, err, seduce, wander, be out of the way.
+4106=deceit, to deceive, delusion, error.
+4107=wandering.
+4108=deceiver, seducing.
+4109=table.
+4110=thing formed.
+4111=form.
+4112=feigned.
+4113=street.
+4114=breadth.
+4115=make broad, enlarge.
+4116=wide.
+4117=broidered hair.
+4118=very great, most.
+4119=X above, + exceed, more  excellent, further, (very) great(-er), long(-er), (very) many, greater (more) part, + yet but.
+4120=plait.
+4121=abound, abundant, make to increase, have over.
+4122=get an advantage, defraud, make a gain.
+4123=covetous.
+4124=covetous(-ness) practices, greediness.
+4125=side.
+4126=sail.
+4127=plague, stripe, wound(-ed).
+4128=bundle, company, multitude.
+4129=abound, multiply.
+4130=accomplish, full (.
+4131=striker.
+4132=flood.
+4133=but (rather), except, nevertheless, notwithstanding, save, than.
+4134=full.
+4135=most surely believe, fully know (persuade), make full proof of.
+4136=(full) assurance.
+4137=accomplish, X after, (be) complete, end, expire, fill (up), fulfil, (be, make) full (come), fully preach, perfect, supply.
+4138=which is put in to fill up, piece that filled up, fulfilling, full, fulness.
+4139=near, neighbour.
+4140=satisfying.
+4141=smite.
+4142=boat, little (small) ship.
+4143=ship(-ing).
+4144=course, sailing, voyage.
+4145=rich.
+4146=abundantly, richly.
+4147=be increased with goods, (be made, wax) rich.
+4148=en- (make) rich.
+4149=riches.
+4150=wash.
+4151=ghost, life, spirit(-ual, -ually), mind.
+4152=spiritual.
+4153=spiritually.
+4154=blow.
+4155=choke, take by the throat.
+4156=strangled.
+4157=breath, wind.
+4158=garment down to the foot.
+4159=whence.
+4160=abide, + agree, appoint, X avenge, + band together, be, bear, + bewray, bring (forth), cast out, cause, commit, + content, continue, deal, + without any delay, (would) do(-ing), execute, exercise, fulfil, gain, give, have, hold, X journeying, keep, + lay wait, + lighten the ship, make, X mean, + none of these things move me, observe, ordain, perform, provide, + have purged, purpose, put, + raising up, X secure, shew, X shoot out, spend, take, tarry, + transgress the law, work, yield.
+4161=thing that is made, workmanship.
+4162=deed.
+4163=doer, poet.
+4164=divers, manifold.
+4165=feed (cattle), rule.
+4166=shepherd, pastor.
+4167=flock, fold.
+4168=flock.
+4169=what (manner of), which.
+4170=fight, (make) war.
+4171=battle, fight, war.
+4172=city.
+4173=ruler of the city.
+4174=commonwealth, freedom.
+4175=conversation.
+4176=let conversation be, live.
+4177=citizen.
+4178=oft(-en, -entimes, -times).
+4179=manifold more.
+4180=much speaking.
+4181=at sundry times.
+4182=manifold.
+4183=abundant, + altogether, common, + far (passed, spent), (+ be of a) great (age, deal, -ly, while), long, many, much, oft(-en (-times)), plenteous, sore, straitly.
+4184=very pitiful.
+4185=costly, very precious, of great price.
+4186=very costly, of great price.
+4187=in divers manners.
+4188=drink.
+4189=iniquity, wickedness.
+4190=bad, evil, grievous, harm, lewd, malicious, wicked(-ness).
+4191=more wicked.
+4192=pain.
+4193=born in Pontus.
+4194=Pontius.
+4195=Pontus.
+4196=Publius.
+4197=journey(-ing), ways.
+4198=depart, go (away, forth, one's way, up), (make a, take a) journey, walk.
+4199=destroy, waste.
+4200=gain.
+4201=Porcius.
+4202=fornication.
+4203=commit (fornication).
+4204=harlot, whore.
+4205=fornicator, whoremonger.
+4206=far, a great way off.
+4207=afar off.
+4208=farther.
+4209=purple.
+4210=purple.
+4211=seller of purple.
+4212=how oft(-en).
+4213=drink.
+4214=how great (long, many), what.
+4215=flood, river, stream, water.
+4216=carried away of the flood.
+4217=what (manner of).
+4218=afore-(any, some-)time(-s), at length (the last), (+ n- )ever, in the old time, in time past, once, when.
+4219=how long, when.
+4220=whether.
+4221=cup.
+4222=give (make) to drink, feed, water.
+4223=Puteoli.
+4224=banqueting.
+4225=about, a certain place.
+4226=where, whither.
+4227=Pudens.
+4228=foot(-stool).
+4229=business, matter, thing, work.
+4230=affair.
+4231=occupy.
+4232=(common, judgment) hall (of judgment), palace, praetorium.
+4233=officer.
+4234=deed, office, work.
+4235=meek.
+4236=meekness.
+4237=in ranks.
+4238=commit, deeds, do, exact, keep, require, use arts.
+4239=meek.
+4240=meekness.
+4241=become, comely.
+4242=ambassage, message.
+4243=be an ambassador.
+4244=(estate of) elder(-s), presbytery.
+4245=elder(-est), old.
+4246=aged (man), old man.
+4247=aged woman.
+4248=headlong.
+4249=saw asunder.
+4250=before (that), ere.
+4251=Prisca.
+4252=Priscilla.
+4253=above, ago, before, or ever.
+4254=bring (forth, out), go before.
+4255=purpose.
+4256=prove before.
+4257=hear before.
+4258=sin already, heretofore sin.
+4259=porch.
+4260=be of a great age, go farther (on), be well stricken.
+4261=put forward, shoot forth.
+4262=sheep (market).
+4263=sheep(-fold).
+4264=draw, before instruct.
+4265=provide.
+4266=be past.
+4267=foreknow (ordain), know (before).
+4268=foreknowledge.
+4269=forefather, parent.
+4270=before ordain, evidently set forth, write (afore, aforetime).
+4271=evident, manifest (open) beforehand.
+4272=first give.
+4273=betrayer, traitor.
+4274=forerunner.
+4275=foresee, saw before.
+4276=first trust.
+4277=forewarn, say (speak, tell) before.
+4278=begin (before).
+4279=promise before.
+4280=foretell, say (speak, tell) before.
+4281=go before (farther, forward), outgo, pass on.
+4282=ordain before, prepare afore.
+4283=preach before the gospel.
+4284=be better.
+4285=prefer.
+4286=purpose, shew(-bread).
+4287=time appointed.
+4288=forwardness of mind, readiness (of mind), ready (willing) mind.
+4289=ready, willing.
+4290=willingly.
+4291=maintain, be over, rule.
+4292=provoke.
+4293=foretell, have notice, (shew) before.
+4294=make up beforehand.
+4295=be first, set before (forth).
+4296=before (first) preach.
+4297=furtherance, profit.
+4298=increase, proceed, profit, be far spent, wax.
+4299=prefer one before another.
+4300=confirm before.
+4301=come aforehand, overtake, take before.
+4302=foretell, tell before.
+4303=testify beforehand.
+4304=meditate before.
+4305=take thought beforehand.
+4306=provide (for).
+4307=providence, provision.
+4308=foresee, see before.
+4309=determine before, ordain, predestinate.
+4310=suffer before.
+4311=accompany, bring (forward) on journey (way), conduct forth.
+4312=heady, rash(-ly).
+4313=go before.
+4314=about, according to , against, among, at, because of, before, between, (where-)by, for, X at thy house, in, for intent, nigh unto, of, which pertain to, that, to (the end that), X together, to (you) -ward, unto, with(-in).
+4315=day before the sabbath.
+4316=call.
+4317=bring, draw near.
+4318=access.
+4319=beg.
+4320=go up.
+4321=spend.
+4322=supply.
+4323=in conference add, confer.
+4324=i.
+4325=spend more.
+4326=need.
+4327=accept, allow, look (wait) for, take.
+4328=(be in) expect(-ation), look (for), when looked, tarry, wait for.
+4329=expectation, looking after.
+4330=suffer.
+4331=come nigh.
+4332=wait at.
+4333=gain.
+4334=(as soon as he) come (unto), come thereunto, consent, draw near, go (near, to, unto).
+4335=X pray earnestly, prayer.
+4336=pray (X earnestly, for), make prayer.
+4337=(give) attend(-ance, -ance at, -ance to, unto), beware, be given to, give (take) heed (to unto); have regard.
+4338=nail to.
+4339=proselyte.
+4340=dur-(eth) for awhile, endure for a time, for a season, temporal.
+4341=call (for, to, unto).
+4342=attend (give self) continually (upon), continue (in, instant in, with), wait on (continually).
+4343=perseverance.
+4344=pillow.
+4345=consort with.
+4346=partiality.
+4347=cleave, join (self).
+4348=offence, stumbling(-block, (-stone)).
+4349=offence.
+4350=beat upon, dash, stumble (at).
+4351=roll (to).
+4352=worship.
+4353=worshipper.
+4354=speak to (with).
+4355=receive, take (unto).
+4356=receiving.
+4357=abide still, be with, cleave unto, continue in (with).
+4358=draw to the shore.
+4359=over besides.
+4360=be grieved at.
+4361=very hungry.
+4362=crucify.
+4363=beat upon, fall (down) at (before).
+4364=make as though.
+4365=go before.
+4366=beat vehemently against (upon).
+4367=bid, command.
+4368=succourer.
+4369=add, again, give more, increase, lay unto, proceed further, speak to any more.
+4370=run (thither to, to).
+4371=meat.
+4372=new.
+4373=lately.
+4374=bring (to, unto), deal with, do, offer (unto, up), present unto, put to.
+4375=lovely.
+4376=offering (up).
+4377=call unto, speak (un-)to.
+4378=sprinkling.
+4379=touch.
+4380=have respect to persons.
+4381=respecter of persons.
+4382=respect of persons.
+4383=(outward) appearance, X before, countenance, face, fashion, (men's) person, presence.
+4384=before appoint.
+4385=bind.
+4386=before, (at the) first, former.
+4387=former.
+4388=purpose, set forth.
+4389=exhort.
+4390=outrun, run before.
+4391=be before(-time).
+4392=cloke, colour, pretence, show.
+4393=bring forth.
+4394=prophecy, prophesying.
+4395=prophesy.
+4396=prophet.
+4397=of prophecy, of the prophets.
+4398=prophetess.
+4399=prevent.
+4400=choose, make.
+4401=choose before.
+4402=Prochorus.
+4403=hinder part, stern.
+4404=early (in the morning), (in the) morning.
+4405=early, morning.
+4406=early.
+4407=morning.
+4408=forepart(-ship).
+4409=have the preeminence.
+4410=chief (highest, uppermost) seat.
+4411=chief (highest, uppermost) room.
+4412=before, at the beginning, chiefly (at, at the) first (of all).
+4413=before, beginning, best, chief(-est), first (of all), former.
+4414=ringleader.
+4415=birthright.
+4416=firstbegotten(-born).
+4417=fall, offend, stumble.
+4418=heel.
+4419=pinnacle.
+4420=wing.
+4421=bird.
+4422=frighten.
+4423=amazement.
+4424=Ptolemais.
+4425=fan.
+4426=terrify.
+4427=spittle.
+4428=close.
+4429=spit.
+4430=dead body, carcase, corpse.
+4431=fall.
+4432=poverty.
+4433=become poor.
+4434=beggar(-ly), poor.
+4435=oft.
+4436=divination.
+4437=often(-er).
+4438=fight.
+4439=gate.
+4440=gate, porch.
+4441=ask, demand, enquire, understand.
+4442=fiery, fire.
+4443=fire.
+4444=tower.
+4445=be sick of a fever.
+4446=fever.
+4447=of fire.
+4448=burn, fiery, be on fire, try.
+4449=be red.
+4450=red.
+4451=burning, trial.
+4452=sell, whatever is sold.
+4454=colt.
+4455=at any time, + never (.
+4456=blind, harden.
+4457=blindness, hardness.
+4458=haply, by any (some) means, perhaps.
+4459=how, after (by) what manner (means), that.
+4460=Rahab.
+4461=Master, Rabbi.
+4462=Lord, Rabboni.
+4463=beat (with rods).
+4464=rod, sceptre, staff.
+4465=serjeant.
+4466=Ragau.
+4467=lewdness.
+4468=mischief.
+4469=Raca.
+4470=cloth.
+4471=Rama.
+4472=sprinkle.
+4473=sprinkling.
+4474=smite (with the palm of the hand).
+4475=(+ strike with the) palm of the hand, smite with the hand.
+4476=needle.
+4477=Rachab.
+4478=Rachel.
+4479=Rebecca.
+4480=chariot.
+4481=Remphan.
+4482=flow.
+4483=command, make, say, speak (of).
+4484=Rhegium.
+4485=ruin.
+4486=break (forth), burst, rend, tear.
+4487=evil, + nothing, saying, word.
+4488=Rhesa.
+4489=orator.
+4490=expressly.
+4491=root.
+4492=root.
+4493=twinkling.
+4494=toss.
+4495=cast off.
+4496=cast (down, out), scatter abroad, throw.
+4497=Roboam.
+4498=Rhoda.
+4499=Rhodes.
+4500=with a great noise.
+4501=sword.
+4502=Reuben.
+4503=Ruth.
+4504=Rufus.
+4505=lane, street.
+4506=deliver(-er).
+4507=turpitude.
+4508=vile.
+4509=filth.
+4510=be filthy.
+4511=issue.
+4512=wrinkle.
+4513=Latin.
+4514=Roman, of Rome.
+4515=Latin.
+4516=Rome.
+4517=farewell.
+4518=sabachthani.
+4519=sabaoth.
+4520=rest.
+4521=sabbath (day), week.
+4522=net.
+4523=Sadducee.
+4524=Sadoc.
+4525=move.
+4526=sackcloth.
+4527=Sala.
+4528=Salathiel.
+4529=Salamis.
+4530=Salim.
+4531=move, shake (together), which can(-not) be shaken, stir up.
+4532=Salem.
+4533=Salmon.
+4534=Salmone.
+4535=wave.
+4536=trump(-et).
+4537=(which are yet to) sound (a trumpet).
+4538=trumpeter.
+4539=Salome.
+4540=Samaria.
+4541=Samaritan.
+4542=of Samaria.
+4543=Samothracia.
+4544=Samos.
+4545=Samuel.
+4546=Samson.
+4547=sandal.
+4548=board.
+4549=Saul.
+4550=bad, corrupt.
+4551=Sapphira.
+4552=sapphire.
+4553=basket.
+4554=Sardis.
+4555=sardine.
+4556=sardius.
+4557=sardonyx.
+4558=Sarepta.
+4559=carnal, fleshly.
+4560=fleshly.
+4561=carnal(-ly, + -ly minded), flesh(-ly).
+4562=Saruch.
+4563=sweep.
+4564=Sara, Sarah.
+4565=Saron.
+4566=Satan.
+4567=Satan.
+4568=measure.
+4569=Saul.
+4570=go out, quench.
+4571=thee, thou, X thy house.
+4572=thee, thine own self, (thou) thy(-self).
+4573=worship.
+4574=devotion, that is worshipped.
+4575=Augustus(-').
+4576=devout, religious, worship.
+4577=chain.
+4578=earthquake, tempest.
+4579=move, quake, shake.
+4580=Secundus.
+4581=Seleucia.
+4582=moon.
+4583=be a lunatic.
+4584=Semei.
+4585=fine flour.
+4586=grave, honest.
+4587=gravity, honesty.
+4588=Sergius.
+4589=Seth.
+4590=Sem.
+4591=signify.
+4592=miracle, sign, token, wonder.
+4593=note.
+4594=this (to-)day.
+4595=be corrupted.
+4596=silk.
+4597=moth.
+4598=motheaten.
+4599=strengthen.
+4600=cheek.
+4601=keep close (secret, silence), hold peace.
+4602=silence.
+4603=(of) iron.
+4604=iron.
+4605=Sidon.
+4606=of Sidon.
+4607=murderer.
+4608=strong drink.
+4609=Silas.
+4610=Silvanus.
+4611=Siloam.
+4612=apron.
+4613=Simon.
+4614=Sina.
+4615=mustard.
+4616=(fine) linen (cloth).
+4617=sift.
+4618=fatted.
+4619=fatling.
+4620=portion of meat.
+4621=corn, wheat.
+4622=Sion.
+4623=dumb, (hold) peace.
+4624=(make to) offend.
+4625=occasion to fall (of stumbling), offence, thing that offends, stumblingblock.
+4626=dig.
+4627=boat.
+4628=leg.
+4629=raiment.
+4630=Sceva.
+4631=tackling.
+4632=goods, sail, stuff, vessel.
+4633=habitation, tabernacle.
+4634=tabernacles.
+4635=tent-maker.
+4636=tabernacle.
+4637=dwell.
+4638=tabernacle.
+4639=shadow.
+4640=leap (for joy).
+4641=hardness of heart.
+4642=fierce, hard.
+4643=hardness.
+4644=stiffnecked.
+4645=harden.
+4646=crooked, froward, untoward.
+4647=thorn.
+4648=consider, take heed, look at (on), mark.
+4649=mark.
+4650=disperse abroad, scatter (abroad).
+4651=scorpion.
+4652=dark, full of darkness.
+4653=dark(-ness).
+4654=darken.
+4655=darkness.
+4656=be full of darkness.
+4657=dung.
+4658=Scythian.
+4659=of a sad countenance.
+4660=trouble(self).
+4661=spoil.
+4662=eaten of worms.
+4663=worm.
+4664=emerald.
+4665=emerald.
+4666=myrrh.
+4667=Smyrna.
+4668=in Smyrna.
+4669=mingle with myrrh.
+4670=Sodom.
+4671=thee, thine own, thou, thy.
+4672=Solomon.
+4673=bier.
+4674=thine (own), thy (friend).
+4675=X home, thee, thine (own), thou, thy.
+4676=handkerchief, napkin.
+4677=Susanna.
+4678=wisdom.
+4679=cunningly devised, make wise.
+4680=wise.
+4681=Spain.
+4682=rend, tear.
+4683=wrap in swaddling clothes.
+4684=live in pleasure, be wanton.
+4685=draw (out).
+4686=band.
+4687=sow(- er), receive seed.
+4688=executioner.
+4689=(be ready to) be offered.
+4690=issue, seed.
+4691=babbler.
+4692=(make, with) haste unto.
+4693=cave, den.
+4694=spot (by confusion with 
+4695=defile, spot.
+4696=spot.
+4697=have (be moved with) compassion.
+4698=bowels, inward affection, + tender mercy.
+4699=spunge.
+4700=ashes.
+4701=seed.
+4702=corn(-field).
+4703=seed (X sown).
+4704=do (give) diligence, be diligent (forward), endeavour, labour, study.
+4705=diligent.
+4706=very diligently.
+4707=more diligent (forward).
+4708=more carefully.
+4709=diligently, instantly.
+4710=business, (earnest) care(-fulness), diligence, forwardness, haste.
+4711=basket.
+4712=furlong, race.
+4713=pot.
+4714=dissension, insurrection, X standing, uproar.
+4715=piece of money.
+4716=cross.
+4717=crucify.
+4718=grapes.
+4719=ear (of corn).
+4720=Stachys.
+4721=roof.
+4722=(for-)bear, suffer.
+4723=barren.
+4724=avoid, withdraw self.
+4725=garland.
+4726=groaning.
+4727=with grief, groan, grudge, sigh.
+4728=strait.
+4729=distress, straiten.
+4730=anguish, distress.
+4731=stedfast, strong, sure.
+4732=establish, receive strength, make strong.
+4733=stedfastness.
+4734=Stephanas.
+4735=crown.
+4736=Stephen.
+4737=crown.
+4738=breast.
+4739=stand (fast).
+4740=stedfastness.
+4741=fix, (e-)stablish, stedfastly set, strengthen.
+4742=mark.
+4743=moment.
+4744=shining.
+4745=porch.
+4746=branch.
+4747=element, principle, rudiment.
+4748=walk (orderly).
+4749=long clothing (garment), (long) robe.
+4750=edge, face, mouth.
+4751=stomach.
+4752=warfare.
+4753=army, soldier, man of war.
+4754=soldier, (go to) war(-fare).
+4755=captain, magistrate.
+4756=host.
+4757=soldier.
+4758=choose to be a soldier.
+4759=captain of the guard.
+4760=army.
+4761=wrest.
+4762=convert, turn (again, back again, self, self about).
+4763=live deliciously.
+4764=delicacy.
+4765=sparrow.
+4766=make bed, furnish, spread, strew.
+4767=hateful.
+4768=lower, be sad.
+4769=pillar.
+4770=Stoick.
+4771=thou.
+4772=kindred.
+4773=cousin, kin(-sfolk, -sman).
+4774=permission.
+4775=sit with.
+4776=(make) sit (down) together.
+4777=be partaker of afflictions.
+4778=suffer affliction with.
+4779=call together.
+4780=cover.
+4781=bow down.
+4782=go down with.
+4783=agreement.
+4784=consent.
+4785=number with.
+4786=mix with, temper together.
+4787=stir up.
+4788=conclude, inclose, shut up.
+4789=fellow (joint)-heir, heir together, heir with.
+4790=communicate (have fellowship) with, be partaker of.
+4791=companion, partake(-r, -r with).
+4792=carry.
+4793=compare among (with).
+4794=bow together.
+4795=chance.
+4796=rejoice in (with).
+4797=confound, confuse, stir up, be in an uproar.
+4798=have dealings with.
+4799=confusion.
+4800=live with.
+4801=join together.
+4802=dispute (with), enquire, question (with), reason (together).
+4803=disputation(-ting), reasoning.
+4804=disputer.
+4805=yokefellow.
+4806=quicken together with.
+4807=sycamine tree.
+4808=fig tree.
+4809=sycamore tree.
+4810=fig.
+4811=accuse falsely, take by false accusation.
+4812=spoil.
+4813=rob.
+4814=commune (confer, talk) with, speak among.
+4815=catch, conceive, help, take.
+4816=gather (together, up).
+4817=reason with.
+4818=be grieved.
+4819=be(-fall), happen (unto).
+4820=confer, encounter, help, make, meet with, ponder.
+4821=reign with.
+4822=compact, assuredly gather, intrust, knit together, prove.
+4823=consult, (give, take) counsel (together).
+4824=consultation, counsel, council.
+4825=counsellor.
+4826=Simeon, Simon.
+4827=fellow disciple.
+4828=testify unto, (also) bear witness (with).
+4829=be partaker with.
+4830=partaker.
+4831=follower together.
+4832=conformed to, fashioned like unto.
+4833=make conformable unto.
+4834=have compassion, be touched with a feeling of.
+4835=having compassion one of another.
+4836=come together, stand with.
+4837=comfort together.
+4838=take with.
+4839=continue with.
+4840=be here present with.
+4841=suffer with.
+4842=send with.
+4843=embrace.
+4844=drink with.
+4845=(fully) come, fill up.
+4846=choke, throng.
+4847=fellow- citizen.
+4848=go with, resort.
+4849=company.
+4850=presbyter, also an elder.
+4851=be better for, bring together, be expedient (for), be good, (be) profit(-able for).
+4852=consent unto.
+4853=countryman.
+4854=planted together.
+4855=spring up with.
+4856=agree (together, with).
+4857=concord.
+4858=music.
+4859=consent.
+4860=reckon.
+4861=like-minded.
+4862=beside, with.
+4863=accompany, assemble (selves, together), bestow, come together, gather (selves together, up, together), lead into, resort, take in.
+4864=assembly, congregation, synagogue.
+4865=strive together with.
+4866=labour with, strive together for.
+4867=call (gather) together.
+4868=reckon, take.
+4869=fellowprisoner.
+4870=follow.
+4871=assemble together.
+4872=come up with.
+4873=sit (down, at the table, together) with (at meat).
+4874=(have, keep) company (with).
+4875=refresh with.
+4876=befall, meet.
+4877=meet.
+4878=help.
+4879=carry (lead) away with, condescend.
+4880=be dead (die) with.
+4881=perish with.
+4882=send with.
+4883=be fitly framed (joined) together.
+4884=catch.
+4885=grow together.
+4886=band, bond.
+4887=be bound with.
+4888=glorify together.
+4889=fellowservant.
+4890=run together.
+4891=raise up together, rise with.
+4892=council.
+4893=conscience.
+4894=consider, know, be privy, be ware of.
+4895=be with.
+4896=gather together.
+4897=go in with, go with into.
+4898=companion in travel, travel with.
+4899=elected together with.
+4900=set at one again.
+4901=also bear witness.
+4902=accompany.
+4903=help (work) with, work(-er) together.
+4904=companion in labour, (fellow-)helper(-labourer, -worker), labourer together with, workfellow.
+4905=accompany, assemble (with), come (together), come (company, go) with, resort.
+4906=eat with.
+4907=knowledge, understanding.
+4908=prudent.
+4909=allow, assent, be pleased, have pleasure.
+4910=feast with.
+4911=rise up together.
+4912=constrain, hold, keep in, press, lie sick of, stop, be in a strait, straiten, be taken with, throng.
+4913=delight.
+4914=custom.
+4915=equal.
+4916=bury with.
+4917=break.
+4918=throng.
+4919=break.
+4920=consider, understand, be wise.
+4921=approve, commend, consist, make, stand (with).
+4922=journey with.
+4923=company.
+4924=dwell together.
+4925=build together.
+4926=talk with.
+4927=join hard.
+4928=anguish, distress.
+4929=appoint.
+4930=end.
+4931=end, finish, fulfil, make.
+4932=(cut) short.
+4933=keep, observe, preserve.
+4934=agree, assent, covenant.
+4935=a few words.
+4936=run (together, with).
+4937=break (in pieces), broken to shivers (+ -hearted), bruise.
+4938=destruction.
+4939=brought up with.
+4940=come at.
+4941=Syntyche.
+4942=dissemble with.
+4943=help together.
+4944=travail in pain together.
+4945=comspiracy.
+4946=Syracuse.
+4947=Syria.
+4948=Syrian.
+4949=Syrophenician.
+4950=quicksands.
+4951=drag, draw, hale.
+4952=throw down.
+4953=token.
+4954=of the same body.
+4955=make insurrection with.
+4956=of commendation.
+4957=crucify with.
+4958=short, wind up.
+4959=groan together.
+4960=answer to.
+4961=fellowsoldier.
+4962=gather.
+4963=band together, concourse.
+4964=conform to, fashion self according to.
+4965=Sychar.
+4966=Sychem.
+4967=slaughter.
+4968=slain beast.
+4969=kill, slay, wound.
+4970=exceeding(-ly), greatly, sore, very.
+4971=exceedingly.
+4972=(set a, set to) seal up, stop.
+4973=seal.
+4974=ancle bone.
+4975=almost.
+4976=fashion.
+4977=break, divide, open, rend, make a rent.
+4978=division, rent, schism.
+4979=small cord, rope.
+4980=empty, give self.
+4981=school.
+4982=heal, preserve, save (self), do well, be (make) whole.
+4983=bodily, body, slave.
+4984=bodily.
+4985=bodily.
+4986=Sopater.
+4987=heap, load.
+4988=Sosthenes.
+4989=Sosipater.
+4990=saviour.
+4991=deliver, health, salvation, save, saving.
+4992=salvation.
+4993=be in right mind, be sober (minded), soberly.
+4994=teach to be sober.
+4995=sound mind.
+4996=soberly.
+4997=soberness, sobriety.
+4998=discreet, sober, temperate.
+4999=taverns.
+5000=Tabitha.
+5001=order.
+5002=set.
+5003=be afflicted.
+5004=misery.
+5005=wretched.
+5006=weight of a talent.
+5007=talent.
+5008=talitha.
+5009=secret chamber, closet, storehouse.
+5010=order.
+5011=base, cast down, humble, of low degree (estate), lowly.
+5012=humbleness of mind, humility (of mind, loneliness (of mind).
+5013=abase, bring low, humble (self).
+5014=humiliation, be made low, low estate, vile.
+5015=trouble.
+5016=trouble(-ing).
+5017=stir.
+5018=of Tarsus.
+5019=Tarsus.
+5020=cast down to hell.
+5021=addict, appoint, determine, ordain, set.
+5022=bull, ox.
+5023=afterward, follow, + hereafter, X him, the same, so, such, that, then, these, they, this, those, thus.
+5024=even thus, (manner) like, so.
+5025=hence, that, then, these, those.
+5026=her, + hereof, it, that, + thereby, the (same), this (same).
+5027=X bury.
+5028=sepulchre, tomb.
+5029=peradventure(-haps).
+5030=hastily, quickly, shortly, soon, suddenly.
+5031=shortly, swift.
+5032=out (run), quickly, shortly, sooner.
+5033=with all speed.
+5034=quickly, + shortly, + speedily.
+5035=lightly, quickly.
+5036=swift.
+5037=also, and, both, even, then, whether.
+5038=wall.
+5039=infallible proof.
+5040=little children.
+5041=bear children.
+5042=childbearing.
+5043=child, daughter, son.
+5044=bring up children.
+5045=carpenter.
+5046=of full age, man, perfect.
+5047=perfection(-ness).
+5048=consecrate, finish, fulfil, make) perfect.
+5049=to the end.
+5050=perfection, performance.
+5051=finisher.
+5052=bring fruit to perfection.
+5053=be dead, decease, die.
+5054=death.
+5055=accomplish, make an end, expire, fill up, finish, go over, pay, perform.
+5056=continual, custom, end(-ing), finally, uttermost.
+5057=publican.
+5058=receipt of custom.
+5059=wonder.
+5060=Tertius.
+5061=Tertullus.
+5062=forty.
+5063=(+ full, of) forty years (old).
+5064=four.
+5065=fourteenth.
+5066=four days.
+5067=four(-th).
+5068=foursquare.
+5069=quaternion.
+5070=four thousand.
+5071=four hundred.
+5072=four months.
+5073=fourfold.
+5074=fourfooted beast.
+5075=(be) tetrarch.
+5076=tetrarch.
+5077=turn to ashes.
+5078=art, craft, occupation.
+5079=builder, craftsman.
+5080=melt.
+5081=clearly.
+5082=so great, so mighty.
+5083=hold fast, keep(- er), (pre-, re-)serve, watch.
+5084=hold.
+5085=Tiberias.
+5086=Tiberius.
+5087=advise, appoint, bow, commit, conceive, give, X kneel down, lay (aside, down, up), make, ordain, purpose, put, set (forth), settle, sink down.
+5088=bear, be born, bring forth, be delivered, be in travail.
+5089=pluck.
+5090=Timaeus.
+5091=honour, value.
+5092=honour, precious, price, some.
+5093=dear, honourable, (more, most) precious, had in reputation.
+5094=costliness.
+5095=Timotheus, Timothy.
+5096=Timon.
+5097=punish.
+5098=punishment.
+5099=be punished with.
+5100=a (kind of), any (man, thing, thing at all), certain (thing), divers, he (every) man, one (X thing), ought, + partly, some (man, -body, - thing, -what), (+ that no-)thing, what(-soever), X wherewith, whom(-soever), whose(-soever).
+5101=every man, how (much), + no(-ne, thing), what (manner, thing), where (-by, -fore, -of, -unto, - with, -withal), whether, which, who(-m, -se), why.
+5102=title.
+5103=Titus.
+5104=(used only with other particles in the comparative, as 
+5105=there-(where-)fore.
+5106=then, therefore.
+5107=such.
+5108=like, such (an one).
+5109=wall.
+5110=usury.
+5111=be bold, boldly, dare, durst.
+5112=the more boldly.
+5113=presumptuous.
+5114=sharper.
+5115=bow.
+5116=topaz.
+5117=coast, licence, place, X plain, quarter, + rock, room, where.
+5118=as large, so great (long, many, much), these many.
+5119=that time, then.
+5120=his.
+5121=contrariwise.
+5122=named.
+5123=that is (to say).
+5124=here (-unto), it, partly, self(-same), so, that (intent), the same, there(-fore, -unto), this, thus, where(-fore).
+5125=such, them, there(-in, -with), these, this, those.
+5126=him, the same, that, this.
+5127=here(-by), him, it, + such manner of, that, thence(-forth), thereabout, this, thus.
+5128=such, them, these, this.
+5129=here(-by, -in), him, one, the same, there(-in), this.
+5130=such, their, these (things), they, this sort, those.
+5131=goat.
+5132=bank, meat, table.
+5133=exchanger.
+5134=wound.
+5135=wound.
+5136=opened.
+5137=neck.
+5138=rock, rough.
+5139=Trachonitis.
+5140=three.
+5141=be afraid, trembling.
+5142=bring up, feed, nourish.
+5143=have course, run.
+5144=thirty.
+5145=three hundred.
+5146=brier, thistle.
+5147=path.
+5148=space of three years.
+5149=gnash.
+5150=three months.
+5151=three times, thrice.
+5152=third loft.
+5153=three thousand.
+5154=third(-ly).
+5155=of hair.
+5156=tremble(-ing).
+5157=turning.
+5158=(even) as, conversation, (+ like) manner, (+ by any) means, way.
+5159=suffer the manners.
+5160=food, meat.
+5161=Trophimus.
+5162=nurse.
+5163=path.
+5164=course.
+5165=dish.
+5166=gather.
+5167=turtle-dove.
+5168=eye.
+5169=eye.
+5170=Tryphena.
+5171=live in pleasure.
+5172=delicately, riot.
+5173=Tryphosa.
+5174=Troas.
+5175=Trogyllium.
+5176=eat.
+5177=be, chance, enjoy, little, obtain, X refresh.
+5178=torture.
+5179=en-(ex-)ample, fashion, figure, form, manner, pattern, print.
+5180=beat, smite, strike, wound.
+5181=Tyrannus.
+5182=trouble.
+5183=of Tyre.
+5184=Tyre.
+5185=blind.
+5186=blind.
+5187=high-minded, be lifted up with pride, be proud.
+5188=smoke.
+5189=tempestuous.
+5190=Tychicus.
+5191=jacinth.
+5192=jacinth.
+5193=of glass.
+5194=glass.
+5195=use despitefully, reproach, entreat shamefully (spitefully).
+5196=harm, hurt, reproach.
+5197=despiteful, injurious.
+5198=be in health, (be safe and) sound, (be) whole(-some).
+5199=sound, whole.
+5200=green.
+5201=water-pot.
+5202=drink water.
+5203=have the dropsy.
+5204=water.
+5205=rain.
+5206=adoption (of children, of sons).
+5207=child, foal, son.
+5208=matter.
+5209=ye, you (+ -ward), your (+ own).
+5210=ye (yourselves), you.
+5211=Hymenaeus.
+5212=your (own).
+5213=ye, you, your(-selves).
+5214=sing a hymn (praise unto).
+5215=hymn.
+5216=ye, you, your (own, -selves).
+5217=depart, get hence, go (a-)way.
+5218=obedience, (make) obedient, obey(-ing).
+5219=hearken, be obedient to, obey.
+5220=which hath an husband.
+5221=(go to) meet.
+5222=meeting.
+5223=goods, substance.
+5224=goods, that which one has, things which (one) possesseth, substance, that hast.
+5225=after, behave, live.
+5226=submit self.
+5227=adversary, against.
+5228=(+ exceeding, abundantly) above, in (on) behalf of, beyond, by, + very chiefest, concerning, exceeding (above, -ly), for, + very highly, more (than), of, over, on the part of, for sake of, in stead, than, to(-ward), very.
+5229=exalt self, be exalted above measure.
+5230=pass the flower of (her) age.
+5231=far above, over.
+5232=grow exceedingly.
+5233=go beyond.
+5234=beyond measure.
+5235=exceeding, excel, pass.
+5236=abundance, (far more) exceeding, excellency, more excellent, beyond (out of) measure.
+5237=wink at.
+5238=beyond.
+5239=stretch beyond.
+5240=run over.
+5241=make intercession for.
+5242=better, excellency, higher, pass, supreme.
+5243=pride.
+5244=proud.
+5245=more than conquer.
+5246=great swelling.
+5247=authority, excellency.
+5248=abound much more, exceeding.
+5249=beyond measure.
+5250=be exceeding abundant.
+5251=highly exalt.
+5252=think more highly.
+5253=upper chamber (room).
+5254=suffer.
+5255=obedient.
+5256=minister (unto), serve.
+5257=minister, officer, servant.
+5258=sleep.
+5259=among, by, from, in, of, under, with.
+5260=suborn.
+5261=example.
+5262=en-(ex-)ample, pattern.
+5263=show, (fore-)warn.
+5264=receive.
+5265=bind on, (be) shod.
+5266=shoe.
+5267=guilty.
+5268=ass.
+5269=undergirt.
+5270=under.
+5271=feign.
+5272=condemnation, dissimulation, hypocrisy.
+5273=hypocrite.
+5274=answer, receive, suppose.
+5275=be left.
+5276=winefat.
+5277=leave.
+5278=abide, endure, (take) patient(-ly), suffer, tarry behind.
+5279=put in mind, remember, bring to (put in) remembrance.
+5280=remembrance.
+5281=enduring, patience, patient continuance (waiting).
+5282=think, suppose, deem.
+5283=surmising.
+5284=sail under.
+5285=blow softly.
+5286=footstool.
+5287=confidence, confident, person, substance.
+5288=draw (keep) back, shun, withdraw.
+5289=draw back.
+5290=come again, return (again, back again), turn back (again).
+5291=spread.
+5292=subjection.
+5293=be under obedience (obedient), put under, subdue unto, (be, make) subject (to, unto), be (put) in subjection (to, under), submit self unto.
+5294=lay down, put in remembrance.
+5295=run under.
+5296=form, pattern.
+5297=bear, endure.
+5298=go aside, withdraw self.
+5299=keep under, weary.
+5300=sow.
+5301=hyssop.
+5302=come behind (short), be destitute, fail, lack, suffer need, (be in) want, be the worse.
+5303=that which is behind, (that which was) lack(-ing), penury, want.
+5304=want.
+5305=afterward, (at the) last (of all).
+5306=latter.
+5307=woven.
+5308=high(-er, -ly) (esteemed).
+5309=be highminded.
+5310=most high, highest.
+5311=be exalted, height, (on) high.
+5312=exalt, lift up.
+5313=height, high thing.
+5314=gluttonous.
+5315=eat, meat.
+5316=appear, seem, be seen, shine, X think.
+5317=Phalec.
+5318=abroad, + appear, known, manifest, open (+ -ly), outward (+ -ly).
+5319=appear, manifestly declare, (make) manifest (forth), shew (self).
+5320=evidently, openly.
+5321=manifestation.
+5322=lantern.
+5323=Phanuel.
+5324=sight.
+5325=pomp.
+5326=spirit.
+5327=valley.
+5328=Pharaoh.
+5329=Phares.
+5330=Pharisee.
+5331=sorcery, witchcraft.
+5332=sorcerer.
+5333=sorcerer.
+5334=tidings.
+5335=affirm, profess, say.
+5336=manager, stall.
+5337=evil.
+5338=light.
+5339=forbear, spare.
+5340=sparingly.
+5341=cloke.
+5342=be, bear, bring (forth), carry, come, + let her drive, be driven, endure, go on, lay, lead, move, reach, rushing, uphold.
+5343=escape, flee (away).
+5344=Felix.
+5345=fame.
+5346=affirm, say.
+5347=Festus.
+5348=(already) attain, come, prevent.
+5349=corruptible.
+5350=speak.
+5351=corrupt (self), defile, destroy.
+5352=whose fruit withereth.
+5353=sound.
+5354=envy.
+5355=envy.
+5356=corruption, destroy, perish.
+5357=vial.
+5358=love of good men.
+5359=Philadelphia.
+5360=brotherly love (kindness), love of the brethren.
+5361=love as brethren.
+5362=love their husbands.
+5363=kindness, love towards man.
+5364=courteously.
+5365=love of money.
+5366=covetous.
+5367=lover of own self.
+5368=kiss, love.
+5369=lover of pleasure.
+5370=kiss.
+5371=Philemon.
+5372=Philetus.
+5373=friendship.
+5374=Philippian.
+5375=Philippi.
+5376=Philip.
+5377=lover of God.
+5378=Philologus.
+5379=strife.
+5380=contentious.
+5381=entertain stranger, hospitality.
+5382=given to (lover of, use) hospitality.
+5383=love to have the preeminence.
+5384=friend.
+5385=philosophy.
+5386=philosopher.
+5387=kindly affectioned.
+5388=love their children.
+5389=labour, strive, study.
+5390=courteously.
+5391=courteous.
+5392=muzzle.
+5393=Phlegon.
+5394=set on fire.
+5395=flame(-ing).
+5396=prate against.
+5397=tattler.
+5398=fearful, terrible.
+5399=be (+ sore) afraid, fear (exceedingly), reverence.
+5400=fearful sight.
+5401=be afraid, + exceedingly, fear, terror.
+5402=Phebe.
+5403=Phenice, Phenicia.
+5404=palm (tree).
+5405=Phenice.
+5406=murderer.
+5407=kill, do murder, slay.
+5408=murder, + be slain with, slaughter.
+5409=bear, wear.
+5410=forum.
+5411=tribute.
+5412=lade, by heavy laden.
+5413=burden.
+5414=lading.
+5415=Fortunatus.
+5416=scourge.
+5417=scourge.
+5418=hedge (+ round about), partition.
+5419=declare.
+5420=stop.
+5421=well, pit.
+5422=deceive.
+5423=deceiver.
+5424=understanding.
+5425=tremble.
+5426=set the affection on, (be) care(-ful), (be like-, + be of one, + be of the same, + let this) mind(-ed), regard, savour, think.
+5427=(be, + be carnally, + be spiritually) mind(-ed).
+5428=prudence, wisdom.
+5429=wise(-r).
+5430=wisely.
+5431=be careful.
+5432=keep (with a garrison).
+5433=rage.
+5434=stick.
+5435=Phrygia.
+5436=Phygellus.
+5437=flight.
+5438=cage, hold, (im-)prison(-ment), ward, watch.
+5439=imprison.
+5440=phylactery.
+5441=keeper.
+5442=beward, keep (self), observe, save.
+5443=kindred, tribe.
+5444=leaf.
+5445=lump.
+5446=natural.
+5447=naturally.
+5448=puff up.
+5449=(man-)kind, nature(-al).
+5450=swelling.
+5451=plant.
+5452=plant.
+5453=spring (up).
+5454=hole.
+5455=call (for), crow, cry.
+5456=noise, sound, voice.
+5457=fire, light.
+5458=light.
+5459=day star.
+5460=bright, full of light.
+5461=enlighten, illuminate, (bring to, give) light, make to see.
+5462=light.
+5463=farewell, be glad, God speed, greeting, hall, joy(- fully), rejoice.
+5464=hail.
+5465=let down, strike.
+5466=Chaldaean.
+5467=fierce, perilous.
+5468=bridle.
+5469=bit, bridle.
+5470=brass.
+5471=coppersmith.
+5472=chalcedony.
+5473=brazen vessel.
+5474=fine brass.
+5475=brass, money.
+5476=on (to) the ground.
+5477=Chanaan.
+5478=of Canaan.
+5479=gladness, X greatly, (X be exceeding) joy(-ful, -fully, -fulness, -ous).
+5480=graven, mark.
+5481=express image.
+5482=trench.
+5483=deliver, (frankly) forgive, (freely) give, grant.
+5484=be-(for) cause of, for sake of, +.
+5485=acceptable, benefit, favour, gift, grace(- ious), joy, liberality, pleasure, thank(-s, -worthy).
+5486=(free) gift.
+5487=make accepted, be highly favoured.
+5488=Charran.
+5489=paper.
+5490=gulf.
+5491=lip, shore.
+5492=be tossed with tempest.
+5493=brook.
+5494=tempest, foul weather, winter.
+5495=hand.
+5496=lead by the hand.
+5497=some to lead by the hand.
+5498=handwriting.
+5499=made by (make with) hands.
+5500=choose, ordain.
+5501=sorer, worse.
+5502=cherubims.
+5503=widow.
+5504=yesterday.
+5505=thousand.
+5506=(chief, high) captain.
+5507=thousand.
+5508=Chios.
+5509=clothes, coat, garment.
+5510=snow.
+5511=robe.
+5512=mock.
+5513=lukewarm.
+5514=Chloe.
+5515=green, pale.
+5516=six hundred threescore and six.
+5517=earthy.
+5518=measure.
+5519=swine.
+5520=be angry.
+5521=gall.
+5522=dust.
+5523=Chorazin.
+5524=give, minister.
+5525=dancing.
+5526=feed, fill, satisfy.
+5527=sustenance.
+5528=blade, grass, hay.
+5529=Chuza.
+5530=entreat, use.
+5531=lend.
+5532=business, lack, necessary(-ity), need(-ful), use, want.
+5533=debtor.
+5534=ought.
+5535=(have) need.
+5536=money, riches.
+5537=be called, be admonished (warned) of God, reveal, speak.
+5538=answer of God.
+5539=profit.
+5540=use.
+5541=be kind.
+5542=good words.
+5543=better, easy, good(-ness), gracious, kind.
+5544=gentleness, good(-ness), kindness.
+5545=anointing, unction.
+5546=Christian.
+5547=Christ.
+5548=anoint.
+5549=delay, tarry.
+5550=years old, season, space, (X often-)time(-s), (a) while.
+5551=spend time.
+5552=of gold, golden.
+5553=gold.
+5554=with a gold ring.
+5555=chrysolite.
+5556=chrysoprase.
+5557=gold.
+5558=deck.
+5559=body.
+5560=cripple, halt, lame.
+5561=coast, county, fields, ground, land, region.
+5562=come, contain, go, have place, (can, be room to) receive.
+5563=depart, put asunder, separate.
+5564=field, land, parcel of ground, place, possession.
+5565=beside, by itself, without.
+5566=north west.
+5567=make melody, sing (psalms).
+5568=psalm.
+5569=false brethren.
+5570=false teacher.
+5571=false, liar.
+5572=false teacher.
+5573=speaking lies.
+5574=falsely, lie.
+5575=false witness.
+5576=be a false witness.
+5577=false witness.
+5578=false prophet.
+5579=lie, lying.
+5580=false Christ.
+5581=falsely so called.
+5582=lie.
+5583=liar.
+5584=feel after, handle, touch.
+5585=count.
+5586=stone, voice.
+5587=whispering.
+5588=whisperer.
+5589=crumb.
+5590=heart (+ -ily), life, mind, soul, + us, + you.
+5591=natural, sensual.
+5592=cold.
+5593=cold.
+5594=wax cold.
+5595=(bestow to) feed.
+5596=sop.
+5597=rub.
+5598=Omega.
+5599=O.
+5600=appear, are, (may, might,  should) be, X have, is, + pass the flower of her age, should stand, were.
+5601=Obed.
+5602=here, hither, (in) this place, there.
+5603=song.
+5604=pain, sorrow, travail.
+5605=travail in (birth).
+5606=shoulder.
+5607=be, come, have.
+5608=buy.
+5609=egg.
+5610=day, hour, instant, season, X short, (even-)tide, (high) time.
+5611=beautiful.
+5612=roar.
+5613=about, after (that), (according) as (it had been, it were), as soon (as), even as (like), for, how (greatly), like (as, unto), since, so (that), that, to wit, unto, when(-soever), while, X with all speed.
+5614=hosanna.
+5615=even so, likewise, after the same (in like) manner.
+5616=about, as (it had been, it were), like (as).
+5617=Osee.
+5618=(even, like) as.
+5619=as.
+5620=(insomuch) as, so that (then), (insomuch) that, therefore, to, wherefore.
+5621=ear.
+5622=advantage, profit.
+5623=advantage, better, prevail, profit.
+5624=profit(-able).

Added: trunk/flashtools/gwords.conf
===================================================================
--- trunk/flashtools/gwords.conf	                        (rev 0)
+++ trunk/flashtools/gwords.conf	2007-05-22 18:24:38 UTC (rev 85)
@@ -0,0 +1,5625 @@
+[words]
+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=βολή
+1001=βολίζω
+1002=βολίς
+1003=Βοόζ
+1004=βόρβορος
+1005=βοῤῥᾶς
+1006=βόσκω
+1007=Βοσόρ
+1008=βοτάνη
+1009=βότρυς
+1010=βουλευτής
+1011=βουλεύω
+1012=βουλή
+1013=βούλημα
+1014=βούλομαι
+1015=βουνός
+1016=βοῦς
+1017=βραβεῖον
+1018=βραβεύω
+1019=βραδύνω
+1020=βραδυπλοέω
+1021=βραδύς
+1022=βραδύτης
+1023=βραχίων
+1024=βραχύς
+1025=βρέφος
+1026=βρέχω
+1027=βροντή
+1028=βροχή
+1029=βρόχος
+1030=βρυγμός
+1031=βρύχω
+1032=βρύω
+1033=βρῶμα
+1034=βρώσιμος
+1035=βρῶσις
+1036=βυθίζω
+1037=βυθός
+1038=βυρσεύς
+1039=βύσσινος
+1040=βύσσος
+1041=βωμός
+1042=γαββαθά
+1043=Γαβριήλ
+1044=γάγγραινα
+1045=Γάδ
+1046=Γαδαρηνός
+1047=γάζα
+1048=Γάζα
+1049=γαζοφυλάκιον
+1050=Γάϊος
+1051=γάλα
+1052=Γαλάτης
+1053=Γαλατία
+1054=Γαλατικός
+1055=γαλήνη
+1056=Γαλιλαία
+1057=Γαλιλαῖος
+1058=Γαλλίων
+1059=Γαμαλιήλ
+1060=γαμέω
+1061=γαμίσκω
+1062=γάμος
+1063=γάρ
+1064=γαστήρ
+1065=γέ
+1066=Γεδεών
+1067=γέεννα
+1068=Γεθσημανῆ
+1069=γείτων
+1070=γελάω
+1071=γέλως
+1072=γεμίζω
+1073=γέμω
+1074=γενεά
+1075=γενεαλογέω
+1076=γενεαλογία
+1077=γενέσια
+1078=γένεσις
+1079=γενετή
+1080=γεννάω
+1081=γέννημα
+1082=Γεννησαρέτ
+1083=γέννησις
+1084=γεννητός
+1085=γένος
+1086=Γεργεσηνός
+1087=γερουσία
+1088=γέρων
+1089=γεύομαι
+1090=γεωργέω
+1091=γεώργιον
+1092=γεωργός
+1093=γῆ
+1094=γῆρας
+1095=γηράσκω
+1096=γίνομαι
+1097=γινώσκω
+1098=γλεῦκος
+1099=γλυκύς
+1100=γλῶσσα
+1101=γλωσσόκομον
+1102=γναφεύς
+1103=γνήσιος
+1104=γνησίως
+1105=γνόφος
+1106=γνώμη
+1107=γνωρίζω
+1108=γνῶσις
+1109=γνώστης
+1110=γνωστός
+1111=γογγύζω
+1112=γογγυσμός
+1113=γογγυστής
+1114=γόης
+1115=Γολγοθᾶ
+1116=Γόμοῤῥα
+1117=γόμος
+1118=γονεύς
+1119=γόνυ
+1120=γονυπετέω
+1121=γράμμα
+1122=γραμματεύς
+1123=γραπτός
+1124=γραφή
+1125=γράφω
+1126=γραώδης
+1127=γρηγορεύω
+1128=γυμνάζω
+1129=γυμνασία
+1130=γυμνητεύω
+1131=γυμνός
+1132=γυμνότης
+1133=γυναικάριον
+1134=γυναικεῖος
+1135=γυνή
+1136=Γώγ
+1137=γωνία
+1138=Δαβίδ
+1139=δαιμονίζομαι
+1140=δαιμόνιον
+1141=δαιμονιώδης
+1142=δαίμων
+1143=δάκνω
+1144=δάκρυ
+1145=δακρύω
+1146=δακτύλιος
+1147=δάκτυλος
+1148=Δαλμανουθά
+1149=Δαλματία
+1150=δαμάζω
+1151=δάμαλις
+1152=Δάμαρις
+1153=Δαμασκηνός
+1154=Δαμασκός
+1155=δανείζω
+1156=δάνειον
+1157=δανειστής
+1158=Δανιήλ
+1159=δαπανάω
+1160=δαπάνη
+1161=δέ
+1162=δέησις
+1163=δεῖ
+1164=δεῖγμα
+1165=δειγματίζω
+1166=δεικνύω
+1167=δειλία
+1168=δειλιάω
+1169=δειλός
+1170=δεῖνα
+1171=δεινῶς
+1172=δειπνέω
+1173=δεῖπνον
+1174=δεισιδαιμονέστερος
+1175=δεισιδαιμονία
+1176=δέκα
+1177=δεκαδύο
+1178=δεκαπέντε
+1179=Δεκάπολις
+1180=δεκατέσσαρες
+1181=δεκάτη
+1182=δέκατος
+1183=δεκατόω
+1184=δεκτός
+1185=δελεάζω
+1186=δένδρον
+1187=δεξιολάβος
+1188=δεξιός
+1189=δέομαι
+1190=Δερβαῖος
+1191=Δέρβη
+1192=δέρμα
+1193=δερμάτινος
+1194=δέρω
+1195=δεσμεύω
+1196=δεσμέω
+1197=δέσμη
+1198=δέσμιος
+1199=δεσμόν
+1200=δεσμοφύλαξ
+1201=δεσμωτήριον
+1202=δεσμώτης
+1203=δεσπότης
+1204=δεῦρο
+1205=δεῦτε
+1206=δευτεραῖος
+1207=δευτερόπρωτος
+1208=δεύτερος
+1209=δέχομαι
+1210=δέω
+1211=δή
+1212=δῆλος
+1213=δηλόω
+1214=Δημᾶς
+1215=δημηγορέω
+1216=Δημήτριος
+1217=δημιουργός
+1218=δῆμος
+1219=δημόσιος
+1220=δηνάριον
+1221=δήποτε
+1222=δήπου
+1223=διά
+1224=διαβαίνω
+1225=διαβάλλω
+1226=διαβεβαιόομαι
+1227=διαβλέπω
+1228=διάβολος
+1229=διαγγέλλω
+1230=διαγίνομαι
+1231=διαγινώσκω
+1232=διαγνωρίζω
+1233=διάγνωσις
+1234=διαγογγύζω
+1235=διαγρηγορέω
+1236=διάγω
+1237=διαδέχομαι
+1238=διάδημα
+1239=διαδίδωμι
+1240=διάδοχος
+1241=διαζώννυμι
+1242=διαθήκη
+1243=διαίρεσις
+1244=διαιρέω
+1245=διακαθαρίζω
+1246=διακατελέγχομαι
+1247=διακονέω
+1248=διακονία
+1249=διάκονος
+1250=διακόσιοι
+1251=διακούομαι
+1252=διακρίνω
+1253=διάκρισις
+1254=διακωλύω
+1255=διαλαλέω
+1256=διαλέγομαι
+1257=διαλείπω
+1258=διάλεκτος
+1259=διαλλάσσω
+1260=διαλογίζομαι
+1261=διαλογισμός
+1262=διαλύω
+1263=διαμαρτύρομαι
+1264=διαμάχομαι
+1265=διαμένω
+1266=διαμερίζω
+1267=διαμερισμός
+1268=διανέμω
+1269=διανεύω
+1270=διανόημα
+1271=διάνοια
+1272=διανοίγω
+1273=διανυκτερεύω
+1274=διανύω
+1275=διαπαντός
+1276=διαπεράω
+1277=διαπλέω
+1278=διαπονέω
+1279=διαπορεύομαι
+1280=διαπορέω
+1281=διαπραγματεύομαι
+1282=διαπρίω
+1283=διαρπάζω
+1284=διαῤῥήσσω
+1285=διασαφέω
+1286=διασείω
+1287=διασκορπίζω
+1288=διασπάω
+1289=διασπείρω
+1290=διασπορά
+1291=διαστέλλομαι
+1292=διάστημα
+1293=διαστολή
+1294=διαστρέφω
+1295=διασώζω
+1296=διαταγή
+1297=διάταγμα
+1298=διαταράσσω
+1299=διατάσσω
+1300=διατελέω
+1301=διατηρέω
+1302=διατί
+1303=διατίθεμαι
+1304=διατρίβω
+1305=διατροφή
+1306=διαυγάζω
+1307=διαφανής
+1308=διαφέρω
+1309=διαφεύγω
+1310=διαφημίζω
+1311=διαφθείρω
+1312=διαφθορά
+1313=διάφορος
+1314=διαφυλάσσω
+1315=διαχειρίζομαι
+1316=διαχωρίζομαι
+1317=διδακτικός
+1318=διδακτός
+1319=διδασκαλία
+1320=διδάσκαλος
+1321=διδάσκω
+1322=διδαχή
+1323=δίδραχμον
+1324=Δίδυμος
+1325=δίδωμι
+1326=διεγείρω
+1327=διέξοδος
+1328=διερμηνευτής
+1329=διερμηνεύω
+1330=διέρχομαι
+1331=διερωτάω
+1332=διετής
+1333=διετία
+1334=διηγέομαι
+1335=διήγεσις
+1336=διηνεκής
+1337=διθάλασσος
+1338=διϊκνέομαι
+1339=διΐστημι
+1340=διϊσχυρίζομαι
+1341=δικαιοκρισία
+1342=δίκαιος
+1343=δικαιοσύνη
+1344=δικαιόω
+1345=δικαίωμα
+1346=δικαίως
+1347=δικαίωσις
+1348=δικαστής
+1349=δίκη
+1350=δίκτυον
+1351=δίλογος
+1352=διό
+1353=διοδεύω
+1354=Διονύσιος
+1355=διόπερ
+1356=διοπετής
+1357=διόρθωσις
+1358=διορύσσω
+1359=Διόσκουροι
+1360=διότι
+1361=Διοτρέφης
+1362=διπλοῦς
+1363=διπλόω
+1364=δίς
+1365=διστάζω
+1366=δίστομος
+1367=δισχίλιοι
+1368=διϋλίζω
+1369=διχάζω
+1370=διχοστασία
+1371=διχοτομέω
+1372=διψάω
+1373=δίψος
+1374=δίψυχος
+1375=διωγμός
+1376=διώκτης
+1377=διώκω
+1378=δόγμα
+1379=δογματίζω
+1380=δοκέω
+1381=δοκιμάζω
+1382=δοκιμή
+1383=δοκίμιον
+1384=δόκιμος
+1385=δοκός
+1386=δόλιος
+1387=δολιόω
+1388=δόλος
+1389=δολόω
+1390=δόμα
+1391=δόξα
+1392=δοξάζω
+1393=Δορκάς
+1394=δόσις
+1395=δότης
+1396=δουλαγωγέω
+1397=δουλεία
+1398=δουλεύω
+1399=δούλη
+1400=δοῦλον
+1401=δοῦλος
+1402=δουλόω
+1403=δοχή
+1404=δράκων
+1405=δράσσομαι
+1406=δραχμή
+1407=δρέπανον
+1408=δρόμος
+1409=Δρούσιλλα
+1410=δύναμαι
+1411=δύναμις
+1412=δυναμόω
+1413=δυνάστης
+1414=δυνατέω
+1415=δυνατός
+1416=δύνω
+1417=δύο
+1418=δυσ-
+1419=δυσβάστακτος
+1420=δυσεντέρια
+1421=δυσερμήνευτος
+1422=δύσκολος
+1423=δυσκόλως
+1424=δυσμή
+1425=δυσνόητος
+1426=δυσφημία
+1427=δώδεκα
+1428=δωδέκατος
+1429=δωδεκάφυλον
+1430=δῶμα
+1431=δωρεά
+1432=δωρεάν
+1433=δωρέομαι
+1434=δώρημα
+1435=δῶρον
+1436=ἔα
+1437=ἐάν
+1438=ἑαυτοῦ
+1439=ἐάω
+1440=ἑβδομήκοντα
+1441=ἑβδομηκοντάκις
+1442=ἕβδομος
+1443=Ἐβέρ
+1444=Ἑβραϊκός
+1445=Ἑβραῖος
+1446=Ἑβραΐς
+1447=Ἑβραϊστί
+1448=ἐγγίζω
+1449=ἐγγράφω
+1450=ἔγγυος
+1451=ἐγγύς
+1452=ἐγγύτερον
+1453=ἐγείρω
+1454=ἔγερσις
+1455=ἐγκάθετος
+1456=ἐγκαίνια
+1457=ἐγκαινίζω
+1458=ἐγκαλέω
+1459=ἐγκαταλείπω
+1460=ἐγκατοικέω
+1461=ἐγκεντρίζω
+1462=ἔγκλημα
+1463=ἐγκομβόομαι
+1464=ἐγκοπή
+1465=ἐγκόπτω
+1466=ἐγκράτεια
+1467=ἐγκρατεύομαι
+1468=ἐγκρατής
+1469=ἐγκρίνω
+1470=ἐγκρύπτω
+1471=ἔγκυος
+1472=ἐγχρίω
+1473=ἐγώ
+1474=ἐδαφίζω
+1475=ἔδαφος
+1476=ἑδραῖος
+1477=ἑδραίωμα
+1478=Ἐζεκίας
+1479=ἐθελοθρησκεία
+1480=ἐθίζω
+1481=ἐθνάρχης
+1482=ἐθνικός
+1483=ἐθνικῶς
+1484=ἔθνος
+1485=ἔθος
+1486=ἔθω
+1487=εἰ
+1488=εἶ
+1489=εἴγε
+1490=εἰ δὲ μή(γε)
+1491=εἶδος
+1492=εἴδω
+1493=εἰδωλεῖον
+1494=εἰδωλόθυτον
+1495=εἰδωλολατρεία
+1496=εἰδωλολάτρης
+1497=εἴδωλον
+1498=εἴην
+1499=εἰ καί
+1500=εἰκῆ
+1501=εἴκοσι
+1502=εἲκω
+1503=εἲκω
+1504=εἰκών
+1505=εἰλικρίνεια
+1506=εἰλικρινής
+1507=εἱλίσσω
+1508=εἰ μή
+1509=εἰ μή τι
+1510=εἰμί
+1511=εἶναι
+1512=εἴ περ
+1513=εἴ πως
+1514=εἰρηνεύω
+1515=εἰρήνη
+1516=εἰρηνικός
+1517=εἰρηνοποιέω
+1518=εἰρηνοποιός
+1519=εἰς
+1520=εἷς
+1521=εἰσάγω
+1522=εἰσακούω
+1523=εἰσδέχομαι
+1524=εἴσειμι
+1525=εἰσέρχομαι
+1526=εἰσί
+1527=εἷς καθ’ εἷς
+1528=εἰσκαλέω
+1529=εἴσοδος
+1530=εἰσπηδάω
+1531=εἰσπορεύομαι
+1532=εἰστρέχω
+1533=εἰσφέρω
+1534=εἶτα
+1535=εἴτε
+1536=εἴ τις
+1537=ἐκ
+1538=ἕκαστος
+1539=ἑκάστοτε
+1540=ἑκατόν
+1541=ἑκατονταετής
+1542=ἑκατονταπλασίων
+1543=ἑκατοντάρχης
+1544=ἐκβάλλω
+1545=ἔκβασις
+1546=ἐκβολή
+1547=ἐκγαμίζω
+1548=ἐκγαμίσκω
+1549=ἔκγονον
+1550=ἐκδαπανάω
+1551=ἐκδέχομαι
+1552=ἔκδηλος
+1553=ἐκδημέω
+1554=ἐκδίδωμι
+1555=ἐκδιηγέομαι
+1556=ἐκδικέω
+1557=ἐκδίκησις
+1558=ἔκδικος
+1559=ἐκδιώκω
+1560=ἔκδοτος
+1561=ἐκδοχή
+1562=ἐκδύω
+1563=ἐκεῖ
+1564=ἐκεῖθεν
+1565=ἐκεῖνος
+1566=ἐκεῖσε
+1567=ἐκζητέω
+1568=ἐκθαμβέω
+1569=ἔκθαμβος
+1570=ἔκθετος
+1571=ἐκκαθαίρω
+1572=ἐκκαίω
+1573=ἐκκακέω
+1574=ἐκκεντέω
+1575=ἐκκλάω
+1576=ἐκκλείω
+1577=ἐκκλησία
+1578=ἐκκλίνω
+1579=ἐκκολυμβάω
+1580=ἐκκομίζω
+1581=ἐκκόπτω
+1582=ἐκκρέμαμαι
+1583=ἐκλαλέω
+1584=ἐκλάμπω
+1585=ἐκλανθάνομαι
+1586=ἐκλέγομαι
+1587=ἐκλείπω
+1588=ἐκλεκτός
+1589=ἐκλογή
+1590=ἐκλύω
+1591=ἐκμάσσω
+1592=ἐκμυκτηρίζω
+1593=ἐκνεύω
+1594=ἐκνήφω
+1595=ἑκούσιον
+1596=ἑκουσίως
+1597=ἔκπαλαι
+1598=ἐκπειράζω
+1599=ἐκπέμπω
+1600=ἐκπετάννυμι
+1601=ἐκπίπτω
+1602=ἐκπλέω
+1603=ἐκπληρόω
+1604=ἐκπλήρωσις
+1605=ἐκπλήσσω
+1606=ἐκπνέω
+1607=ἐκπορεύομαι
+1608=ἐκπορνεύω
+1609=ἐκπτύω
+1610=ἐκριζόω
+1611=ἔκστασις
+1612=ἐκστρέφω
+1613=ἐκταράσσω
+1614=ἐκτείνω
+1615=ἐκτελέω
+1616=ἐκτένεια
+1617=ἐκτενέστερον
+1618=ἐκτενής
+1619=ἐκτενῶς
+1620=ἐκτίθημι
+1621=ἐκτινάσσω
+1622=ἐκτός
+1623=ἕκτος
+1624=ἐκτρέπω
+1625=ἐκτρέφω
+1626=ἔκτρωμα
+1627=ἐκφέρω
+1628=ἐκφεύγω
+1629=ἐκφοβέω
+1630=ἔκφοβος
+1631=ἐκφύω
+1632=ἐκχέω
+1633=ἐκχωρέω
+1634=ἐκψύχω
+1635=ἑκών
+1636=ἐλαία
+1637=ἔλαιον
+1638=ἐλαιών
+1639=Ἐλαμίτης
+1640=ἐλάσσων
+1641=ἐλαττονέω
+1642=ἐλαττόω
+1643=ἐλαύνω
+1644=ἐλαφρία
+1645=ἐλαφρός
+1646=ἐλάχιστος
+1647=ἐλαχιστότερος
+1648=Ἐλεάζαρ
+1649=ἔλεγξις
+1650=ἔλεγχος
+1651=ἐλέγχω
+1652=ἐλεεινός
+1653=ἐλεέω
+1654=ἐλεημοσύνη
+1655=ἐλεήμων
+1656=ἔλεος
+1657=ἐλευθερία
+1658=ἐλεύθερος
+1659=ἐλευθερόω
+1660=ἔλευσις
+1661=ἐλεφάντινος
+1662=Ἐλιακείμ
+1663=Ἐλιέζερ
+1664=Ἐλιούδ
+1665=Ἐλισάβετ
+1666=Ἐλισσαῖος
+1667=ἑλίσσω
+1668=ἕλκος
+1669=ἑλκόω
+1670=ἑλκύω
+1671=Ἑλλάς
+1672=Ἕλλην
+1673=Ἑλληνικός
+1674=Ἑλληνίς
+1675=Ἑλληνιστής
+1676=Ἑλληνιστί
+1677=ἐλλογέω
+1678=Ἐλμωδάμ
+1679=ἐλπίζω
+1680=ἐλπίς
+1681=Ἐλύμας
+1682=ἐλοΐ
+1683=ἐμαυτοῦ
+1684=ἐμβαίνω
+1685=ἐμβάλλω
+1686=ἐμβάπτω
+1687=ἐμβατεύω
+1688=ἐμβιβάζω
+1689=ἐμβλέπω
+1690=ἐμβριμάομαι
+1691=ἐμέ
+1692=ἐμέω
+1693=ἐμμαίνομαι
+1694=Ἐμμανουήλ
+1695=Ἐμμαοῦς
+1696=ἐμμένω
+1697=Ἐμμόρ
+1698=ἐμοί
+1699=ἐμός
+1700=ἐμοῦ
+1701=ἐμπαιγμός
+1702=ἐμπαίζω
+1703=ἐμπαίκτης
+1704=ἐμπεριπατέω
+1705=ἐμπίπλημι
+1706=ἐμπίπτω
+1707=ἐμπλέκω
+1708=ἐμπλοκή
+1709=ἐμπνέω
+1710=ἐμπορεύομαι
+1711=ἐμπορία
+1712=ἐμπόριον
+1713=ἔμπορος
+1714=ἐμπρήθω
+1715=ἔμπροσθεν
+1716=ἐμπτύω
+1717=ἐμφανής
+1718=ἐμφανίζω
+1719=ἔμφοβος
+1720=ἐμφυσάω
+1721=ἔμφυτος
+1722=ἐν
+1723=ἐναγκαλίζομαι
+1724=ἐνάλιος
+1725=ἔναντι
+1726=ἐναντίον
+1727=ἐναντίος
+1728=ἐνάρχομαι
+1729=ἐνδεής
+1730=ἔνδειγμα
+1731=ἐνδείκνυμι
+1732=ἔνδειξις
+1733=ἕνδεκα
+1734=ἑνδέκατος
+1735=ἐνδέχεται
+1736=ἐνδημέω
+1737=ἐνδιδύσκω
+1738=ἔνδικος
+1739=ἐνδώμησις
+1740=ἐνδοξάζω
+1741=ἔνδοξος
+1742=ἔνδυμα
+1743=ἐνδυναμόω
+1744=ἐνδύνω
+1745=ἔνδυσις
+1746=ἐνδύω
+1747=ἐνέδρα
+1748=ἐνεδρεύω
+1749=ἔνεδρον
+1750=ἐνειλέω
+1751=ἔνειμι
+1752=ἕνεκα
+1753=ἐνέργεια
+1754=ἐνεργέω
+1755=ἐνέργημα
+1756=ἐνεργής
+1757=ἐνευλογέω
+1758=ἐνέχω
+1759=ἐνθάδε
+1760=ἐνθυμέομαι
+1761=ἐνθύμησις
+1762=ἔνι
+1763=ἐνιαυτός
+1764=ἐνίστημι
+1765=ἐνισχύω
+1766=ἔννατος
+1767=ἐννέα
+1768=ἐννενηκονταεννέα
+1769=ἐννεός
+1770=ἐννεύω
+1771=ἔννοια
+1772=ἔννομος
+1773=ἔννυχον
+1774=ἐνοικέω
+1775=ἑνότης
+1776=ἐνοχλέω
+1777=ἔνοχος
+1778=ἔνταλμα
+1779=ἐνταφιάζω
+1780=ἐνταφιασμός
+1781=ἐντέλλομαι
+1782=ἐντεῦθεν
+1783=ἔντευξις
+1784=ἔντιμος
+1785=ἐντολή
+1786=ἐντόπιος
+1787=ἐντός
+1788=ἐντρέπω
+1789=ἐντρέφω
+1790=ἔντρομος
+1791=ἐντροπή
+1792=ἐντρυφάω
+1793=ἐντυγχάνω
+1794=ἐντυλίσσω
+1795=ἐντυπόω
+1796=ἐνυβρίζω
+1797=ἐνυπνιάζομαι
+1798=ἐνύπνιον
+1799=ἐνώπιον
+1800=Ἐνώς
+1801=ἐνωτίζομαι
+1802=Ἐνώχ
+1803=ἕξ
+1804=ἐξαγγέλλω
+1805=ἐξαγοράζω
+1806=ἐξάγω
+1807=ἐξαιρέω
+1808=ἐξαίρω
+1809=ἐξαιτέομαι
+1810=ἐξαίφνης
+1811=ἐξακολουθέω
+1812=ἑξακόσιοι
+1813=ἐξαλείφω
+1814=ἐξάλλομαι
+1815=ἐξανάστασις
+1816=ἐξανατέλλω
+1817=ἐξανίστημι
+1818=ἐξαπατάω
+1819=ἐξάπινα
+1820=ἐξαπορέομαι
+1821=ἐξαποστέλλω
+1822=ἐξαρτίζω
+1823=ἐξαστράπτω
+1824=ἐξαυτῆς
+1825=ἐξεγείρω
+1826=ἔξειμι
+1827=ἐξελέγχω
+1828=ἐξέλκω
+1829=ἐξέραμα
+1830=ἐξερευνάω
+1831=ἐξέρχομαι
+1832=ἔξεστι
+1833=ἐξετάζω
+1834=ἐξηγέομαι
+1835=ἑξήκοντα
+1836=ἑξῆς
+1837=ἐξηχέομαι
+1838=ἕξις
+1839=ἐξίστημι
+1840=ἐξισχύω
+1841=ἔξοδος
+1842=ἐξολοθρεύω
+1843=ἐξομολογέω
+1844=ἐξορκίζω
+1845=ἐξορκιστής
+1846=ἐξορύσσω
+1847=ἐξουδενόω
+1848=ἐξουθενέω
+1849=ἐξουσία
+1850=ἐξουσιάζω
+1851=ἐξοχή
+1852=ἐξυπνίζω
+1853=ἔξυπνος
+1854=ἔξω
+1855=ἔξωθεν
+1856=ἐξωθέω
+1857=ἐξώτερος
+1858=ἑορτάζω
+1859=ἑορτή
+1860=ἐπαγγελία
+1861=ἐπαγγέλλω
+1862=ἐπάγγελμα
+1863=ἐπάγω
+1864=ἐπαγωνίζομαι
+1865=ἐπαθροίζω
+1866=Ἐπαίνετος
+1867=ἐπαινέω
+1868=ἔπαινος
+1869=ἐπαίρω
+1870=ἐπαισχύνομαι
+1871=ἐπαιτέω
+1872=ἐπακολουθέω
+1873=ἐπακούω
+1874=ἐπακροάομαι
+1875=ἐπάν
+1876=ἐπάναγκες
+1877=ἐπανάγω
+1878=ἐπαναμιμνήσκω
+1879=ἐπαναπαύομαι
+1880=ἐπανέρχομαι
+1881=ἐπανίσταμαι
+1882=ἐπανόρθωσις
+1883=ἐπάνω
+1884=ἐπαρκέω
+1885=ἐπαρχία
+1886=ἔπαυλις
+1887=ἐπαύριον
+1888=ἐπαυτοφώρῳ
+1889=Ἐπαφρᾶς
+1890=ἐπαφρίζω
+1891=Ἐπαφρόδιτος
+1892=ἐπεγείρω
+1893=ἐπεί
+1894=ἐπειδή
+1895=ἐπειδήπερ
+1896=ἐπεῖδον
+1897=ἐπείπερ
+1898=ἐπεισαγωγή
+1899=ἔπειτα
+1900=ἐπέκεινα
+1901=ἐπεκτείνομαι
+1902=ἐπενδύομαι
+1903=ἐπενδύτης
+1904=ἐπέρχομαι
+1905=ἐπερωτάω
+1906=ἐπερώτημα
+1907=ἐπέχω
+1908=ἐπηρεάζω
+1909=ἐπί
+1910=ἐπιβαίνω
+1911=ἐπιβάλλω
+1912=ἐπιβαρέω
+1913=ἐπιβιβάζω
+1914=ἐπιβλέπω
+1915=ἐπίβλημα
+1916=ἐπιβοάω
+1917=ἐπιβουλή
+1918=ἐπιγαμβρεύω
+1919=ἐπίγειος
+1920=ἐπιγίνομαι
+1921=ἐπιγινώσκω
+1922=ἐπίγνωσις
+1923=ἐπιγραφή
+1924=ἐπιγράφω
+1925=ἐπιδείκνυμι
+1926=ἐπιδέχομαι
+1927=ἐπιδημέω
+1928=ἐπιδιατάσσομαι
+1929=ἐπιδίδωμι
+1930=ἐπιδιορθόω
+1931=ἐπιδύω
+1932=ἐπιείκεια
+1933=ἐπιεικής
+1934=ἐπιζητέω
+1935=ἐπιθανάτιος
+1936=ἐπίθεσις
+1937=ἐπιθυμέω
+1938=ἐπιθυμητής
+1939=ἐπιθυμία
+1940=ἐπικαθίζω
+1941=ἐπικαλέομαι
+1942=ἐπικάλυμα
+1943=ἐπικαλύπτω
+1944=ἐπικατάρατος
+1945=ἐπίκειμαι
+1946=Ἐπικούρειος
+1947=ἐπικουρία
+1948=ἐπικρίνω
+1949=ἐπιλαμβάνομαι
+1950=ἐπιλανθάνομαι
+1951=ἐπιλέγομαι
+1952=ἐπιλείπω
+1953=ἐπιλησμονή
+1954=ἐπίλοιπος
+1955=ἐπίλυσις
+1956=ἐπιλύω
+1957=ἐπιμαρτυρέω
+1958=ἐπιμέλεια
+1959=ἐπιμελέομαι
+1960=ἐπιμελῶς
+1961=ἐπιμένω
+1962=ἐπινεύω
+1963=ἐπίνοια
+1964=ἐπιορκέω
+1965=ἐπίορκος
+1966=ἐπιοῦσα
+1967=ἐπιούσιος
+1968=ἐπιπίπτω
+1969=ἐπιπλήσσω
+1970=ἐπιπνίγω
+1971=ἐπιποθέω
+1972=ἐπιπόθησις
+1973=ἐπιπόθητος
+1974=ἐπιποθία
+1975=ἐπιπορεύομαι
+1976=ἐπιῤῥάπτω
+1977=ἐπιῤῥίπτω
+1978=ἐπίσημος
+1979=ἐπισιτισμός
+1980=ἐπισκέπτομαι
+1981=ἐπισκηνόω
+1982=ἐπισκιάζω
+1983=ἐπισκοπέω
+1984=ἐπισκοπή
+1985=ἐπίσκοπος
+1986=ἐπισπάομαι
+1987=ἐπίσταμαι
+1988=ἐπιστάτης
+1989=ἐπιστέλλω
+1990=ἐπιστήμων
+1991=ἐπιστηρίζω
+1992=ἐπιστολή
+1993=ἐπιστομίζω
+1994=ἐπιστρέφω
+1995=ἐπιστροφή
+1996=ἐπισυνάγω
+1997=ἐπισυναγωγή
+1998=ἐπισυντρέχω
+1999=ἐπισύστασις
+2000=ἐπισφαλής
+2001=ἐπισχύω
+2002=ἐπισωρεύω
+2003=ἐπιταγή
+2004=ἐπιτάσσω
+2005=ἐπιτελέω
+2006=ἐπιτήδειος
+2007=ἐπιτίθημι
+2008=ἐπιτιμάω
+2009=ἐπιτιμία
+2010=ἐπιτρέπω
+2011=ἐπιτροπή
+2012=ἐπίτροπος
+2013=ἐπιτυγχάνω
+2014=ἐπιφαίνω
+2015=ἐπιφάνεια
+2016=ἐπιφανής
+2017=ἐπιφαύω
+2018=ἐπιφέρω
+2019=ἐπιφωνέω
+2020=ἐπιφώσκω
+2021=ἐπιχειρέω
+2022=ἐπιχέω
+2023=ἐπιχορηγέω
+2024=ἐπιχορηγία
+2025=ἐπιχρίω
+2026=ἐποικοδομέω
+2027=ἐποκέλλω
+2028=ἐπονομάζω
+2029=ἐποπτεύω
+2030=ἐπόπτης
+2031=ἔπος
+2032=ἐπουράνιος
+2033=ἑπτά
+2034=ἑπτάκις
+2035=ἑπτακισχίλιοι
+2036=ἔπω
+2037=Ἔραστος
+2038=ἐργάζομαι
+2039=ἐργασία
+2040=ἐργάτης
+2041=ἔργον
+2042=ἐρεθίζω
+2043=ἐρείδω
+2044=ἐρεύγομαι
+2045=ἐρευνάω
+2046=ἐρέω
+2047=ἐρημία
+2048=ἔρημος
+2049=ἐρημόω
+2050=ἐρήμωσις
+2051=ἐρίζω
+2052=ἐριθεία
+2053=ἔριον
+2054=ἔρις
+2055=ἐρίφιον
+2056=ἔριφος
+2057=Ἑρμᾶς
+2058=ἑρμηνεία
+2059=ἑρμηνεύω
+2060=Ἑρμῆς
+2061=Ἑρμογένης
+2062=ἑρπετόν
+2063=ἐρυθρός
+2064=ἔρχομαι
+2065=ἐρωτάω
+2066=ἐσθής
+2067=ἔσθησις
+2068=ἐσθίω
+2069=Ἐσλί
+2070=ἐσμέν
+2071=ἔσομαι
+2072=ἔσοπτρον
+2073=ἑσπέρα
+2074=Ἐσρώμ
+2075=ἐστέ
+2076=ἐστί
+2077=ἐστω
+2078=ἔσχατος
+2079=ἐσχάτως
+2080=ἔσω
+2081=ἔσωθεν
+2082=ἐσώτερος
+2083=ἑταῖρος
+2084=ἑτερόγλωσσος
+2085=ἑτεροδιδασκαλέω
+2086=ἑτεροζυγέω
+2087=ἕτερος
+2088=ἑτέρως
+2089=ἔτι
+2090=ἑτοιμάζω
+2091=ἑτοιμασία
+2092=ἕτοιμος
+2093=ἑτοίμως
+2094=ἔτος
+2095=εὖ
+2096=Εὖα
+2097=εὐαγγελίζω
+2098=εὐαγγέλιον
+2099=εὐαγγελιστής
+2100=εὐαρεστέω
+2101=εὐάρεστος
+2102=εὐαρέστως
+2103=Εὔβουλος
+2104=εὐγενής
+2105=εὐδία
+2106=εὐδοκέω
+2107=εὐδοκία
+2108=εὐεργεσία
+2109=εὐεργετέω
+2110=εὐεργέτης
+2111=εὔθετος
+2112=εὐθέως
+2113=εὐθυδρομέω
+2114=εὐθυμέω
+2115=εὔθυμος
+2116=εὐθύνω
+2117=εὐθύς
+2118=εὐθύτης
+2119=εὐκαιρέω
+2120=εὐκαιρία
+2121=εὔκαιρος
+2122=εὐκαίρως
+2123=εὐκοπώτερος
+2124=εὐλάβεια
+2125=εὐλαβέομαι
+2126=εὐλαβής
+2127=εὐλογέω
+2128=εὐλογητός
+2129=εὐλογία
+2130=εὐμετάδοτος
+2131=Εὐνίκη
+2132=εὐνοέω
+2133=εὔνοια
+2134=εὐνουχίζω
+2135=εὐνοῦχος
+2136=Εὐοδία
+2137=εὐοδόω
+2138=εὐπειθής
+2139=εὐπερίστατος
+2140=εὐποιΐα
+2141=εὐπορέω
+2142=εὐπορία
+2143=εὐπρέπεια
+2144=εὐπρόσδεκτος
+2145=εὐπρόσεδρος
+2146=εὐπροσωπέω
+2147=εὑρίσκω
+2148=Εὐροκλύδων
+2149=εὐρύχωρος
+2150=εὐσέβεια
+2151=εὐσεβέω
+2152=εὐσεβής
+2153=εὐσεβῶς
+2154=εὔσημος
+2155=εὔσπλαγχνος
+2156=εὐσχημόνως
+2157=εὐσχημοσύνη
+2158=εὐσχήμων
+2159=εὐτόνως
+2160=εὐτραπελία
+2161=Εὔτυχος
+2162=εὐφημία
+2163=εὔφημος
+2164=εὐφορέω
+2165=εὐφραίνω
+2166=Εὐφράτης
+2167=εὐφροσύνη
+2168=εὐχαριστέω
+2169=εὐχαριστία
+2170=εὐχάριστος
+2171=εὐχή
+2172=εὔχομαι
+2173=εὔχρηστος
+2174=εὐψυχέω
+2175=εὐωδία
+2176=εὐώνυμος
+2177=ἐφάλλομαι
+2178=ἐφάπαξ
+2179=Ἐφεσῖνος
+2180=Ἐφέσιος
+2181=Ἔφεσος
+2182=ἐφευρετής
+2183=ἐφημερία
+2184=ἐφήμερος
+2185=ἐφικνέομαι
+2186=ἐφίστημι
+2187=Ἐφραίμ
+2188=ἐφφαθά
+2189=ἔχθρα
+2190=ἐχθρός
+2191=ἔχιδνα
+2192=ἔχω
+2193=ἕως
+2194=Ζαβουλών
+2195=Ζακχαῖος
+2196=Ζαρά
+2197=Ζαχαρίας
+2198=ζάω
+2199=Ζεβεδαῖος
+2200=ζεστός
+2201=ζεῦγος
+2202=ζευκτηρία
+2203=Ζεύς
+2204=ζέω
+2205=ζῆλος
+2206=ζηλόω
+2207=ζηλωτής
+2208=Ζηλωτής
+2209=ζημία
+2210=ζημιόω
+2211=Ζηνᾶς
+2212=ζητέω
+2213=ζήτημα
+2214=ζήτησις
+2215=ζιζάνιον
+2216=Ζοροβαβέλ
+2217=ζόφος
+2218=ζυγός
+2219=ζύμη
+2220=ζυμόω
+2221=ζωγρέω
+2222=ζωή
+2223=ζώνη
+2224=ζώννυμι
+2225=ζωογονέω
+2226=ζῶον
+2227=ζωοποιέω
+2228=ἤ
+2229=ἦ
+2230=ἡγεμονεύω
+2231=ἡγεμονία
+2232=ἡγεμών
+2233=ἡγέομαι
+2234=ἡδέως
+2235=ἤδη
+2236=ἥδιστα
+2237=ἡδονή
+2238=ἡδύοσμον
+2239=ἦθος
+2240=ἥκω
+2241=ἠλί
+2242=Ἡλί
+2243=Ἡλίας
+2244=ἡλικία
+2245=ἡλίκος
+2246=ἥλιος
+2247=ἧλος
+2248=ἡμᾶς
+2249=ἡμεῖς
+2250=ἡμέρα
+2251=ἡμέτερος
+2252=ἤμην
+2253=ἡμιθανής
+2254=ἡμῖν
+2255=ἥμισυ
+2256=ἡμίωριον
+2257=ἡμῶν
+2258=ἦν
+2259=ἡνίκα
+2260=ἤπερ
+2261=ἤπιος
+2262=Ἤρ
+2263=ἤρεμος
+2264=Ἡρώδης
+2265=Ἡρωδιανοί
+2266=Ἡρωδιάς
+2267=Ἡρωδίων
+2268=Ἡσαΐας
+2269=Ἠσαῦ
+2270=ἡσυχάζω
+2271=ἡσυχία
+2272=ἡσύχιος
+2273=ἤτοι
+2274=ἡττάω
+2275=ἥττημα
+2276=ἥττον
+2277=ἤτω
+2278=ἠχέω
+2279=ἦχος
+2280=Θαδδαῖος
+2281=θάλασσα
+2282=θάλπω
+2283=Θάμαρ
+2284=θαμβέω
+2285=θάμβος
+2286=θανάσιμος
+2287=θανατήφορος
+2288=θάνατος
+2289=θανατόω
+2290=θάπτω
+2291=Θάρα
+2292=θαῤῥέω
+2293=θαρσέω
+2294=θάρσος
+2295=θαῦμα
+2296=θαυμάζω
+2297=θαυμάσιος
+2298=θαυμαστός
+2299=θεά
+2300=θεάομαι
+2301=θεατρίζω
+2302=θέατρον
+2303=θεῖον
+2304=θεῖος
+2305=θειότης
+2306=θειώδης
+2307=θέλημα
+2308=θέλησις
+2309=θέλω
+2310=θεμέλιος
+2311=θεμελιόω
+2312=θεοδίδακτος
+2313=θεομαχέω
+2314=θεομάχος
+2315=θεόπνευστος
+2316=θεός
+2317=θεοσέβεια
+2318=θεοσεβής
+2319=θεοστυγής
+2320=θεότης
+2321=Θεόφιλος
+2322=θεραπεία
+2323=θεραπεύω
+2324=θεράπων
+2325=θερίζω
+2326=θερισμός
+2327=θεριστής
+2328=θερμαίνω
+2329=θέρμη
+2330=θέρος
+2331=Θεσσαλονικεύς
+2332=Θεσσαλονίκη
+2333=Θευδᾶς
+2334=θεωρέω
+2335=θεωρία
+2336=θήκη
+2337=θηλάζω
+2338=θῆλυς
+2339=θήρα
+2340=θηρεύω
+2341=θηριομαχέω
+2342=θηρίον
+2343=θησαυρίζω
+2344=θησαυρός
+2345=θιγγάνω
+2346=θλίβω
+2347=θλῖψις
+2348=θνήσκω
+2349=θνητός
+2350=θορυβέω
+2351=θόρυβος
+2352=θραύω
+2353=θρέμμα
+2354=θρηνέω
+2355=θρῆνος
+2356=θρησκεία
+2357=θρησκός
+2358=θριαμβεύω
+2359=θρίξ
+2360=θροέω
+2361=θρόμβος
+2362=θρόνος
+2363=Θυάτειρα
+2364=θυγάτηρ
+2365=θυγάτριον
+2366=θύελλα
+2367=θύϊνος
+2368=θυμίαμα
+2369=θυμιαστήριον
+2370=θυμιάω
+2371=θυμομαχέω
+2372=θυμός
+2373=θυμόω
+2374=θύρα
+2375=θυρεός
+2376=θυρίς
+2377=θυρωρός
+2378=θυσία
+2379=θυσιαστήριον
+2380=θύω
+2381=Θωμᾶς
+2382=θώραξ
+2383=Ἰάειρος
+2384=Ἰακώβ
+2385=Ἰάκωβος
+2386=ἴαμα
+2387=Ἰαμβρῆς
+2388=Ἰαννά
+2389=Ἰάννης
+2390=ἰάομαι
+2391=Ἰάρεδ
+2392=ἴασις
+2393=ἴασπις
+2394=Ἰάσων
+2395=ἰατρός
+2396=ἴδε
+2397=ἰδέα
+2398=ἴδιος
+2399=ἰδιώτης
+2400=ἰδού
+2401=Ἰδουμαία
+2402=ἱδρώς
+2403=Ἰεζαβήλ
+2404=Ἱεράπολις
+2405=ἱερατεία
+2406=ἱεράτευμα
+2407=ἱερατεύω
+2408=Ἱερεμίας
+2409=ἱερεύς
+2410=Ἱεριχώ
+2411=ἱερόν
+2412=ἱεροπρεπής
+2413=ἱερός
+2414=Ἱεροσόλυμα
+2415=Ἱεροσολυμίτης
+2416=ἱεροσυλέω
+2417=ἱερόσυλος
+2418=ἱερουργέω
+2419=Ἱερουσαλήμ
+2420=ἱερωσύνη
+2421=Ἰεσσαί
+2422=Ἰεφθάε
+2423=Ἰεχονίας
+2424=Ἰησοῦς
+2425=ἱκανός
+2426=ἱκανότης
+2427=ἱκανόω
+2428=ἱκετηρία
+2429=ἱκμάς
+2430=Ἰκόνιον
+2431=ἱλαρός
+2432=ἱλαρότης
+2433=ἱλάσκομαι
+2434=ἱλασμός
+2435=ἱλαστήριον
+2436=ἵλεως
+2437=Ἰλλυρικόν
+2438=ἱμάς
+2439=ἱματίζω
+2440=ἱμάτιον
+2441=ἱματισμός
+2442=ἱμείρομαι
+2443=ἵνα
+2444=ἱνατί
+2445=Ἰόππη
+2446=Ἰορδάνης
+2447=ἰός
+2448=Ἰουδά
+2449=Ἰουδαία
+2450=Ἰουδαΐζω
+2451=Ἰουδαϊκός
+2452=Ἰουδαϊκῶς
+2453=Ἰουδαῖος
+2454=Ἰουδαϊσμός
+2455=Ἰούδας
+2456=Ἰουλία
+2457=Ἰούλιος
+2458=Ἰουνιᾶς
+2459=Ἰοῦστος
+2460=ἱππεύς
+2461=ἱππικόν
+2462=ἵππος
+2463=ἶρις
+2464=Ἰσαάκ
+2465=ἰσάγγελος
+2466=Ἰσαχάρ
+2467=ἴσημι
+2468=ἴσθι
+2469=Ἰσκαριώτης
+2470=ἴσος
+2471=ἰσότης
+2472=ἰσότιμος
+2473=ἰσόψυχος
+2474=Ἰσραήλ
+2475=Ἰσραηλίτης
+2476=ἵστημι
+2477=ἱστορέω
+2478=ἰσχυρός
+2479=ἰσχύς
+2480=ἰσχύω
+2481=ἴσως
+2482=Ἰταλία
+2483=Ἰταλικός
+2484=Ἰτουραΐα
+2485=ἰχθύδιον
+2486=ἰχθύς
+2487=ἴχνος
+2488=Ἰωάθαμ
+2489=Ἰωάννα
+2490=Ἰωαννᾶς
+2491=Ἰωάννης
+2492=Ἰώβ
+2493=Ἰωήλ
+2494=Ἰωνάν
+2495=Ἰωνᾶς
+2496=Ἰωράμ
+2497=Ἰωρείμ
+2498=Ἰωσαφάτ
+2499=Ἰωσή
+2500=Ἰωσῆς
+2501=Ἰωσήφ
+2502=Ἰωσίας
+2503=ἰῶτα
+2504=κἀγώ
+2505=καθά
+2506=καθαίρεσις
+2507=καθαιρέω
+2508=καθαίρω
+2509=καθάπερ
+2510=καθάπτω
+2511=καθαρίζω
+2512=καθαρισμός
+2513=καθαρός
+2514=καθαρότης
+2515=καθέδρα
+2516=καθέζομαι
+2517=καθεξῆς
+2518=καθεύδω
+2519=καθηγητής
+2520=καθήκω
+2521=κάθημαι
+2522=καθημερινός
+2523=καθίζω
+2524=καθίημι
+2525=καθίστημι
+2526=καθό
+2527=καθόλου
+2528=καθοπλίζω
+2529=καθοράω
+2530=καθότι
+2531=καθώς
+2532=καί
+2533=Καϊάφας
+2534=καίγε
+2535=Κάϊν
+2536=Καϊνάν
+2537=καινός
+2538=καινότης
+2539=καίπερ
+2540=καιρός
+2541=Καῖσαρ
+2542=Καισάρεια
+2543=καίτοι
+2544=καίτοιγε
+2545=καίω
+2546=κἀκεῖ
+2547=κἀκεῖθεν
+2548=κἀκεῖνος
+2549=κακία
+2550=κακοήθεια
+2551=κακολογέω
+2552=κακοπάθεια
+2553=κακοπαθέω
+2554=κακοποιέω
+2555=κακοποιός
+2556=κακός
+2557=κακοῦργος
+2558=κακουχέω
+2559=κακόω
+2560=κακῶς
+2561=κάκωσις
+2562=καλάμη
+2563=κάλαμος
+2564=καλέω
+2565=καλλιέλαιος
+2566=καλλίον
+2567=καλοδιδάσκαλος
+2568=Καλοὶ Λιμένες
+2569=καλοποιέω
+2570=καλός
+2571=κάλυμα
+2572=καλύπτω
+2573=καλῶς
+2574=κάμηλος
+2575=κάμινος
+2576=καμμύω
+2577=κάμνω
+2578=κάμπτω
+2579=κἄν
+2580=Κανᾶ
+2581=Κανανίτης
+2582=Κανδάκη
+2583=κανών
+2584=Καπερναούμ
+2585=καπηλεύω
+2586=καπνός
+2587=Καππαδοκία
+2588=καρδία
+2589=καρδιογνώστης
+2590=καρπός
+2591=Κάρπος
+2592=καρποφορέω
+2593=καρποφόρος
+2594=καρτερέω
+2595=κάρφος
+2596=κατά
+2597=καταβαίνω
+2598=καταβάλλω
+2599=καταβαρέω
+2600=κατάβασις
+2601=καταβιβάζω
+2602=καταβολή
+2603=καταβραβεύω
+2604=καταγγελεύς
+2605=καταγγέλλω
+2606=καταγελάω
+2607=καταγινώσκω
+2608=κατάγνυμι
+2609=κατάγω
+2610=καταγωνίζομαι
+2611=καταδέω
+2612=κατάδηλος
+2613=καταδικάζω
+2614=καταδιώκω
+2615=καταδουλόω
+2616=καταδυναστεύω
+2617=καταισχύνω
+2618=κατακαίω
+2619=κατακαλύπτω
+2620=κατακαυχάομαι
+2621=κατάκειμαι
+2622=κατακλάω
+2623=κατακλείω
+2624=κατακληροδοτέω
+2625=κατακλίνω
+2626=κατακλύζω
+2627=κατακλυσμός
+2628=κατακολουθέω
+2629=κατακόπτω
+2630=κατακρημνίζω
+2631=κατάκριμα
+2632=κατακρίνω
+2633=κατάκρισις
+2634=κατακυριεύω
+2635=καταλαλέω
+2636=καταλαλιά
+2637=κατάλαλος
+2638=καταλαμβάνω
+2639=καταλέγω
+2640=κατάλειμμα
+2641=καταλείπω
+2642=καταλιθάζω
+2643=καταλλαγή
+2644=καταλλάσσω
+2645=κατάλοιπος
+2646=κατάλυμα
+2647=καταλύω
+2648=καταμανθάνω
+2649=καταμαρτυρέω
+2650=καταμένω
+2651=καταμόνας
+2652=κατανάθεμα
+2653=καταναθεματίζω
+2654=καταναλίσκω
+2655=καταναρκάω
+2656=κατανεύω
+2657=κατανοέω
+2658=καταντάω
+2659=κατάνυξις
+2660=κατανύσσω
+2661=καταξιόω
+2662=καταπατέω
+2663=κατάπαυσις
+2664=καταπαύω
+2665=καταπέτασμα
+2666=καταπίνω
+2667=καταπίπτω
+2668=καταπλέω
+2669=καταπονέω
+2670=καταποντίζω
+2671=κατάρα
+2672=καταράομαι
+2673=καταργέω
+2674=καταριθμέω
+2675=καταρτίζω
+2676=κατάρτισις
+2677=καταρτισμός
+2678=κατασείω
+2679=κατασκάπτω
+2680=κατασκευάζω
+2681=κατασκηνόω
+2682=κατασκήνωσις
+2683=κατασκιάζω
+2684=κατασκοπέω
+2685=κατάσκοπος
+2686=κατασοφίζομαι
+2687=καταστέλλω
+2688=κατάστημα
+2689=καταστολή
+2690=καταστρέφω
+2691=καταστρηνιάω
+2692=καταστροφή
+2693=καταστρώννυμι
+2694=κατασύρω
+2695=κατασφάττω
+2696=κατασφραγίζω
+2697=κατάσχεσις
+2698=κατατίθημι
+2699=κατατομή
+2700=κατατοξεύω
+2701=κατατρέχω
+2702=καταφέρω
+2703=καταφεύγω
+2704=καταφθείρω
+2705=καταφιλέω
+2706=καταφρονέω
+2707=καταφροντής
+2708=καταχέω
+2709=καταχθόνιος
+2710=καταχράομαι
+2711=καταψύχω
+2712=κατείδωλος
+2713=κατέναντι
+2714=κατενώπιον
+2715=κατεξουσιάζω
+2716=κατεργάζομαι
+2717</strongs>  Not Used
+2718=κατέρχομαι
+2719=κατεσθίω
+2720=κατευθύνω
+2721=κατεφίστημι
+2722=κατέχω
+2723=κατηγορέω
+2724=κατηγορία
+2725=κατήγορος
+2726=κατήφεια
+2727=κατηχέω
+2728=κατιόω
+2729=κατισχύω
+2730=κατοικέω
+2731=κατοίκησις
+2732=κατοικητήριον
+2733=κατοικία
+2734=κατοπτρίζομαι
+2735=κατόρθωμα
+2736=κάτω
+2737=κατώτερος
+2738=καῦμα
+2739=καυματίζω
+2740=καῦσις
+2741=καυσόω
+2742=καύσων
+2743=καυτηριάζω
+2744=καυχάομαι
+2745=καύχημα
+2746=καύχησις
+2747=Κεγχρεαί
+2748=Κεδρών
+2749=κεῖμαι
+2750=κειρία
+2751=κείρω
+2752=κέλευμα
+2753=κελεύω
+2754=κενοδοξία
+2755=κενόδοξος
+2756=κενός
+2757=κενοφωνία
+2758=κενόω
+2759=κέντρον
+2760=κεντυρίων
+2761=κενῶς
+2762=κεραία
+2763=κεραμεύς
+2764=κεραμικός
+2765=κεράμιον
+2766=κέραμος
+2767=κεράννυμι
+2768=κέρας
+2769=κεράτιον
+2770=κερδαίνω
+2771=κέρδος
+2772=κέρμα
+2773=κερματιστής
+2774=κεφάλαιον
+2775=κεφαλαιόω
+2776=κεφαλή
+2777=κεφαλίς
+2778=κῆνσος
+2779=κῆπος
+2780=κηπουρός
+2781=κηρίον
+2782=κήρυγμα
+2783=κῆρυξ
+2784=κηρύσσω
+2785=κῆτος
+2786=Κηφᾶς
+2787=κιβωτός
+2788=κιθάρα
+2789=κιθαρίζω
+2790=κιθαρῳδός
+2791=Κιλικία
+2792=κινάμωμον
+2793=κινδυνεύω
+2794=κίνδυνος
+2795=κινέω
+2796=κίνησις
+2797=Κίς
+2798=κλάδος
+2799=κλαίω
+2800=κλάσις
+2801=κλάσμα
+2802=Κλαύδη
+2803=Κλαυδία
+2804=Κλαύδιος
+2805=κλαυθμός
+2806=κλάω
+2807=κλείς
+2808=κλείω
+2809=κλέμμα
+2810=Κλεοπᾶς
+2811=κλέος
+2812=κλέπτης
+2813=κλέπτω
+2814=κλῆμα
+2815=Κλήμης
+2816=κληρονομέω
+2817=κληρονομία
+2818=κληρονόμος
+2819=κλῆρος
+2820=κληρόω
+2821=κλῆσις
+2822=κλητός
+2823=κλίβανος
+2824=κλίμα
+2825=κλίνη
+2826=κλινίδιον
+2827=κλίνω
+2828=κλισία
+2829=κλοπή
+2830=κλύδων
+2831=κλυδωνίζομαι
+2832=Κλωπᾶς
+2833=κνήθω
+2834=Κνίδος
+2835=κοδράντης
+2836=κοιλία
+2837=κοιμάω
+2838=κοίμησις
+2839=κοινός
+2840=κοινόω
+2841=κοινωνέω
+2842=κοινωνία
+2843=κοινωνικός
+2844=κοινωνός
+2845=κοίτη
+2846=κοιτών
+2847=κόκκινος
+2848=κόκκος
+2849=κολάζω
+2850=κολακεία
+2851=κόλασις
+2852=κολαφίζω
+2853=κολλάω
+2854=κολλούριον
+2855=κολλυβιστής
+2856=κολοβόω
+2857=Κολοσσαί
+2858=Κολοσσαεύς
+2859=κόλπος
+2860=κολυμβάω
+2861=κολυμβήθρα
+2862=κολωνία
+2863=κομάω
+2864=κόμη
+2865=κομίζω
+2866=κομψότερον
+2867=κονιάω
+2868=κονιορτός
+2869=κοπάζω
+2870=κοπετός
+2871=κοπή
+2872=κοπιάω
+2873=κόπος
+2874=κοπρία
+2875=κόπτω
+2876=κόραξ
+2877=κοράσιον
+2878=κορβᾶν
+2879=Κορέ
+2880=κορέννυμι
+2881=Κορίνθιος
+2882=Κόρινθος
+2883=Κορνήλιος
+2884=κόρος
+2885=κοσμέω
+2886=κοσμικός
+2887=κόσμιος
+2888=κοσμοκράτωρ
+2889=κόσμος
+2890=Κούαρτος
+2891=κοῦμι
+2892=κουστωδία
+2893=κουφίζω
+2894=κόφινος
+2895=κράββατος
+2896=κράζω
+2897=κραιπάλη
+2898=κρανίον
+2899=κράσπεδον
+2900=κραταιός
+2901=κραταιόω
+2902=κρατέω
+2903=κράτιστος
+2904=κράτος
+2905=κραυγάζω
+2906=κραυγή
+2907=κρέας
+2908=κρεῖσσον
+2909=κρείττων
+2910=κρεμάννυμι
+2911=κρημνός
+2912=Κρής
+2913=Κρήσκης
+2914=Κρήτη
+2915=κριθή
+2916=κρίθινος
+2917=κρίμα
+2918=κρίνον
+2919=κρίνω
+2920=κρίσις
+2921=Κρίσπος
+2922=κριτήριον
+2923=κριτής
+2924=κριτικός
+2925=κρούω
+2926=κρύπτη
+2927=κρυπτός
+2928=κρύπτω
+2929=κρυσταλλίζω
+2930=κρύσταλλος
+2931=κρυφῆ
+2932=κτάομαι
+2933=κτῆμα
+2934=κτῆνος
+2935=κτήτωρ
+2936=κτίζω
+2937=κτίσις
+2938=κτίσμα
+2939=κτίστης
+2940=κυβεία
+2941=κυβέρνησις
+2942=κυβερνήτης
+2943=κυκλόθεν
+2944=κυκλόω
+2945=κύκλῳ
+2946=κύλισμα
+2947=κυλιόω
+2948=κυλλός
+2949=κῦμα
+2950=κύμβαλον
+2951=κύμινον
+2952=κυνάριον
+2953=Κύπριος
+2954=Κύπρος
+2955=κύπτω
+2956=Κυρηναῖος
+2957=Κυρήνη
+2958=Κυρήνιος
+2959=Κυρία
+2960=κυριακός
+2961=κυριεύω
+2962=κύριος
+2963=κυριότης
+2964=κυρόω
+2965=κύων
+2966=κῶλον
+2967=κωλύω
+2968=κώμη
+2969=κωμόπολις
+2970=κῶμος
+2971=κώνωψ
+2972=Κώς
+2973=Κωσάμ
+2974=κωφός
+2975=λαγχάνω
+2976=Λάζαρος
+2977=λάθρα
+2978=λαῖλαψ
+2979=λακτίζω
+2980=λαλέω
+2981=λαλιά
+2982=λαμά
+2983=λαμβάνω
+2984=Λάμεχ
+2985=λαμπάς
+2986=λαμπρός
+2987=λαμπρότης
+2988=λαμπρῶς
+2989=λάμπω
+2990=λανθάνω
+2991=λαξευτός
+2992=λαός
+2993=Λαοδίκεια
+2994=Λαοδικεύς
+2995=λάρυγξ
+2996=Λασαία
+2997=λάσχω
+2998=λατομέω
+2999=λατρεία
+3000=λατρεύω
+3001=λάχανον
+3002=Λεββαῖος
+3003=λεγεών
+3004=λέγω
+3005=λεῖμμα
+3006=λεῖος
+3007=λείπω
+3008=λειτουργέω
+3009=λειτουργία
+3010=λειτουργικός
+3011=λειτουργός
+3012=λέντιον
+3013=λεπίς
+3014=λέπρα
+3015=λεπρός
+3016=λεπτόν
+3017=Λευΐ
+3018=Λευΐς
+3019=Λευΐτης
+3020=Λευϊτικός
+3021=λευκαίνω
+3022=λευκός
+3023=λέων
+3024=λήθη
+3025=ληνός
+3026=λῆρος
+3027=λῃστής
+3028=λῆμψις
+3029=λίαν
+3030=λίβανος
+3031=λιβανωτός
+3032=Λιβερτῖνος
+3033=Λιβύη
+3034=λιθάζω
+3035=λίθινος
+3036=λιθοβολέω
+3037=λίθος
+3038=λιθόστρωτος
+3039=λικμάω
+3040=λιμήν
+3041=λίμνη
+3042=λιμός
+3043=λίνον
+3044=Λίνος
+3045=λιπαρός
+3046=λίτρα
+3047=λίψ
+3048=λογία
+3049=λογίζομαι
+3050=λογικός
+3051=λόγιον
+3052=λόγιος
+3053=λογισμός
+3054=λογομαχέω
+3055=λογομαχία
+3056=λόγος
+3057=λόγχη
+3058=λοιδορέω
+3059=λοιδορία
+3060=λοίδορος
+3061=λοιμός
+3062=λοιποί
+3063=λοιπόν
+3064=λοιποῦ
+3065=Λουκᾶς
+3066=Λούκιος
+3067=λουτρόν
+3068=λούω
+3069=Λύδδα
+3070=Λυδία
+3071=Λυκαονία
+3072=Λυκαονιστί
+3073=Λυκία
+3074=λύκος
+3075=λυμαίνομαι
+3076=λυπέω
+3077=λύπη
+3078=Λυσανίας
+3079=Λυσίας
+3080=λύσις
+3081=λυσιτελεῖ
+3082=Λύστρα
+3083=λύτρον
+3084=λυτρόω
+3085=λύτρωσις
+3086=λυτρωτής
+3087=λυχνία
+3088=λύχνος
+3089=λύω
+3090=Λωΐς
+3091=Λώτ
+3092=Μαάθ
+3093=Μαγδαλά
+3094=Μαγδαληνή
+3095=μαγεία
+3096=μαγεύω
+3097=μάγος
+3098=Μαγώγ
+3099=Μαδιάν
+3100=μαθητεύω
+3101=μαθητής
+3102=μαθήτρια
+3103=Μαθουσαλά
+3104=Μαϊνάν
+3105=μαίνομαι
+3106=μακαρίζω
+3107=μακάριος
+3108=μακαρισμός
+3109=Μακεδονία
+3110=Μακεδών
+3111=μάκελλον
+3112=μακράν
+3113=μακρόθεν
+3114=μακροθυμέω
+3115=μακροθυμία
+3116=μακροθύμως
+3117=μακρός
+3118=μακροχρόνιος
+3119=μαλακία
+3120=μαλακός
+3121=Μαλελεήλ
+3122=μάλιστα
+3123=μᾶλλον
+3124=Μάλχος
+3125=μάμμη
+3126=μαμμωνᾶς
+3127=Μαναήν
+3128=Μανασσῆς
+3129=μανθάνω
+3130=μανία
+3131=μάννα
+3132=μαντεύομαι
+3133=μαραίνω
+3134=μαρὰν ἀθά
+3135=μαργαρίτης
+3136=Μάρθα
+3137=Μαρία
+3138=Μᾶρκος
+3139=μάρμαρος
+3140=μαρτυρέω
+3141=μαρτυρία
+3142=μαρτύριον
+3143=μαρτύρομαι
+3144=μάρτυς
+3145=μασσάομαι
+3146=μαστιγόω
+3147=μαστίζω
+3148=μάστιξ
+3149=μαστός
+3150=ματαιολογία
+3151=ματαιολόγος
+3152=μάταιος
+3153=ματαιότης
+3154=ματαιόω
+3155=μάτην
+3156=Ματθαῖος
+3157=Ματθάν
+3158=Ματθάτ
+3159=Ματθίας
+3160=Ματταθά
+3161=Ματταθίας
+3162=μάχαιρα
+3163=μάχη
+3164=μάχομαι
+3165=μέ
+3166=μεγαλαυχέω
+3167=μεγαλεῖος
+3168=μεγαλειότης
+3169=μεγαλοπρεπής
+3170=μεγαλύνω
+3171=μεγάλως
+3172=μεγαλωσύνη
+3173=μέγας
+3174=μέγεθος
+3175=μεγιστᾶνες
+3176=μέγιστος
+3177=μεθερμηνεύω
+3178=μέθη
+3179=μεθίστημι
+3180=μεθοδεία
+3181=μεθόριος
+3182=μεθύσκω
+3183=μέθυσος
+3184=μεθύω
+3185=μεῖζον
+3186=μειζότερος
+3187=μείζων
+3188=μέλαν
+3189=μέλας
+3190=Μελεᾶς
+3191=μελετάω
+3192=μέλι
+3193=μελίσσιος
+3194=Μελίτη
+3195=μέλλω
+3196=μέλος
+3197=Μελχί
+3198=Μελχισέδεκ
+3199=μέλω
+3200=μεμβράνα
+3201=μέμφομαι
+3202=μεμψίμοιρος
+3203</strongs>  Not Used
+3204</strongs>  Not Used
+3205</strongs>  Not Used
+3206</strongs>  Not Used
+3207</strongs>  Not Used
+3208</strongs>  Not Used
+3209</strongs>  Not Used
+3210</strongs>  Not Used
+3211</strongs>  Not Used
+3212</strongs>  Not Used
+3213</strongs>  Not Used
+3214</strongs>  Not Used
+3215</strongs>  Not Used
+3216</strongs>  Not Used
+3217</strongs>  Not Used
+3218</strongs>  Not Used
+3219</strongs>  Not Used
+3220</strongs>  Not Used
+3221</strongs>  Not Used
+3222</strongs>  Not Used
+3223</strongs>  Not Used
+3224</strongs>  Not Used
+3225</strongs>  Not Used
+3226</strongs>  Not Used
+3227</strongs>  Not Used
+3228</strongs>  Not Used
+3229</strongs>  Not Used
+3230</strongs>  Not Used
+3231</strongs>  Not Used
+3232</strongs>  Not Used
+3233</strongs>  Not Used
+3234</strongs>  Not Used
+3235</strongs>  Not Used
+3236</strongs>  Not Used
+3237</strongs>  Not Used
+3238</strongs>  Not Used
+3239</strongs>  Not Used
+3240</strongs>  Not Used
+3241</strongs>  Not Used
+3242</strongs>  Not Used
+3243</strongs>  Not Used
+3244</strongs>  Not Used
+3245</strongs>  Not Used
+3246</strongs>  Not Used
+3247</strongs>  Not Used
+3248</strongs>  Not Used
+3249</strongs>  Not Used
+3250</strongs>  Not Used
+3251</strongs>  Not Used
+3252</strongs>  Not Used
+3253</strongs>  Not Used
+3254</strongs>  Not Used
+3255</strongs>  Not Used
+3256</strongs>  Not Used
+3257</strongs>  Not Used
+3258</strongs>  Not Used
+3259</strongs>  Not Used
+3260</strongs>  Not Used
+3261</strongs>  Not Used
+3262</strongs>  Not Used
+3263</strongs>  Not Used
+3264</strongs>  Not Used
+3265</strongs>  Not Used
+3266</strongs>  Not Used
+3267</strongs>  Not Used
+3268</strongs>  Not Used
+3269</strongs>  Not Used
+3270</strongs>  Not Used
+3271</strongs>  Not Used
+3272</strongs>  Not Used
+3273</strongs>  Not Used
+3274</strongs>  Not Used
+3275</strongs>  Not Used
+3276</strongs>  Not Used
+3277</strongs>  Not Used
+3278</strongs>  Not Used
+3279</strongs>  Not Used
+3280</strongs>  Not Used
+3281</strongs>  Not Used
+3282</strongs>  Not Used
+3283</strongs>  Not Used
+3284</strongs>  Not Used
+3285</strongs>  Not Used
+3286</strongs>  Not Used
+3287</strongs>  Not Used
+3288</strongs>  Not Used
+3289</strongs>  Not Used
+3290</strongs>  Not Used
+3291</strongs>  Not Used
+3292</strongs>  Not Used
+3293</strongs>  Not Used
+3294</strongs>  Not Used
+3295</strongs>  Not Used
+3296</strongs>  Not Used
+3297</strongs>  Not Used
+3298</strongs>  Not Used
+3299</strongs>  Not Used
+3300</strongs>  Not Used
+3301</strongs>  Not Used
+3302</strongs>  Not Used
+3303=μέν
+3304=μενοῦνγε
+3305=μέντοι
+3306=μένω
+3307=μερίζω
+3308=μέριμνα
+3309=μεριμνάω
+3310=μερίς
+3311=μερισμός
+3312=μεριστής
+3313=μέρος
+3314=μεσημβρία
+3315=μεσιτεύω
+3316=μεσίτης
+3317=μεσονύκτιον
+3318=Μεσοποταμία
+3319=μέσος
+3320=μεσότοιχον
+3321=μεσουράνημα
+3322=μεσόω
+3323=Μεσσίας
+3324=μεστός
+3325=μεστόω
+3326=μετά
+3327=μεταβαίνω
+3328=μεταβάλλω
+3329=μετάγω
+3330=μεταδίδωμι
+3331=μετάθεσις
+3332=μεταίρω
+3333=μετακαλέω
+3334=μετακινέω
+3335=μεταλαμβάνω
+3336=μετάλημψις
+3337=μεταλλάσσω
+3338=μεταμέλλομαι
+3339=μεταμορφόω
+3340=μετανοέω
+3341=μετάνοια
+3342=μεταξύ
+3343=μεταπέμπω
+3344=μεταστρέφω
+3345=μετασχηματίζω
+3346=μετατίθημι
+3347=μετέπειτα
+3348=μετέχω
+3349=μετεωρίζω
+3350=μετοικεσία
+3351=μετοικίζω
+3352=μετοχή
+3353=μέτοχος
+3354=μετρέω
+3355=μετρητής
+3356=μετριοπαθέω
+3357=μετρίως
+3358=μέτρον
+3359=μέτωπον
+3360=μέχρι
+3361=μή
+3362=ἐὰν μή
+3363=ἵνα μή
+3364=οὐ μή
+3365=μηδαμῶς
+3366=μηδέ
+3367=μηδείς
+3368=μηδέποτε
+3369=μηδέπω
+3370=Μῆδος
+3371=μηκέτι
+3372=μῆκος
+3373=μηκύνω
+3374=μηλωτή
+3375=μήν
+3376=μήν
+3377=μηνύω
+3378=μὴ οὐκ
+3379=μήποτε
+3380=μήπω
+3381=μήπως
+3382=μηρός
+3383=μήτε
+3384=μήτηρ
+3385=μήτι
+3386=μήτιγε
+3387=μήτις
+3388=μήτρα
+3389=μητραλῴας
+3390=μητρόπολις
+3391=μία
+3392=μιαίνω
+3393=μίασμα
+3394=μιασμός
+3395=μίγμα
+3396=μίγνυμι
+3397=μικρόν
+3398=μικρός
+3399=Μίλητος
+3400=μίλιον
+3401=μιμέομαι
+3402=μιμητής
+3403=μιμνήσκω
+3404=μισέω
+3405=μισθαποδοσία
+3406=μισθαποδότης
+3407=μίσθιος
+3408=μισθός
+3409=μισθόω
+3410=μίσθωμα
+3411=μισθωτός
+3412=Μιτυλήνη
+3413=Μιχαήλ
+3414=μνᾶ
+3415=μνάομαι
+3416=Μνάσων
+3417=μνεία
+3418=μνῆμα
+3419=μνημεῖον
+3420=μνήμη
+3421=μνημονεύω
+3422=μνημόσυνον
+3423=μνηστεύω
+3424=μογιλάλος
+3425=μόγις
+3426=μόδιος
+3427=μοί
+3428=μοιχαλίς
+3429=μοιχάω
+3430=μοιχεία
+3431=μοιχεύω
+3432=μοιχός
+3433=μόλις
+3434=Μολόχ
+3435=μολύνω
+3436=μολυσμός
+3437=μομφή
+3438=μονή
+3439=μονογενής
+3440=μόνον
+3441=μόνος
+3442=μονόφθαλμος
+3443=μονόω
+3444=μορφή
+3445=μορφόω
+3446=μόρφωσις
+3447=μοσχοποιέω
+3448=μόσχος
+3449=μόχθος
+3450=μοῦ
+3451=μουσικός
+3452=μυελός
+3453=μυέω
+3454=μῦθος
+3455=μυκάομαι
+3456=μυκτηρίζω
+3457=μυλικός
+3458=μύλος
+3459=μύλων
+3460=Μύρα
+3461=μυριάς
+3462=μυρίζω
+3463=μύριοι
+3464=μύρον
+3465=Μυσία
+3466=μυστήριον
+3467=μυωπάζω
+3468=μώλωψ
+3469=μωμάομαι
+3470=μῶμος
+3471=μωραίνω
+3472=μωρία
+3473=μωρολογία
+3474=μωρός
+3475=Μωσεύς
+3476=Ναασσών
+3477=Ναγγαί
+3478=Ναζαρέθ
+3479=Ναζαρηνός
+3480=Ναζωραῖος
+3481=Ναθάν
+3482=Ναθαναήλ
+3483=ναί
+3484=Ναΐν
+3485=ναός
+3486=Ναούμ
+3487=νάρδος
+3488=Νάρκισσος
+3489=ναυαγέω
+3490=ναύκληρος
+3491=ναῦς
+3492=ναύτης
+3493=Ναχώρ
+3494=νεανίας
+3495=νεανίσκος
+3496=Νεάπολις
+3497=Νεεμάν
+3498=νεκρός
+3499=νεκρόω
+3500=νέκρωσις
+3501=νέος
+3502=νεοσσός
+3503=νεότης
+3504=νεόφυτος
+3505=Νέρων
+3506=νεύω
+3507=νεφέλη
+3508=Νεφθαλείμ
+3509=νέφος
+3510=νεφρός
+3511=νεωκόρος
+3512=νεωτερικός
+3513=νή
+3514=νήθω
+3515=νηπιάζω
+3516=νήπιος
+3517=Νηρεύς
+3518=Νηρί
+3519=νησίον
+3520=νῆσος
+3521=νηστεία
+3522=νηστεύω
+3523=νῆστις
+3524=νηφάλεος
+3525=νήφω
+3526=Νίγερ
+3527=Νικάνωρ
+3528=νικάω
+3529=νίκη
+3530=Νικόδημος
+3531=Νικολαΐτης
+3532=Νικόλαος
+3533=Νικόπολις
+3534=νῖκος
+3535=Νινευΐ
+3536=Νινευΐτης
+3537=νιπτήρ
+3538=νίπτω
+3539=νοιέω
+3540=νόημα
+3541=νόθος
+3542=νομή
+3543=νομίζω
+3544=νομικός
+3545=νομίμως
+3546=νόμισμα
+3547=νομοδιδάσκαλος
+3548=νομοθεσία
+3549=νομοθετέω
+3550=νομοθέτης
+3551=νόμος
+3552=νοσέω
+3553=νόσημα
+3554=νόσος
+3555=νοσσιά
+3556=νοσσίον
+3557=νοσφίζομαι
+3558=νότος
+3559=νουθεσία
+3560=νουθετέω
+3561=νουμηνία
+3562=νουνεχῶς
+3563=νοῦς
+3564=Νυμφᾶς
+3565=νύμφη
+3566=νυμφίος
+3567=νυμφών
+3568=νῦν
+3569=τανῦν
+3570=νυνί
+3571=νύξ
+3572=νύσσω
+3573=νυστάζω
+3574=νυχθήμερον
+3575=Νῶε
+3576=νωθρός
+3577=νῶτος
+3578=ξενία
+3579=ξενίζω
+3580=ξενοδοχέω
+3581=ξένος
+3582=ξέστης
+3583=ξηραίνω
+3584=ξηρός
+3585=ξύλινος
+3586=ξύλον
+3587=ξυράω
+3588=ὁ
+3589=ὀγδοήκοντα
+3590=ὄγδοος
+3591=ὄγκος
+3592=ὅδε
+3593=ὁδεύω
+3594=ὁδηγέω
+3595=ὁδηγός
+3596=ὁδοιπορέω
+3597=ὁδοιπορία
+3598=ὁδός
+3599=ὀδούς
+3600=ὀδυνάω
+3601=ὀδύνη
+3602=ὀδυρμός
+3603=ὅ ἐστι
+3604=Ὀζίας
+3605=ὄζω
+3606=ὅθεν
+3607=ὀθόνη
+3608=ὀθόνιον
+3609=οἰκεῖος
+3610=οἰκέτης
+3611=οἰκέω
+3612=οἴκημα
+3613=οἰκητήριον
+3614=οἰκία
+3615=οἰκιακός
+3616=οἰκοδεσποτέω
+3617=οἰκοδεσπότης
+3618=οἰκοδομέω
+3619=οἰκοδομή
+3620=οἰκοδομία
+3621=οἰκονομέω
+3622=οἰκονομία
+3623=οἰκονόμος
+3624=οἶκος
+3625=οἰκουμένη
+3626=οἰκουρός
+3627=οἰκτείρω
+3628=οἰκτιρμός
+3629=οἰκτίρμων
+3630=οἰνοπότης
+3631=οἶνος
+3632=οἰνοφλυγία
+3633=οἴομαι
+3634=οἷος
+3635=ὀκνέω
+3636=ὀκνηρός
+3637=ὀκταήμερος
+3638=ὀκτώ
+3639=ὄλεθρος
+3640=ὀλιγόπιστος
+3641=ὀλίγος
+3642=ὀλιγόψυχος
+3643=ὀλιγωρέω
+3644=ὀλοθρευτής
+3645=ὀλοθρεύω
+3646=ὁλοκαύτωμα
+3647=ὁλοκληρία
+3648=ὁλόκληρος
+3649=ὀλολύζω
+3650=ὅλος
+3651=ὁλοτελής
+3652=Ὀλυμπᾶς
+3653=ὄλυνθος
+3654=ὅλως
+3655=ὄμβρος
+3656=ὁμιλέω
+3657=ὁμιλία
+3658=ὅμιλος
+3659=ὄμμα
+3660=ὀμνύω
+3661=ὁμοθυμαδόν
+3662=ὁμοιάζω
+3663=ὁμοιοπαθής
+3664=ὅμοιος
+3665=ὁμοιότης
+3666=ὁμοιόω
+3667=ὁμοίωμα
+3668=ὁμοίως
+3669=ὁμοίωσις
+3670=ὁμολογέω
+3671=ὁμολογία
+3672=ὁμολογουμένως
+3673=ὁμότεχνος
+3674=ὁμοῦ
+3675=ὁμόφρων
+3676=ὅμως
+3677=ὄναρ
+3678=ὀνάριον
+3679=ὀνειδίζω
+3680=ὀνειδισμός
+3681=ὄνειδος
+3682=Ὀνήσιμος
+3683=Ὀνησίφορος
+3684=ὀνικός
+3685=ὀνίνημι
+3686=ὄνομα
+3687=ὀνομάζω
+3688=ὄνος
+3689=ὄντως
+3690=ὄξος
+3691=ὀξύς
+3692=ὀπή
+3693=ὄπισθεν
+3694=ὀπίσω
+3695=ὁπλίζω
+3696=ὅπλον
+3697=ὁποῖος
+3698=ὁπότε
+3699=ὅπου
+3700=ὀπτάνομαι
+3701=ὀπτασία
+3702=ὀπτός
+3703=ὀπώρα
+3704=ὅπως
+3705=ὅραμα
+3706=ὅρασις
+3707=ὁρατός
+3708=ὁράω
+3709=ὀργή
+3710=ὀργίζω
+3711=ὀργίλος
+3712=ὀργυιά
+3713=ὀρέγομαι
+3714=ὀρεινός
+3715=ὄρεξις
+3716=ὀρθοποδέω
+3717=ὀρθός
+3718=ὀρθοτομέω
+3719=ὀρθρίζω
+3720=ὀρθρινός
+3721=ὄρθριος
+3722=ὄρθρος
+3723=ὀρθῶς
+3724=ὁρίζω
+3725=ὅριον
+3726=ὁρκίζω
+3727=ὅρκος
+3728=ὁρκωμοσία
+3729=ὁρμάω
+3730=ὁρμή
+3731=ὅρμημα
+3732=ὄρνεον
+3733=ὄρνις
+3734=ὁροθεσία
+3735=ὄρος
+3736=ὀρύσσω
+3737=ὀρφανός
+3738=ὀρχέομαι
+3739=ὅς
+3740=ὁσάκις
+3741=ὅσιος
+3742=ὁσιότης
+3743=ὁσίως
+3744=ὀσμή
+3745=ὅσος
+3746=ὅσπερ
+3747=ὀστέον
+3748=ὅστις
+3749=ὀστράκινος
+3750=ὄσφρησις
+3751=ὀσφῦς
+3752=ὅταν
+3753=ὅτε
+3754=ὅτι
+3755=ὅτου
+3756=οὐ
+3757=οὗ
+3758=οὐά
+3759=οὐαί
+3760=οὐδαμῶς
+3761=οὐδέ
+3762=οὐδείς
+3763=οὐδέποτε
+3764=οὐδέπω
+3765=οὐκέτι
+3766=οὐκοῦν
+3767=οὖν
+3768=οὔπω
+3769=οὐρά
+3770=οὐράνιος
+3771=οὐρανόθεν
+3772=οὐρανός
+3773=Οὐρβανός
+3774=Οὐρίας
+3775=οὖς
+3776=οὐσία
+3777=οὔτε
+3778=οὗτος
+3779=οὕτω
+3780=οὐχί
+3781=ὀφειλέτης
+3782=ὀφειλή
+3783=ὀφείλημα
+3784=ὀφείλω
+3785=ὄφελον
+3786=ὄφελος
+3787=ὀφθαλμοδουλεία
+3788=ὀφθαλμός
+3789=ὄφις
+3790=ὀφρῦς
+3791=ὀχλέω
+3792=ὀχλοποιέω
+3793=ὄχλος
+3794=ὀχύρωμα
+3795=ὀψάριον
+3796=ὀψέ
+3797=ὄψιμος
+3798=ὄψιος
+3799=ὄψις
+3800=ὀψώνιον
+3801=ὁ ὢν καί ὁ ἦν καί ὁ ἐρχόμενος
+3802=παγιδεύω
+3803=παγίς
+3804=πάθημα
+3805=παθητός
+3806=πάθος
+3807=παιδαγωγός
+3808=παιδάριον
+3809=παιδεία
+3810=παιδευτής
+3811=παιδεύω
+3812=παιδιόθεν
+3813=παιδίον
+3814=παιδίσκη
+3815=παίζω
+3816=παῖς
+3817=παίω
+3818=Πακατιανή
+3819=πάλαι
+3820=παλαιός
+3821=παλαιότης
+3822=παλαιόω
+3823=πάλη
+3824=παλιγγενεσία
+3825=πάλιν
+3826=παμπληθεί
+3827=πάμπολυς
+3828=Παμφυλία
+3829=πανδοχεῖον
+3830=πανδοχεύς
+3831=πανήγυρις
+3832=πανοικί
+3833=πανοπλία
+3834=πανουργία
+3835=πανοῦργος
+3836=πανταχόθεν
+3837=πανταχοῦ
+3838=παντελής
+3839=πάντη
+3840=πάντοθεν
+3841=παντοκράτωρ
+3842=πάντοτε
+3843=πάντως
+3844=παρά
+3845=παραβαίνω
+3846=παραβάλλω
+3847=παράβασις
+3848=παραβάτης
+3849=παραβιάζομαι
+3850=παραβολή
+3851=παραβουλεύομαι
+3852=παραγγελία
+3853=παραγγέλλω
+3854=παραγίνομαι
+3855=παράγω
+3856=παραδειγματίζω
+3857=παράδεισος
+3858=παραδέχομαι
+3859=παραδιατριβή
+3860=παραδίδωμι
+3861=παράδοξος
+3862=παράδοσις
+3863=παραζηλόω
+3864=παραθαλάσσιος
+3865=παραθεωρέω
+3866=παραθήκη
+3867=παραινέω
+3868=παραιτέομαι
+3869=παρακαθίζω
+3870=παρακαλέω
+3871=παρακαλύπτω
+3872=παρακαταθήκη
+3873=παράκειμαι
+3874=παράκλησις
+3875=παράκλητος
+3876=παρακοή
+3877=παρακολουθέω
+3878=παρακούω
+3879=παρακύπτω
+3880=παραλαμβάνω
+3881=παραλέγομαι
+3882=παράλιος
+3883=παραλλαγή
+3884=παραλογίζομαι
+3885=παραλυτικός
+3886=παραλύω
+3887=παραμένω
+3888=παραμυθέομαι
+3889=παραμυθία
+3890=παραμύθιον
+3891=παρανομέω
+3892=παρανομία
+3893=παραπικραίνω
+3894=παραπικρασμός
+3895=παραπίπτω
+3896=παραπλέω
+3897=παραπλήσιον
+3898=παραπλησίως
+3899=παραπορεύομαι
+3900=παράπτωμα
+3901=παραῤῥυέω
+3902=παράσημος
+3903=παρασκευάζω
+3904=παρασκευή
+3905=παρατείνω
+3906=παρατηρέω
+3907=παρατήρησις
+3908=παρατίθημι
+3909=παρατυγχάνω
+3910=παραυτίκα
+3911=παραφέρω
+3912=παραφρονέω
+3913=παραφρονία
+3914=παραχειμάζω
+3915=παραχειμασία
+3916=παραχρῆμα
+3917=πάρδαλις
+3918=πάρειμι
+3919=παρεισάγω
+3920=παρείσακτος
+3921=παρεισδύνω
+3922=παρεισέρχομαι
+3923=παρεισφέρω
+3924=παρεκτός
+3925=παρεμβολή
+3926=παρενοχλέω
+3927=παρεπίδημος
+3928=παρέρχομαι
+3929=πάρεσις
+3930=παρέχω
+3931=παρηγορία
+3932=παρθενία
+3933=παρθένος
+3934=Πάρθος
+3935=παρίημι
+3936=παρίστημι
+3937=Παρμενᾶς
+3938=πάροδος
+3939=παροικέω
+3940=παροικία
+3941=πάροικος
+3942=παροιμία
+3943=πάροινος
+3944=παροίχομαι
+3945=παρομοιάζω
+3946=παρόμοιος
+3947=παροξύνω
+3948=παροξυσμός
+3949=παροργίζω
+3950=παροργισμός
+3951=παροτρύνω
+3952=παρουσία
+3953=παροψίς
+3954=παῤῥησία
+3955=παῤῥησιάζομαι
+3956=πᾶς
+3957=πάσχα
+3958=πάσχω
+3959=Πάταρα
+3960=πατάσσω
+3961=πατέω
+3962=πατήρ
+3963=Πάτμος
+3964=πατραλῴας
+3965=πατριά
+3966=πατριάρχης
+3967=πατρικός
+3968=πατρίς
+3969=Πατροβᾶς
+3970=πατροπαράδοτος
+3971=πατρῷος
+3972=Παῦλος
+3973=παύω
+3974=Πάφος
+3975=παχύνω
+3976=πέδη
+3977=πεδινός
+3978=πεζεύω
+3979=πεζῇ
+3980=πειθαρχέω
+3981=πειθός
+3982=πείθω
+3983=πεινάω
+3984=πεῖρα
+3985=πειράζω
+3986=πειρασμός
+3987=πειράω
+3988=πεισμονή
+3989=πέλαγος
+3990=πελεκίζω
+3991=πέμπτος
+3992=πέμπω
+3993=πένης
+3994=πενθερά
+3995=πενθερός
+3996=πενθέω
+3997=πένθος
+3998=πενιχρός
+3999=πεντάκις
+4000=πεντακισχίλιοι
+4001=πεντακόσιοι
+4002=πέντε
+4003=πεντεκαιδέκατος
+4004=πεντήκοντα
+4005=πεντηκοστή
+4006=πεποίθησις
+4007=περ
+4008=πέραν
+4009=πέρας
+4010=Πέργαμος
+4011=Πέργη
+4012=περί
+4013=περιάγω
+4014=περιαιρέω
+4015=περιαστράπτω
+4016=περιβάλλω
+4017=περιβλέπω
+4018=περιβόλαιον
+4019=περιδέω
+4020=περιεργάζομαι
+4021=περίεργος
+4022=περιέρχομαι
+4023=περιέχω
+4024=περιζώννυμι
+4025=περίθεσις
+4026=περιΐστημι
+4027=περικάθαρμα
+4028=περικαλύπτω
+4029=περίκειμαι
+4030=περικεφαλαία
+4031=περικρατής
+4032=περικρύπτω
+4033=περικυκλόω
+4034=περιλάμπω
+4035=περιλείπω
+4036=περίλυπος
+4037=περιμένω
+4038=πέριξ
+4039=περιοικέω
+4040=περίοικος
+4041=περιούσιος
+4042=περιοχή
+4043=περιπατέω
+4044=περιπείρω
+4045=περιπίπτω
+4046=περιποιέομαι
+4047=περιποίησις
+4048=περιῤῥήγνυμι
+4049=περισπάω
+4050=περισσεία
+4051=περίσσευμα
+4052=περισσεύω
+4053=περισσός
+4054=περισσότερον
+4055=περισσότερος
+4056=περισσοτέρως
+4057=περισσῶς
+4058=περιστερά
+4059=περιτέμνω
+4060=περιτίθημι
+4061=περιτομή
+4062=περιτρέπω
+4063=περιτρέχω
+4064=περιφέρω
+4065=περιφρονέω
+4066=περίχωρος
+4067=περίψωμα
+4068=περπερεύομαι
+4069=Περσίς
+4070=πέρυσι
+4071=πετεινόν
+4072=πέτομαι
+4073=πέτρα
+4074=Πέτρος
+4075=πετρώδης
+4076=πήγανον
+4077=πηγή
+4078=πήγνυμι
+4079=πηδάλιον
+4080=πηλίκος
+4081=πηλός
+4082=πήρα
+4083=πῆχυς
+4084=πιάζω
+4085=πιέζω
+4086=πιθανολογία
+4087=πικραίνω
+4088=πικρία
+4089=πικρός
+4090=πικρῶς
+4091=Πιλᾶτος
+4092=πίμπρημι
+4093=πινακίδιον
+4094=πίναξ
+4095=πίνω
+4096=πιότης
+4097=πιπράσκω
+4098=πίπτω
+4099=Πισιδία
+4100=πιστεύω
+4101=πιστικός
+4102=πίστις
+4103=πιστός
+4104=πιστόω
+4105=πλανάω
+4106=πλάνη
+4107=πλανήτης
+4108=πλάνος
+4109=πλάξ
+4110=πλάσμα
+4111=πλάσσω
+4112=πλαστός
+4113=πλατεῖα
+4114=πλάτος
+4115=πλατύνω
+4116=πλατύς
+4117=πλέγμα
+4118=πλεῖστος
+4119=πλείων
+4120=πλέκω
+4121=πλεονάζω
+4122=πλεονεκτέω
+4123=πλεονέκτης
+4124=πλεονεξία
+4125=πλευρά
+4126=πλέω
+4127=πληγή
+4128=πλῆθος
+4129=πληθύνω
+4130=πλήθω
+4131=πλήκτης
+4132=πλήμμυρα
+4133=πλήν
+4134=πλήρης
+4135=πληροφορέω
+4136=πληροφορία
+4137=πληρόω
+4138=πλήρωμα
+4139=πλησίον
+4140=πλησμονή
+4141=πλήσσω
+4142=πλοιάριον
+4143=πλοῖον
+4144=πλόος
+4145=πλούσιος
+4146=πλουσίως
+4147=πλουτέω
+4148=πλουτίζω
+4149=πλοῦτος
+4150=πλύνω
+4151=πνεῦμα
+4152=πνευματικός
+4153=πνευματικῶς
+4154=πνέω
+4155=πνίγω
+4156=πνικτός
+4157=πνοή
+4158=ποδήρης
+4159=πόθεν
+4160=ποιέω
+4161=ποίημα
+4162=ποίησις
+4163=ποιητής
+4164=ποικίλος
+4165=ποιμαίνω
+4166=ποιμήν
+4167=ποίμνη
+4168=ποίμνιον
+4169=ποῖος
+4170=πολεμέω
+4171=πόλεμος
+4172=πόλις
+4173=πολιτάρχης
+4174=πολιτεία
+4175=πολίτευμα
+4176=πολιτεύομαι
+4177=πολίτης
+4178=πολλάκις
+4179=πολλαπλασίων
+4180=πολυλογία
+4181=πολυμερῶς
+4182=πολυποίκιλος
+4183=πολύς
+4184=πολύσπλαγχνος
+4185=πολυτελής
+4186=πολύτιμος
+4187=πολυτρόπως
+4188=πόμα
+4189=πονηρία
+4190=πονηρός
+4191=πονηρότερος
+4192=πόνος
+4193=Ποντικός
+4194=Πόντιος
+4195=Πόντος
+4196=Πόπλιος
+4197=πορεία
+4198=πορεύομαι
+4199=πορθέω
+4200=πορισμός
+4201=Πόρκιος
+4202=πορνεία
+4203=πορνεύω
+4204=πόρνη
+4205=πόρνος
+4206=πόῤῥω
+4207=πόῤῥωθεν
+4208=πόῤῥωτέρω
+4209=πορφύρα
+4210=πορφυροῦς
+4211=πορφυρόπωλις
+4212=ποσάκις
+4213=πόσις
+4214=πόσος
+4215=ποταμός
+4216=ποταμοφόρητος
+4217=ποταπός
+4218=ποτέ
+4219=πότε
+4220=πότερον
+4221=ποτήριον
+4222=ποτίζω
+4223=Ποτίολοι
+4224=πότος
+4225=πού
+4226=ποῦ
+4227=Πούδης
+4228=πούς
+4229=πρᾶγμα
+4230=πραγματεία
+4231=πραγματεύομαι
+4232=πραιτώριον
+4233=πράκτωρ
+4234=πρᾶξις
+4235=πρᾷος
+4236=πρᾳότης
+4237=πρασιά
+4238=πράσσω
+4239=πραΰς
+4240=πραΰτης
+4241=πρέπω
+4242=πρεσβεία
+4243=πρεσβεύω
+4244=πρεσβυτέριον
+4245=πρεσβύτερος
+4246=πρεσβύτης
+4247=πρεσβῦτις
+4248=πρηνής
+4249=πρίζω
+4250=πρίν
+4251=Πρίσκα
+4252=Πρίσκιλλα
+4253=πρό
+4254=προάγω
+4255=προαιρέομαι
+4256=προαιτιάομαι
+4257=προακούω
+4258=προαμαρτάνω
+4259=προαύλιον
+4260=προβαίνω
+4261=προβάλλω
+4262=προβατικός
+4263=πρόβατον
+4264=προβιβάζω
+4265=προβλέπω
+4266=προγίνομαι
+4267=προγινώσκω
+4268=πρόγνωσις
+4269=πρόγονος
+4270=προγράφω
+4271=πρόδηλος
+4272=προδίδωμι
+4273=προδότης
+4274=πρόδρομος
+4275=προείδω
+4276=προελπίζω
+4277=προέπω
+4278=προενάρχομαι
+4279=προεπαγγέλλομαι
+4280=προερέω
+4281=προέρχομαι
+4282=προετοιμάζω
+4283=προευαγγελίζομαι
+4284=προέχομαι
+4285=προηγέομαι
+4286=πρόθεσις
+4287=προθέσμιος
+4288=προθυμία
+4289=πρόθυμος
+4290=προθύμως
+4291=προΐστημι
+4292=προκαλέομαι
+4293=προκαταγγέλλω
+4294=προκαταρτίζω
+4295=πρόκειμαι
+4296=προκηρύσσω
+4297=προκοπή
+4298=προκόπτω
+4299=πρόκριμα
+4300=προκυρόω
+4301=προλαμβάνω
+4302=προλέγω
+4303=προμαρτύρομαι
+4304=προμελετάω
+4305=προμεριμνάω
+4306=προνοέω
+4307=πρόνοια
+4308=προοράω
+4309=προορίζω
+4310=προπάσχω
+4311=προπέμπω
+4312=προπετής
+4313=προπορεύομαι
+4314=πρός
+4315=προσάββατον
+4316=προσαγορεύω
+4317=προσάγω
+4318=προσαγωγή
+4319=προσαιτέω
+4320=προσαναβαίνω
+4321=προσαναλίσκω
+4322=προσαναπληρόω
+4323=προσανατίθημι
+4324=προσαπειλέω
+4325=προσδαπανάω
+4326=προσδέομαι
+4327=προσδέχομαι
+4328=προσδοκάω
+4329=προσδοκία
+4330=προσεάω
+4331=προσεγγίζω
+4332=προσεδρεύω
+4333=προσεργάζομαι
+4334=προσέρχομαι
+4335=προσευχή
+4336=προσεύχομαι
+4337=προσέχω
+4338=προσηλόω
+4339=προσήλυτος
+4340=πρόσκαιρος
+4341=προσκαλέομαι
+4342=προσκαρτερέω
+4343=προσκαρτέρησις
+4344=προσκεφάλαιον
+4345=προσκληρόω
+4346=πρόσκλισις
+4347=προσκολλάω
+4348=πρόσκομμα
+4349=προσκοπή
+4350=προσκόπτω
+4351=προσκυλίω
+4352=προσκυνέω
+4353=προσκυνητής
+4354=προσλαλέω
+4355=προσλαμβάνω
+4356=πρόσληψις
+4357=προσμένω
+4358=προσορμίζω
+4359=προσοφείλω
+4360=προσοχθίζω
+4361=πρόσπεινος
+4362=προσπήγνυμι
+4363=προσπίπτω
+4364=προσποιέομαι
+4365=προσπορεύομαι
+4366=προσρήγνυμι
+4367=προστάσσω
+4368=προστάτις
+4369=προστίθημι
+4370=προστρέχω
+4371=προσφάγιον
+4372=πρόσφατος
+4373=προσφάτως
+4374=προσφέρω
+4375=προσφιλής
+4376=προσφορά
+4377=προσφωνέω
+4378=πρόσχυσις
+4379=προσψαύω
+4380=προσωποληπτέω
+4381=προσωπολήπτης
+4382=προσωποληψία
+4383=πρόσωπον
+4384=προτάσσω
+4385=προτείνω
+4386=πρότερον
+4387=πρότερος
+4388=προτίθεμαι
+4389=προτρέπομαι
+4390=προτρέχω
+4391=προϋπάρχω
+4392=πρόφασις
+4393=προφέρω
+4394=προφητεία
+4395=προφητεύω
+4396=προφήτης
+4397=προφητικός
+4398=προφῆτις
+4399=προφθάνω
+4400=προχειρίζομαι
+4401=προχειροτονέω
+4402=Πρόχορος
+4403=πρύμνα
+4404=πρωΐ
+4405=πρωΐα
+4406=πρώϊμος
+4407=πρωϊνός
+4408=πρῶρα
+4409=πρωτεύω
+4410=πρωτοκαθεδρία
+4411=πρωτοκλισία
+4412=πρῶτον
+4413=πρῶτος
+4414=πρωτοστάτης
+4415=πρωτοτόκια
+4416=πρωτότοκος
+4417=πταίω
+4418=πτέρνα
+4419=πτερύγιον
+4420=πτέρυξ
+4421=πτηνόν
+4422=πτοέω
+4423=πτόησις
+4424=Πτολεμαΐς
+4425=πτύον
+4426=πτύρω
+4427=πτύσμα
+4428=πτύσσω
+4429=πτύω
+4430=πτῶμα
+4431=πτῶσις
+4432=πτωχεία
+4433=πτωχεύω
+4434=πτωχός
+4435=πυγμή
+4436=Πύθων
+4437=πυκνός
+4438=πυκτέω
+4439=πύλη
+4440=πυλών
+4441=πυνθάνομαι
+4442=πῦρ
+4443=πυρά
+4444=πύργος
+4445=πυρέσσω
+4446=πυρετός
+4447=πύρινος
+4448=πυρόω
+4449=πυῤῥάζω
+4450=πυῤῥός
+4451=πύρωσις
+4452=-πω
+4453=πωλέω
+4454=πῶλος
+4455=πώποτε
+4456=πωρόω
+4457=πώρωσις
+4458=-πώς
+4459=πῶς
+4460=Ῥαάβ
+4461=ῥαββί
+4462=ῥαββονί
+4463=ῥαβδίζω
+4464=ῥάβδος
+4465=ῥαβδοῦχος
+4466=Ῥαγαῦ
+4467=ῥᾳδιούργημα
+4468=ῥᾳδιουργία
+4469=ῥακά
+4470=ῥάκος
+4471=Ῥαμᾶ
+4472=ῥαντίζω
+4473=ῥαντισμός
+4474=ῥαπίζω
+4475=ῥάπισμα
+4476=ῥαφίς
+4477=Ῥαχάβ
+4478=Ῥαχήλ
+4479=Ῥεβέκκα
+4480=ῥέδα
+4481=Ῥεμφάν
+4482=ῥέω
+4483=ῥέω
+4484=Ῥήγιον
+4485=ῥῆγμα
+4486=ῥήγνυμι
+4487=ῥῆμα
+4488=Ῥησά
+4489=ῥήτωρ
+4490=ῥητῶς
+4491=ῥίζα
+4492=ῥιζόω
+4493=ῥιπή
+4494=ῥιπίζω
+4495=ῥιπτέω
+4496=ῥίπτω
+4497=Ῥοβοάμ
+4498=Ῥόδη
+4499=Ῥόδος
+4500=ῥοιζηδόν
+4501=ῥομφαία
+4502=Ῥουβήν
+4503=Ῥούθ
+4504=Ῥοῦφος
+4505=ῥύμη
+4506=ῥύομαι
+4507=ῥυπαρία
+4508=ῥυπαρός
+4509=ῥύπος
+4510=ῥυπόω
+4511=ῥύσις
+4512=ῥυτίς
+4513=Ῥωμαϊκός
+4514=Ῥωμαῖος
+4515=Ῥωμαϊστί
+4516=Ῥώμη
+4517=ῥώννυμι
+4518=σαβαχθάνι
+4519=σαβαώθ
+4520=σαββατισμός
+4521=σάββατον
+4522=σαγήνη
+4523=Σαδδουκαῖος
+4524=Σαδώκ
+4525=σαίνω
+4526=σάκκος
+4527=Σαλά
+4528=Σαλαθιήλ
+4529=Σαλαμίς
+4530=Σαλείμ
+4531=σαλεύω
+4532=Σαλήμ
+4533=Σαλμών
+4534=Σαλμώνη
+4535=σάλος
+4536=σάλπιγξ
+4537=σαλπίζω
+4538=σαλπιστής
+4539=Σαλώμη
+4540=Σαμάρεια
+4541=Σαμαρείτης
+4542=Σαμαρεῖτις
+4543=Σαμοθρᾴκη
+4544=Σάμος
+4545=Σαμουήλ
+4546=Σαμψών
+4547=σανδάλιον
+4548=σανίς
+4549=Σαούλ
+4550=σαπρός
+4551=Σαπφείρη
+4552=σάπφειρος
+4553=σαργάνη
+4554=Σάρδεις
+4555=σάρδινος
+4556=σάρδιος
+4557=σαρδόνυξ
+4558=Σάρεπτα
+4559=σαρκικός
+4560=σάρκινος
+4561=σάρξ
+4562=Σαρούχ
+4563=σαρόω
+4564=Σάῤῥα
+4565=Σαρών
+4566=Σατᾶν
+4567=Σατανᾶς
+4568=σάτον
+4569=Σαῦλος
+4570=σβέννυμι
+4571=σέ
+4572=σεαυτοῦ
+4573=σεβάζομαι
+4574=σέβασμα
+4575=σεβαστός
+4576=σέβομαι
+4577=σειρά
+4578=σεισμός
+4579=σείω
+4580=Σεκοῦνδος
+4581=Σελεύκεια
+4582=σελήνη
+4583=σεληνιάζομαι
+4584=Σεμεΐ
+4585=σεμίδαλις
+4586=σεμνός
+4587=σεμνότης
+4588=Σέργιος
+4589=Σήθ
+4590=Σήμ
+4591=σημαίνω
+4592=σημεῖον
+4593=σημειόω
+4594=σήμερον
+4595=σήπω
+4596=σηρικός
+4597=σής
+4598=σητόβρωτος
+4599=σθενόω
+4600=σιαγών
+4601=σιγάω
+4602=σιγή
+4603=σιδήρεος
+4604=σίδηρος
+4605=Σιδών
+4606=Σιδώνιος
+4607=σικάριος
+4608=σίκερα
+4609=Σιλᾶς
+4610=Σιλουανός
+4611=Σιλωάμ
+4612=σιμικίνθιον
+4613=Σίμων
+4614=Σινᾶ
+4615=σίναπι
+4616=σινδών
+4617=σινιάζω
+4618=σιτευτός
+4619=σιτιστός
+4620=σιτόμετρον
+4621=σῖτος
+4622=Σιών
+4623=σιωπάω
+4624=σκανδαλίζω
+4625=σκάνδαλον
+4626=σκάπτω
+4627=σκάφη
+4628=σκέλος
+4629=σκέπασμα
+4630=Σκευᾶς
+4631=σκευή
+4632=σκεῦος
+4633=σκηνή
+4634=σκηνοπηγία
+4635=σκηνοποιός
+4636=σκῆνος
+4637=σκηνόω
+4638=σκήνωμα
+4639=σκιά
+4640=σκιρτάω
+4641=σκληροκαρδία
+4642=σκληρός
+4643=σκληρότης
+4644=σκληροτράχηλος
+4645=σκληρύνω
+4646=σκολιός
+4647=σκόλοψ
+4648=σκοπέω
+4649=σκοπός
+4650=σκορπίζω
+4651=σκορπίος
+4652=σκοτεινός
+4653=σκοτία
+4654=σκοτίζω
+4655=σκότος
+4656=σκοτόω
+4657=σκύβαλον
+4658=Σκύθης
+4659=σκυθρωπός
+4660=σκύλλω
+4661=σκῦλον
+4662=σκωληκόβρωτος
+4663=σκώληξ
+4664=σμαράγδινος
+4665=σμάραγδος
+4666=σμύρνα
+4667=Σμύρνα
+4668=Σμυρναῖος
+4669=σμυρνίζω
+4670=Σόδομα
+4671=σοί
+4672=Σολομών
+4673=σορός
+4674=σός
+4675=σοῦ
+4676=σουδάριον
+4677=Σουσάννα
+4678=σοφία
+4679=σοφίζω
+4680=σοφός
+4681=Σπανία
+4682=σπαράσσω
+4683=σπαργανόω
+4684=σπαταλάω
+4685=σπάω
+4686=σπεῖρα
+4687=σπείρω
+4688=σπεκουλάτωρ
+4689=σπένδω
+4690=σπέρμα
+4691=σπερμολόγος
+4692=σπεύδω
+4693=σπήλαιον
+4694=σπιλάς
+4695=σπιλόω
+4696=σπίλος
+4697=σπλαγχνίζομαι
+4698=σπλάγχνον
+4699=σπόγγος
+4700=σποδός
+4701=σπορά
+4702=σπόριμος
+4703=σπόρος
+4704=σπουδάζω
+4705=σπουδαῖος
+4706=σπουδαιότερον
+4707=σπουδαιότερος
+4708=σπουδαιοτέρως
+4709=σπουδαίως
+4710=σπουδή
+4711=σπυρίς
+4712=στάδιον
+4713=στάμνος
+4714=στάσις
+4715=στατήρ
+4716=σταυρός
+4717=σταυρόω
+4718=σταφυλή
+4719=στάχυς
+4720=Στάχυς
+4721=στέγη
+4722=στέγω
+4723=στείρος
+4724=στέλλω
+4725=στέμμα
+4726=στεναγμός
+4727=στενάζω
+4728=στενός
+4729=στενοχωρέω
+4730=στενοχωρία
+4731=στερεός
+4732=στερεόω
+4733=στερέωμα
+4734=Στεφανᾶς
+4735=στέφανος
+4736=Στέφανος
+4737=στεφανόω
+4738=στῆθος
+4739=στήκω
+4740=στηριγμός
+4741=στηρίζω
+4742=στίγμα
+4743=στιγμή
+4744=στίλβω
+4745=στοά
+4746=στοιβάς
+4747=στοιχεῖον
+4748=στοιχέω
+4749=στολή
+4750=στόμα
+4751=στόμαχος
+4752=στρατεία
+4753=στράτευμα
+4754=στρατεύομαι
+4755=στρατηγός
+4756=στρατιά
+4757=στρατιώτης
+4758=στρατολογέω
+4759=στρατοπεδάρχης
+4760=στρατόπεδον
+4761=στρεβλόω
+4762=στρέφω
+4763=στρηνιάω
+4764=στρῆνος
+4765=στρουθίον
+4766=στρώννυμι
+4767=στυγνητός
+4768=στυγνάζω
+4769=στῦλος
+4770=Στοϊκός
+4771=σύ
+4772=συγγένεια
+4773=συγγενής
+4774=συγγνώμη
+4775=συγκάθημαι
+4776=συγκαθίζω
+4777=συγκακοπαθέω
+4778=συγκακουχέω
+4779=συγκαλέω
+4780=συγκαλύπτω
+4781=συγκάμπτω
+4782=συγκαταβαίνω
+4783=συγκατάθεσις
+4784=συγκατατίθεμαι
+4785=συγκαταψηφίζω
+4786=συγκεράννυμι
+4787=συγκινέω
+4788=συγκλείω
+4789=συγκληρονόμος
+4790=συγκοινωνέω
+4791=συγκοινωνός
+4792=συγκομίζω
+4793=συγκρίνω
+4794=συγκύπτω
+4795=συγκυρία
+4796=συγχαίρω
+4797=συγχέω
+4798=συγχράομαι
+4799=σύγχυσις
+4800=συζάω
+4801=συζεύγνυμι
+4802=συζητέω
+4803=συζήτησις
+4804=συζητητής
+4805=σύζυγος
+4806=συζωοποιέω
+4807=συκάμινος
+4808=συκῆ
+4809=συκομωραία
+4810=σῦκον
+4811=συκοφαντέω
+4812=συλαγωγέω
+4813=συλάω
+4814=συλλαλέω
+4815=συλλαμβάνω
+4816=συλλέγω
+4817=συλλογίζομαι
+4818=συλλυπέω
+4819=συμβαίνω
+4820=συμβάλλω
+4821=συμβασιλεύω
+4822=συμβιβάζω
+4823=συμβουλεύω
+4824=συμβούλιον
+4825=σύμβουλος
+4826=Συμεών
+4827=συμμαθητής
+4828=συμμαρτυρέω
+4829=συμμερίζομαι
+4830=συμμέτοχος
+4831=συμμιμητής
+4832=σύμμορφος
+4833=συμμορφόω
+4834=συμπαθέω
+4835=συμπαθής
+4836=συμπαραγίνομαι
+4837=συμπαρακαλέω
+4838=συμπαραλαμβάνω
+4839=συμπαραμένω
+4840=συμπάρειμι
+4841=συμπάσχω
+4842=συμπέμπω
+4843=συμπεριλαμβάνω
+4844=συμπίνω
+4845=συμπληρόω
+4846=συμπνίγω
+4847=συμπολίτης
+4848=συμπορεύομαι
+4849=συμπόσιον
+4850=συμπρεσβύτερος
+4851=συμφέρω
+4852=σύμφημι
+4853=συμφυλέτης
+4854=σύμφυτος
+4855=συμφύω
+4856=συμφωνέω
+4857=συμφώνησις
+4858=συμφωνία
+4859=σύμφωνος
+4860=συμψηφίζω
+4861=σύμψυχος
+4862=σύν
+4863=συνάγω
+4864=συναγωγή
+4865=συναγωνίζομαι
+4866=συναθλέω
+4867=συναθροίζω
+4868=συναίρω
+4869=συναιχμάλωτος
+4870=συνακολουθέω
+4871=συναλίζω
+4872=συναναβαίνω
+4873=συνανάκειμαι
+4874=συναναμίγνυμι
+4875=συναναπαύομαι
+4876=συναντάω
+4877=συνάντησις
+4878=συναντιλαμβάνομαι
+4879=συναπάγω
+4880=συναποθνήσκω
+4881=συναπόλλυμι
+4882=συναποστέλλω
+4883=συναρμολογέω
+4884=συναρπάζω
+4885=συναυξάνω
+4886=σύνδεσμος
+4887=συνδέω
+4888=συνδοξάζω
+4889=σύνδουλος
+4890=συνδρομή
+4891=συνεγείρω
+4892=συνέδριον
+4893=συνείδησις
+4894=συνείδω
+4895=σύνειμι
+4896=σύνειμι
+4897=συνεισέρχομαι
+4898=συνέκδημος
+4899=συνεκλεκτός
+4900=συνελαύνω
+4901=συνεπιμαρτυρέω
+4902=συνέπομαι
+4903=συνεργέω
+4904=συνεργός
+4905=συνέρχομαι
+4906=συνεσθίω
+4907=σύνεσις
+4908=συνετός
+4909=συνευδοκέω
+4910=συνευωχέω
+4911=συνεφίστημι
+4912=συνέχω
+4913=συνήδομαι
+4914=συνήθεια
+4915=συνηλικιώτης
+4916=συνθάπτω
+4917=συνθλάω
+4918=συνθλίβω
+4919=συνθρύπτω
+4920=συνίημι
+4921=συνιστάω
+4922=συνοδεύω
+4923=συνοδία
+4924=συνοικέω
+4925=συνοικοδομέω
+4926=συνομιλέω
+4927=συνομορέω
+4928=συνοχή
+4929=συντάσσω
+4930=συντέλεια
+4931=συντελέω
+4932=συντέμνω
+4933=συντηρέω
+4934=συντίθεμαι
+4935=συντόμως
+4936=συντρέχω
+4937=συντρίβω
+4938=σύντριμμα
+4939=σύντροφος
+4940=συντυγχάνω
+4941=Συντύχη
+4942=συνυποκρίνομαι
+4943=συνυπουργέω
+4944=συνωδίνω
+4945=συνωμοσία
+4946=Συράκουσαι
+4947=Συρία
+4948=Σύρος
+4949=Συροφοινίσσα
+4950=σύρτις
+4951=σύρω
+4952=συσπαράσσω
+4953=σύσσημον
+4954=σύσσωμος
+4955=συστασιαστής
+4956=συστατικός
+4957=συσταυρόω
+4958=συστέλλω
+4959=συστενάζω
+4960=συστοιχέω
+4961=συστρατιώτης
+4962=συστρέφω
+4963=συστροφή
+4964=συσχηματίζω
+4965=Συχάρ
+4966=Συχέμ
+4967=σφαγή
+4968=σφάγιον
+4969=σφάζω
+4970=σφόδρα
+4971=σφοδρῶς
+4972=σφραγίζω
+4973=σφραγίς
+4974=σφυρόν
+4975=σχεδόν
+4976=σχῆμα
+4977=σχίζω
+4978=σχίσμα
+4979=σχοινίον
+4980=σχολάζω
+4981=σχολή
+4982=σώζω
+4983=σῶμα
+4984=σωματικός
+4985=σωματικῶς
+4986=Σώπατρος
+4987=σωρεύω
+4988=Σωσθένης
+4989=Σωσίπατρος
+4990=σωτήρ
+4991=σωτηρία
+4992=σωτήριον
+4993=σωφρονέω
+4994=σωφρονίζω
+4995=σωφρονισμός
+4996=σωφρόνως
+4997=σωφροσύνη
+4998=σώφρων
+4999=Ταβέρναι
+5000=Ταβιθά
+5001=τάγμα
+5002=τακτός
+5003=ταλαιπωρέω
+5004=ταλαιπωρία
+5005=ταλαίπωρος
+5006=ταλαντιαῖος
+5007=τάλαντον
+5008=ταλιθά
+5009=ταμεῖον
+5010=τάξις
+5011=ταπεινός
+5012=ταπεινοφροσύνη
+5013=ταπεινόω
+5014=ταπείνωσις
+5015=ταράσσω
+5016=ταραχή
+5017=τάραχος
+5018=Ταρσεύς
+5019=Ταρσός
+5020=ταρταρόω
+5021=τάσσω
+5022=ταῦρος
+5023=ταῦτα
+5024=ταὐτά
+5025=ταύταις
+5026=ταύτῃ
+5027=ταφή
+5028=τάφος
+5029=τάχα
+5030=ταχέως
+5031=ταχινός
+5032=τάχιον
+5033=τάχιστα
+5034=τάχος
+5035=ταχύ
+5036=ταχύς
+5037=τέ
+5038=τεῖχος
+5039=τεκμήριον
+5040=τεκνίον
+5041=τεκνογονέω
+5042=τεκνογονία
+5043=τέκνον
+5044=τεκνοτροφέω
+5045=τέκτων
+5046=τέλειος
+5047=τελειότης
+5048=τελειόω
+5049=τελείως
+5050=τελείωσις
+5051=τελειωτής
+5052=τελεσφορέω
+5053=τελευτάω
+5054=τελευτή
+5055=τελέω
+5056=τέλος
+5057=τελώνης
+5058=τελώνιον
+5059=τέρας
+5060=Τέρτιος
+5061=Τέρτυλλος
+5062=τεσσαράκοντα
+5063=τεσσαρακονταετής
+5064=τέσσαρες
+5065=τεσσαρεσκαιδέκατος
+5066=τεταρταῖος
+5067=τέταρτος
+5068=τετράγωνος
+5069=τετράδιον
+5070=τετρακισχίλιοι
+5071=τετρακόσιοι
+5072=τετράμηνον
+5073=τετραπλόος
+5074=τετράπους
+5075=τετραρχέω
+5076=τετράρχης
+5077=τεφρόω
+5078=τέχνη
+5079=τεχνίτης
+5080=τήκω
+5081=τηλαυγῶς
+5082=τηλικοῦτος
+5083=τηρέω
+5084=τήρησις
+5085=Τιβεριάς
+5086=Τιβέριος
+5087=τίθημι
+5088=τίκτω
+5089=τίλλω
+5090=Τιμαῖος
+5091=τιμάω
+5092=τιμή
+5093=τίμιος
+5094=τιμιότης
+5095=Τιμόθεος
+5096=Τίμων
+5097=τιμωρέω
+5098=τιμωρία
+5099=τίνω
+5100=τὶς
+5101=τίς
+5102=τίτλος
+5103=Τίτος
+5104=τοί
+5105=τοιγαροῦν
+5106=τοίνυν
+5107=τοιόσδε
+5108=τοιοῦτος
+5109=τοῖχος
+5110=τόκος
+5111=τολμάω
+5112=τολμηρότερον
+5113=τολμητής
+5114=τομώτερος
+5115=τόξον
+5116=τοπάζιον
+5117=τόπος
+5118=τοσοῦτος
+5119=τότε
+5120=τοῦ
+5121=τοὐναντίον
+5122=τοὔνομα
+5123=τουτέστι
+5124=τοῦτο
+5125=τούτοις
+5126=τοῦτον
+5127=τούτου
+5128=τούτους
+5129=τούτῳ
+5130=τούτων
+5131=τράγος
+5132=τράπεζα
+5133=τραπεζίτης
+5134=τραῦμα
+5135=τραυματίζω
+5136=τραχηλίζω
+5137=τράχηλος
+5138=τραχύς
+5139=Τραχωνῖτις
+5140=τρεῖς
+5141=τρέμω
+5142=τρέφω
+5143=τρέχω
+5144=τριάκοντα
+5145=τριακόσιοι
+5146=τρίβολος
+5147=τρίβος
+5148=τριετία
+5149=τρίζω
+5150=τρίμηνον
+5151=τρίς
+5152=τρίστεγον
+5153=τρισχίλιοι
+5154=τρίτος
+5155=τρίχινος
+5156=τρόμος
+5157=τροπή
+5158=τρόπος
+5159=τροποφορέω
+5160=τροφή
+5161=Τρόφιμος
+5162=τροφός
+5163=τροχιά
+5164=τροχός
+5165=τρύβλιον
+5166=τρυγάω
+5167=τρυγών
+5168=τρυμαλιά
+5169=τρύπημα
+5170=Τρύφαινα
+5171=τρυφάω
+5172=τρυφή
+5173=Τρυφῶσα
+5174=Τρωάς
+5175=Τρωγύλλιον
+5176=τρώγω
+5177=τυγχάνω
+5178=τυμπανίζω
+5179=τύπος
+5180=τύπτω
+5181=Τύραννος
+5182=τυρβάζω
+5183=Τύριος
+5184=Τύρος
+5185=τυφλός
+5186=τυφλόω
+5187=τυφόω
+5188=τύφω
+5189=τυφωνικός
+5190=Τυχικός
+5191=ὑακίνθινος
+5192=ὑάκινθος
+5193=ὑάλινος
+5194=ὕαλος
+5195=ὑβρίζω
+5196=ὕβρις
+5197=ὑβριστής
+5198=ὑγιαίνω
+5199=ὑγιής
+5200=ὑγρός
+5201=ὑδρία
+5202=ὑδροποτέω
+5203=ὑδρωπικός
+5204=ὕδωρ
+5205=ὑετός
+5206=υἱοθεσία
+5207=υἱός
+5208=ὕλη
+5209=ὕμᾶς
+5210=ὑμεῖς
+5211=Ὑμεναῖος
+5212=ὑμέτερος
+5213=ὑμῖν
+5214=ὑμνέω
+5215=ὕμνος
+5216=ὑμῶν
+5217=ὑπάγω
+5218=ὑπακοή
+5219=ὑπακούω
+5220=ὕπανδρος
+5221=ὑπαντάω
+5222=ὑπάντησις
+5223=ὕπαρξις
+5224=ὑπάρχοντα
+5225=ὑπάρχω
+5226=ὑπείκω
+5227=ὑπεναντίος
+5228=ὑπέρ
+5229=ὑπεραίρομαι
+5230=ὑπέρακμος
+5231=ὑπεράνω
+5232=ὑπεραυξάνω
+5233=ὑπερβαίνω
+5234=ὑπερβαλλόντως
+5235=ὑπερβάλλω
+5236=ὑπερβολή
+5237=ὑπερείδω
+5238=ὑπερέκεινα
+5239=ὑπερεκτείνω
+5240=ὑπερεκχύνω
+5241=ὑπερεντυγχάνω
+5242=ὑπερέχω
+5243=ὑπερηφανία
+5244=ὑπερήφανος
+5245=ὑπερνικάω
+5246=ὑπέρογκος
+5247=ὑπεροχή
+5248=ὑπερπερισσεύω
+5249=ὑπερπερισσῶς
+5250=ὑπερπλεονάζω
+5251=ὑπερυψόω
+5252=ὑπερφρονέω
+5253=ὑπερῴον
+5254=ὑπέχω
+5255=ὑπήκοος
+5256=ὑπηρετέω
+5257=ὑπηρέτης
+5258=ὕπνος
+5259=ὑπό
+5260=ὑποβάλλω
+5261=ὑπογραμμός
+5262=ὑπόδειγμα
+5263=ὑποδείκνυμι
+5264=ὑποδέχομαι
+5265=ὑποδέω
+5266=ὑπόδημα
+5267=ὑπόδικος
+5268=ὑποζύγιον
+5269=ὑποζώννυμι
+5270=ὑποκάτω
+5271=ὑποκρίνομαι
+5272=ὑπόκρισις
+5273=ὑποκριτής
+5274=ὑπολαμβάνω
+5275=ὑπολείπω
+5276=ὑπολήνιον
+5277=ὑπολιμπάνω
+5278=ὑπομένω
+5279=ὑπομιμνήσκω
+5280=ὑπόμνησις
+5281=ὑπομονή
+5282=ὑπονοέω
+5283=ὑπόνοια
+5284=ὑποπλέω
+5285=ὑποπνέω
+5286=ὑποπόδιον
+5287=ὑπόστασις
+5288=ὑποστέλλω
+5289=ὑποστολή
+5290=ὑποστρέφω
+5291=ὑποστρώννυμι
+5292=ὑποταγή
+5293=ὑποτάσσω
+5294=ὑποτίθημι
+5295=ὑποτρέχω
+5296=ὑποτύπωσις
+5297=ὑποφέρω
+5298=ὑποχωρέω
+5299=ὑπωπιάζω
+5300=ὗς
+5301=ὕσσωπος
+5302=ὑστερέω
+5303=ὑστέρημα
+5304=ὑστέρησις
+5305=ὕστερον
+5306=ὕστερος
+5307=ὑφαντός
+5308=ὑψηλός
+5309=ὑψηλοφρονέω
+5310=ὕψιστος
+5311=ὕψος
+5312=ὑψόω
+5313=ὕψωμα
+5314=φάγος
+5315=φάγω
+5316=φαίνω
+5317=Φάλεκ
+5318=φανερός
+5319=φανερόω
+5320=φανερῶς
+5321=φανέρωσις
+5322=φανός
+5323=Φανουήλ
+5324=φαντάζω
+5325=φαντασία
+5326=φάντασμα
+5327=φάραγξ
+5328=Φαραώ
+5329=Φάρες
+5330=Φαρισαῖος
+5331=φαρμακεία
+5332=φαρμακεύς
+5333=φάρμακος
+5334=φάσις
+5335=φάσκω
+5336=φάτνη
+5337=φαῦλος
+5338=φέγγος
+5339=φείδομαι
+5340=φειδομένως
+5341=φελόνης
+5342=φέρω
+5343=φεύγω
+5344=Φῆλιξ
+5345=φήμη
+5346=φημί
+5347=Φῆστος
+5348=φθάνω
+5349=φθαρτός
+5350=φθέγγομαι
+5351=φθείρω
+5352=φθινοπωρινός
+5353=φθόγγος
+5354=φθονέω
+5355=φθόνος
+5356=φθορά
+5357=φιάλη
+5358=φιλάγαθος
+5359=Φιλαδέλφεια
+5360=φιλαδελφία
+5361=φιλάδελφος
+5362=φίλανδρος
+5363=φιλανθρωπία
+5364=φιλανθρώπως
+5365=φιλαργυρία
+5366=φιλάργυρος
+5367=φίλαυτος
+5368=φιλέω
+5369=φιλήδονος
+5370=φίλημα
+5371=Φιλήμων
+5372=Φίλητος
+5373=φιλία
+5374=Φιλιππήσιος
+5375=Φίλιπποι
+5376=Φίλιππος
+5377=φιλόθεος
+5378=Φιλόλογος
+5379=φιλονεικία
+5380=φιλόνεικος
+5381=φιλονεξία
+5382=φιλόξενος
+5383=φιλοπρωτεύω
+5384=φίλος
+5385=φιλοσοφία
+5386=φιλόσοφος
+5387=φιλόστοργος
+5388=φιλότεκνος
+5389=φιλοτιμέομαι
+5390=φιλοφρόνως
+5391=φιλόφρων
+5392=φιμόω
+5393=Φλέγων
+5394=φλογίζω
+5395=φλόξ
+5396=φλυαρέω
+5397=φλύαρος
+5398=φοβερός
+5399=φοβέω
+5400=φόβητρον
+5401=φόβος
+5402=Φοίβη
+5403=Φοινίκη
+5404=φοῖνιξ
+5405=Φοῖνιξ
+5406=φονεύς
+5407=φονεύω
+5408=φόνος
+5409=φορέω
+5410=Φόρον
+5411=φόρος
+5412=φορτίζω
+5413=φορτίον
+5414=φόρτος
+5415=Φορτουνᾶτος
+5416=φραγέλλιον
+5417=φραγελλόω
+5418=φραγμός
+5419=φράζω
+5420=φράσσω
+5421=φρέαρ
+5422=φρεναπατάω
+5423=φρεναπάτης
+5424=φρήν
+5425=φρίσσω
+5426=φρονέω
+5427=φρόνημα
+5428=φρόνησις
+5429=φρόνιμος
+5430=φρονίμως
+5431=φροντίζω
+5432=φρουρέω
+5433=φρυάσσω
+5434=φρύγανον
+5435=Φρυγία
+5436=Φύγελλος
+5437=φυγή
+5438=φυλακή
+5439=φυλακίζω
+5440=φυλακτήριον
+5441=φύλαξ
+5442=φυλάσσω
+5443=φυλή
+5444=φύλλον
+5445=φύραμα
+5446=φυσικός
+5447=φυσικῶς
+5448=φυσιόω
+5449=φύσις
+5450=φυσίωσις
+5451=φυτεία
+5452=φυτεύω
+5453=φύω
+5454=φωλεός
+5455=φωνέω
+5456=φωνή
+5457=φῶς
+5458=φωστήρ
+5459=φωσφόρος
+5460=φωτεινός
+5461=φωτίζω
+5462=φωτισμός
+5463=χαίρω
+5464=χάλαζα
+5465=χαλάω
+5466=Χαλδαῖος
+5467=χαλεπός
+5468=χαλιναγωγέω
+5469=χαλινός
+5470=χάλκεος
+5471=χαλκεύς
+5472=χαλκηδών
+5473=χαλκίον
+5474=χαλκολίβανον
+5475=χαλκός
+5476=χαμαί
+5477=Χαναάν
+5478=Χανααναῖος
+5479=χαρά
+5480=χάραγμα
+5481=χαρακτήρ
+5482=χάραξ
+5483=χαρίζομαι
+5484=χάριν
+5485=χάρις
+5486=χάρισμα
+5487=χαριτόω
+5488=Χαῤῥάν
+5489=χάρτης
+5490=χάσμα
+5491=χεῖλος
+5492=χειμάζω
+5493=χείμαῤῥος
+5494=χειμών
+5495=χείρ
+5496=χειραγωγέω
+5497=χειραγωγός
+5498=χειρόγραφον
+5499=χειροποίητος
+5500=χειροτονέω
+5501=χείρων
+5502=χερουβίμ
+5503=χήρα
+5504=χθές
+5505=χιλιάς
+5506=χιλίαρχος
+5507=χίλιοι
+5508=Χίος
+5509=χιτών
+5510=χιών
+5511=χλαμύς
+5512=χλευάζω
+5513=χλιαρός
+5514=Χλόη
+5515=χλωρός
+5516=χξϛ
+5517=χοϊκός
+5518=χοῖνιξ
+5519=χοῖρος
+5520=χολάω
+5521=χολή
+5522=χόος
+5523=Χοραζίν
+5524=χορηγέω
+5525=χορός
+5526=χορτάζω
+5527=χόρτασμα
+5528=χόρτος
+5529=Χουζᾶς
+5530=χράομαι
+5531=χράω
+5532=χρεία
+5533=χρεοφειλέτης
+5534=χρή
+5535=χρῄζω
+5536=χρῆμα
+5537=χρηματίζω
+5538=χρηματισμός
+5539=χρήσιμος
+5540=χρῆσις
+5541=χρηστεύομαι
+5542=χρηστολογία
+5543=χρηστός
+5544=χρηστότης
+5545=χρῖσμα
+5546=Χριστιανός
+5547=Χριστός
+5548=χρίω
+5549=χρονίζω
+5550=χρόνος
+5551=χρονοτριβέω
+5552=χρύσεος
+5553=χρυσίον
+5554=χρυσοδακτύλιος
+5555=χρυσόλιθος
+5556=χρυσόπρασος
+5557=χρυσός
+5558=χρυσόω
+5559=χρώς
+5560=χωλός
+5561=χώρα
+5562=χωρέω
+5563=χωρίζω
+5564=χωρίον
+5565=χωρίς
+5566=χῶρος
+5567=ψάλλω
+5568=ψαλμός
+5569=ψευδάδελφος
+5570=ψευδαπόστολος
+5571=ψευδής
+5572=ψευδοδιδάσκαλος
+5573=ψευδολόγος
+5574=ψεύδομαι
+5575=ψευδομάρτυρ
+5576=ψευδομαρτυρέω
+5577=ψευδομαρτυρία
+5578=ψευδοπροφήτης
+5579=ψεῦδος
+5580=ψευδόχριστος
+5581=ψευδώνυμος
+5582=ψεῦσμα
+5583=ψεύστης
+5584=ψηλαφάω
+5585=ψηφίζω
+5586=ψῆφος
+5587=ψιθυρισμός
+5588=ψιθυριστής
+5589=ψιχίον
+5590=ψυχή
+5591=ψυχικός
+5592=ψῦχος
+5593=ψυχρός
+5594=ψύχω
+5595=ψωμίζω
+5596=ψωμίον
+5597=ψώχω
+5598=Ω
+5599=ὦ
+5600=ὦ
+5601=Ὠβήδ
+5602=ὧδε
+5603=ᾠδή
+5604=ὠδίν
+5605=ὠδίνω
+5606=ὦμος
+5607=ὤν
+5608=ὠνέομαι
+5609=ὠόν
+5610=ὥρα
+5611=ὡραῖος
+5612=ὠρύομαι
+5613=ὡς
+5614=ὡσαννά
+5615=ὡσαύτως
+5616=ὡσεί
+5617=Ὡσηέ
+5618=ὥσπερ
+5619=ὡσπερεί
+5620=ὥστε
+5621=ὠτίον
+5622=ὠφέλεια
+5623=ὠφελέω
+5624=ὠφέλιμος




More information about the sword-cvs mailing list